public WorkingDaysController(IWorkdayService workdayService)
 {
     this.workdayService = workdayService;
 }
Ejemplo n.º 2
0
 public VacationsController(IVacationService VacationService, IWorkdayService WorkDaysService)
 {
     this.VacationService = VacationService;
     this.WorkDaysService = WorkDaysService;
 }
Ejemplo n.º 3
0
 public CyclesDistributionController(ICycleService CycleService, IVacationService VacationService, IWorkdayService WorkdayService)
 {
     this.CycleService    = CycleService;
     this.VacationService = VacationService;
     this.WorkdayService  = WorkdayService;
 }