Exemplo n.º 1
0
 /// <summary>
 ///
 /// </summary>
 /// <returns></returns>
 public IList <Shift> GetShiftList()
 {
     try
     {
         BShift busShift = new BShift();
         return(busShift.GetAll());
     }
     catch (Exception ex)
     {
         LogException(ex, "BExceptionShift", "GetShiftList");
         throw ex;
     }
 }
Exemplo n.º 2
0
 /// <summary>
 /// همه شیفتها را برمیگرداند
 /// </summary>
 /// <returns></returns>
 public IList <Shift> GetAllShifts()
 {
     try
     {
         BShift        bshift = new BShift();
         IList <Shift> shifts = bshift.GetAll();
         return(shifts);
     }
     catch (Exception ex)
     {
         LogException(ex, "BWorkGroupCalendar", "GetAllShifts");
         throw ex;
     }
 }