public EmployeeController(IEmployeeService employeeService,
                           IProfileAdjustmentService profileAdjustmentService,
                           ILanguageService languageService,
                           INationalityService nationalityService,
                           IRoleService roleService,
                           IFamilySituationService familySituationService,
                           ICertificateService certificateService,
                           IEmployeeCertificateService employeeCertificateService,
                           IExamService examService,
                           IEmployeeExamService employeeExamService,
                           ICourseService courseService,
                           IEmployeeCourseService employeeCourseService)
 {
     this.employeeService          = employeeService;
     this.profileAdjustmentService = profileAdjustmentService;
     this.languageService          = languageService;
     this.nationalityService       = nationalityService;
     this.roleService                = roleService;
     this.familySituationService     = familySituationService;
     this.certificateService         = certificateService;
     this.employeeCertificateService = employeeCertificateService;
     this.examService                = examService;
     this.employeeExamService        = employeeExamService;
     this.courseService              = courseService;
     this.employeeCourseService      = employeeCourseService;
 }
Ejemplo n.º 2
0
 public EmployeeCourseController(IEmployeeCourseService service) : base(service)
 {
     _service = service;
 }
Ejemplo n.º 3
0
 public EmployeeService(ETMSContext dbContext, IEmployeeCourseService employeeCourseService)
 {
     _dbContext = dbContext;
 }