예제 #1
0
 public IEnumerable <NotificationRecipient> GetNotificationRecipients(int accountId)
 {
     return(NotificationRecipientOperations.GetNotificationRecipients(accountId));
 }
예제 #2
0
 public NotificationRecipient GetNotificationRecipientReadOnly(int notificationRecipientId)
 {
     return(NotificationRecipientOperations.GetNotificationRecipientReadOnly(notificationRecipientId));
 }
예제 #3
0
 public NotificationRecipient CreateNotificationRecipient(NotificationRecipient notificationRecipient)
 {
     return(NotificationRecipientOperations.CreateNotificationRecipient(notificationRecipient));
 }
예제 #4
0
 public NotificationRecipient AddNotificationRecipient(NotificationRecipient notificationRecipient)
 {
     return(NotificationRecipientOperations.AddNotificationRecipient(notificationRecipient));
 }
예제 #5
0
 public void UpdateNotificationRecipient(NotificationRecipient notificationRecipient)
 {
     NotificationRecipientOperations.UpdateNotificationRecipient(notificationRecipient);
 }
예제 #6
0
 public void DeleteNotificationRecipient(int notificationRecipientId)
 {
     NotificationRecipientOperations.DeleteNotificationRecipient(notificationRecipientId);
 }