Пример #1
0
 public void ReadNotification([FromBody] ReadNotificationRequest request)
 {
     LogsDataManager.SendLog(
         request.PatronId,
         "Patron",
         "read notification with id " + request.Id);
     NotificationsDataManager.ReadNotification(request.Id);
 }
Пример #2
0
 public Notification[] GetNotifications(long patronId)
 {
     return(NotificationsDataManager.GetNotificationsByPatron(patronId));
 }