示例#1
0
 public EmployeeController(IEnumReferenceService enumReferenceService
                           , IEmploymentStatusService employmentStatusService
                           , IEmploymentTypeService employmentTypeService
                           , ICountryService countryService
                           , IEmployeeService employeeService)
 {
     this._employmentTypeService   = employmentTypeService;
     this._employmentStatusService = employmentStatusService;
     this._countryService          = countryService;
     this._enumReferenceService    = enumReferenceService;
     this._employeeService         = employeeService;
 }
 public EmploymentStatusController(IEmploymentStatusService service)
 {
     _service = service;
 }
 public EmploymentStatusController(IEmploymentStatusService employmentStatusService)
 {
     this._employmentStatusService = employmentStatusService;
 }