public IEnumerable <Notification> GetUserUnreadNotificationMessages(int userId)
 {
     return(notificationsRepository
            .GetUserUnreadNotifications(userId)
            .Select(n => n.AutoMapObject <UsersNotification, Notification>()));
 }