Esempio n. 1
0
 public override void NotifyPropertyChanged([CallerMemberName] string propertyName = null)
 {
     base.NotifyPropertyChanged(propertyName);
     _errors = new VerifiableObjectErrors(this);
     base.NotifyPropertyChanged(nameof(Errors));
     base.NotifyPropertyChanged(nameof(IsValid));
 }
Esempio n. 2
0
 public VerifiableBase()
 {
     _errors = new VerifiableObjectErrors(this);
 }