コード例 #1
0
 protected virtual void AddModelError(IHasModelStateService serviceIntance, ModelValidationResult temp)
 {
     serviceIntance.ModelState.Errors.Add(new ModelError
     {
         MemberName = temp.MemberName,
         Message = temp.Message,
     });
 }
コード例 #2
0
 protected virtual void AddModelError(IHasModelStateService serviceIntance, ModelValidationResult temp)
 {
     serviceIntance.ModelState.Errors.Add(new ModelError
     {
         MemberName = temp.MemberName,
         Message    = temp.Message,
     });
 }