예제 #1
0
 public bool Commit(Notifiable entity)
 {
     if (entity.IsNotification())
     {
         _uow.Commit();
         return(true);
     }
     else
     {
         _uow.Rollback();
         return(false);
     }
 }