Exemplo n.º 1
0
 public Shift GetShiftStartEndTime(Shift shift, DateTime date)
 {
     return(new DAL.ShiftDAL().GetShiftStartEndTime(shift, date));
 }
Exemplo n.º 2
0
 public bool ShiftCanChange(Shift shift)
 {
     return(new DAL.ShiftDAL().ShiftCanChange(shift));
 }
Exemplo n.º 3
0
 public bool SetActiveShift(Shift shift)
 {
     return(new DAL.ShiftDAL().SetActiveShift(shift));
 }
Exemplo n.º 4
0
 public bool SetActiveShift(Shift shift, User LoginUser)
 {
     return(new DAL.ShiftDAL().SetActiveShift(shift, LoginUser));
 }
Exemplo n.º 5
0
 public DsTokenSummary GetTokenSummary(DateTime fromDate, DateTime toDate, bool All, bool injection, bool checkup, bool labtest, bool Medicine, bool rb50, Shift shift, int?uNo)
 {
     return(new TokenSummaryDAL().GetTokenSummary(fromDate, toDate, All, injection, checkup, labtest, Medicine, rb50, shift, uNo));
 }