Example #1
0
        private static void UpdateUnreadCountInChat(IJabbrRepository repository, IChatNotificationService notificationService,
                                                    ChatUser user)
        {
            var unread = repository.GetUnreadNotificationsCount(user);

            notificationService.UpdateUnreadMentions(user, unread);
        }
Example #2
0
 private static void UpdateUnreadCountInChat(IJabbrRepository repository, IChatNotificationService notificationService,
                                             ChatUser user)
 {
     var unread = repository.GetUnreadNotificationsCount(user);
     notificationService.UpdateUnreadMentions(user, unread);
 }