Example #1
0
 public ShiftAppService()
 {
     _shiftRepository        = new EntityFramework.WorkShiftRepository();
     _driverRepository       = new EntityFramework.DriverRepository();
     _breakRepository        = new EntityFramework.BreakRepository();
     _drivingShiftRepository = new EntityFramework.DrivingShiftRepository();
 }
Example #2
0
 public WorkShiftController(WorkShiftRepository workShiftRepository)
 {
     _workShiftRepository = workShiftRepository;
 }