public static void AddError(this List <IActionableErrorInfo> errors, IActionableErrorInfo error) { if (errors != null && error != null) { errors.Add(error); } }
public static void AddError(this List<IActionableErrorInfo> errors, IActionableErrorInfo error) { if(errors != null && error != null) { errors.Add(error); } }
internal TestRule(string value, IActionableErrorInfo checkValue) : base(() => value) { CheckValue = checkValue; }