示例#1
0
 public EmployeeController(IEmployeeService employeeService, IElasticSearchIndexerService elasticSearchIndexerService)
 {
     _employeeService             = employeeService;
     _elasticSearchIndexerService = elasticSearchIndexerService;
 }
示例#2
0
 public EmployeeService(IEmployeeRepository employeeRepository, IMapper mapper, IElasticSearchIndexerService elasticSearchIndexerService)
 {
     _employeeRepository          = employeeRepository;
     _elasticSearchIndexerService = elasticSearchIndexerService;
     _mapper = mapper;
 }