コード例 #1
0
 // NOTIFICATION METHODS
 public static List<Notification> CheckNewNotifications(UserAccount user, bool isRead = false)
 {
     BusinessObjects _businessObjects = new BusinessObjects();
     List<Notification> notificationList = _businessObjects.CheckNewNotifications(user, isRead);
     return notificationList;
 }