Advertisement
Guest User

Untitled

a guest
Jul 22nd, 2017
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.14 KB | None | 0 0
  1. interface IHaveValidation
  2. {
  3.     void Validate (ErrorReport report);
  4. }
  5.  
  6. interface IValidatable
  7. {
  8.     void Validate ();
  9.     bool IsValid { get; }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement