Exemplo n.º 1
0
        public List <Notification> CheckNewNotifications(UserAccount user, bool isRead)
        {
            List <Notification> notificationList =
                Translators.Notification.ToBusinessObject(
                    _dataAccessObjects.GetNotificationByJobRoleAndIsRead(
                        user.HighestPermission.ToString(), isRead));

            return(notificationList);
        }