public void Delete(CategoryNotification entity)
 {
     _CategoryNotificationRepository.Delete(entity);
 }
コード例 #2
0
 /// <summary>
 /// Delete a notification
 /// </summary>
 /// <param name="notification"></param>
 public void Delete(CategoryNotification notification)
 {
     _categoryNotificationRepository.Delete(notification);
 }