示例#1
0
 public bool changeStatusToRead(string NotifID)
 {
     BusinessLogic.NotificationController BL = new BusinessLogic.NotificationController();
     return(BL.changeStatusToRead(NotifID));
 }
示例#2
0
 public List <Notification> getNotification(string EmpID)
 {
     BusinessLogic.NotificationController BL = new BusinessLogic.NotificationController();
     return(BL.getNotification(EmpID));
 }
示例#3
0
 public bool createNotification(Notification notification)
 {
     BusinessLogic.NotificationController BL = new BusinessLogic.NotificationController();
     return(BL.createNotification(notification));
 }