public void Delete(Notification table) { _notificationDal.Delete(table); }
public void Delete(Notification entity) { _notificationDal.Delete(entity); }
public IResult Delete(Notification notification) { _notificationDal.Delete(notification); return(new SuccessResult(Messages.NotificationDeleted)); }