Esempio n. 1
0
 public int WarningCount()
 {
     return(ValidatorResults.Where(x => x.Level == ValidatorResultLevel.Warning).Count());
 }
Esempio n. 2
0
 public int ErrorCount()
 {
     return(ValidatorResults.Where(x => x.Level == ValidatorResultLevel.Error).Count());
 }