Exemplo n.º 1
0
 public void ReadUserNotification(Guid UserNotificationID, int PersonID)
 {
     try{
         NotificationToPersonRepository.ReadUserNotification(UserNotificationID, PersonID);
     }
     catch (Exception ex)
     {
         ErrorHandler pError = new ErrorHandler();
     }
 }
Exemplo n.º 2
0
 public void RemoveUserCommunityNotification(int CommunityID, int PersonID)
 {
     try
     {
         NotificationToPersonRepository.RemoveUserCommunityNotification(CommunityID, PersonID);
     }
     catch (Exception ex)
     {
         ErrorHandler pError = new ErrorHandler();
     }
 }
Exemplo n.º 3
0
 public void RemoveNotificationForUser(Guid NotificationID, int PersonID)
 {
     try
     {
         NotificationToPersonRepository.RemoveNotificationForUser(NotificationID, PersonID);
     }
     catch (Exception ex)
     {
         ErrorHandler pError = new ErrorHandler();
     }
 }