/// <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; } }
/// <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; } }