示例#1
0
 public void Delete(Notification table)
 {
     _notificationDal.Delete(table);
 }
示例#2
0
 public void Delete(Notification entity)
 {
     _notificationDal.Delete(entity);
 }
示例#3
0
 public IResult Delete(Notification notification)
 {
     _notificationDal.Delete(notification);
     return(new SuccessResult(Messages.NotificationDeleted));
 }