public PersonnelShiftReplacementsController( IPersonnelShiftReplacementService personnelShiftReplacementService , IPersonnelShiftService personnelShiftService, IWorkingHourService workingHourService , INotificationService notificationService , IExceptionLogger logger) { _personnelShiftReplacementService = personnelShiftReplacementService; _personnelShiftService = personnelShiftService; _workingHourService = workingHourService; _notificationService = notificationService; _logger = logger; }
public WorkingHoursController(IWorkingHourService workingHourService , IExceptionLogger logger) { _workingHourService = workingHourService; _logger = logger; }
public WorkingHoursController(IWorkingHourService workingHourService, ITimeSlotService slotService) { _workingHourService = workingHourService; _slotService = slotService; }
public WorkingHourController(IWorkingHourService WorkingHourService) : base(WorkingHourService) { }