Ejemplo n.º 1
0
 public EmployeeController(IEmployeeService employeeService,
                           ICountryService countryService,
                           IEducationService educationService,
                           IEthnicGroupService ethnicGroupService,
                           IReligionService religionService,
                           ISkillService skillService,
                           IDepartmentService departmentService,
                           IRoleService roleService,
                           IUserService userService
                           )
 {
     this._employeeService    = employeeService;
     this._countryService     = countryService;
     this._educationService   = educationService;
     this._ethnicGroupService = ethnicGroupService;
     this._religionService    = religionService;
     this._skillService       = skillService;
     this._departmentService  = departmentService;
     this._userService        = userService;
     this._roleService        = roleService;
 }
Ejemplo n.º 2
0
 public EthnicGroupController(IEthnicGroupService service)
 {
     this.service = service;
 }