Esempio n. 1
0
 public void NotifyPropertyChanged([CallerMemberName] string propertyName = null)
 {
     Validable.NotifyPropertyChanged(propertyName);
 }
Esempio n. 2
0
 public T GetValue <T>(Expression <Func <T> > key, Func <T> factory = null)
 {
     return(Validable.GetValue(key, factory));
 }
Esempio n. 3
0
 public void Invalidate(string property)
 {
     Validable.Invalidate(property);
 }
Esempio n. 4
0
 public bool SetValue <T>(T value, [CallerMemberName] string key = null)
 {
     return(Validable.SetValue(value, key));
 }
Esempio n. 5
0
 public T GetValue <T>(Func <T> factory = null, [CallerMemberName] string key = null)
 {
     return(Validable.GetValue(factory, key));
 }
Esempio n. 6
0
 public Task <bool> HasErrorAsync(string propertyName)
 {
     return(Validable.HasErrorAsync(propertyName));
 }
Esempio n. 7
0
 public Task <bool> HasErrorsAsync()
 {
     return(Validable.HasErrorsAsync());
 }
Esempio n. 8
0
 public Task <IValidationError> GetErrorAsync(string propertyName)
 {
     return(Validable.GetErrorAsync(propertyName));
 }
Esempio n. 9
0
 public IValidationError GetError(string propertyName)
 {
     return(Validable.GetError(propertyName));
 }