public LeaveController(ILeaveRequestService leaveRequestService, IEmployeeService employeeService, IDesignationService designationService, IDepartmentService departmentService, IVacationTypeService vacationTypeService)
 {
     this.leaveRequestService = leaveRequestService;
     this.employeeService     = employeeService;
     this.designationService  = designationService;
     this.departmentService   = departmentService;
     this.vacationTypeService = vacationTypeService;
 }
 public AccountController(IGenderService genderService, IQualificationService qualificationService, IDepartmentService departmentService, IDesignationService designationService, IEmployeeService employeeService, IExperienceService experienceService, ILeaveRequestService leaveRequestService, IVacationTypeService vacationTypeService)
 {
     this.genderService        = genderService;
     this.qualificationService = qualificationService;
     this.departmentService    = departmentService;
     this.designationService   = designationService;
     this.employeeService      = employeeService;
     this.experienceService    = experienceService;
     this.leaveRequestService  = leaveRequestService;
     this.vacationTypeService  = vacationTypeService;
 }
Пример #3
0
 public VacationTypeController(IVacationTypeService vacationTypeService)
 {
     _vacationTypeService = vacationTypeService;
 }