Esempio n. 1
0
 public AttendanceService(
     IEmployeeService employeeService,
     ITimeFrameService timeFrameService,
     IShiftRegisterService shiftRegisterService,
     IUnitOfWork unitOfWork, IMapper mapper) : base(unitOfWork, mapper)
 {
     this.employeeService = employeeService;
     this.timeFrameService = timeFrameService;
     this.shiftRegisterService = shiftRegisterService;
 }
Esempio n. 2
0
 public ShiftRegisterController(IShiftRegisterService shiftRegisterService)
 {
     this.shiftRegisterService = shiftRegisterService;
 }