示例#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));
 }
示例#2
0
 public VerifiableBase()
 {
     _errors = new VerifiableObjectErrors(this);
 }