예제 #1
0
 public bool Delete(long id, long person)
 {
     try
     {
         var update = notificationDAL.Delete(id, person);
         return(update);
     }
     catch
     {
         return(false);
     }
 }
예제 #2
0
 public bool Delete(String notificationId, String staffId)
 {
     return(notificationDAL.Delete(notificationId, staffId));
 }