Exemplo n.º 1
0
 protected void AddNotifications(IList <ValidationFailure> validationFailures)
 {
     foreach (var error in validationFailures)
     {
         var notifications = new Notification(error.ErrorMessage);
         _notificationHandler.Handler(notifications);
     }
 }