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