示例#1
0
        public async Task <List <Notification> > GetNotificationsAsync(string userEmail)
        {
            var listOfNotifications = await _user.GetNotificationFromDB(userEmail);

            return((listOfNotifications == null) ? null : listOfNotifications);
        }