Esempio n. 1
0
 public EmployeeController(IEmployeeService employeeService,
                           IUserCompanyService userCompanyService,
                           IAddressService addressService,
                           IEwiImporter companyEmployeeImporter,
                           IEwiExporter companyEmployeeExporter,
                           IImportEmployeeProcessor employeeProcessor,
                           IPositionDictionaryService positionDictionaryService,
                           ApplicationUserManager userManager,
                           IJobPartDictionaryService jobPartDictionaryService,
                           IEwiFileService fileService)
 {
     _employeeService           = employeeService;
     _userCompanyService        = userCompanyService;
     _addressService            = addressService;
     _companyEmployeeImporter   = companyEmployeeImporter;
     _companyEmployeeExporter   = companyEmployeeExporter;
     _employeeProcessor         = employeeProcessor;
     _positionDictionaryService = positionDictionaryService;
     _jobPartDictionaryService  = jobPartDictionaryService;
     _userManager = userManager;
     _fileService = fileService;
 }
 public CompanyEmployeeImporter(IImportEmployeeProcessor employeeProcessor)
 {
     _employeeProcessor = employeeProcessor;
 }