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