示例#1
0
 public void SetErrors <TProperty>(Expression <Func <TProperty> > propertyExpression, IEnumerable <string> errors)
 {
     ErrorsContainer.SetErrors(propertyExpression, errors);
 }
示例#2
0
 public Dictionary <string, List <string> > GetAllErrors()
 {
     return(ErrorsContainer.GetAllErrors());
 }
示例#3
0
 public IEnumerable GetErrors(string propertyName)
 {
     return(ErrorsContainer.GetErrors(propertyName));
 }