Example #1
0
 public CompanyOrderService(ICompanyOrderRepository companyOrderRepository, IImportExportService importExportService,
                            IHealthResultRepository healthResultRepository
                            , IEmailService emailService)
 {
     _companyOrderRepository = companyOrderRepository;
     _importExportService    = importExportService;
     _healthResultRepository = healthResultRepository;
     _emailService           = emailService;
 }
Example #2
0
 public HealthResultService(IHealthResultRepository healthResultRepository
                            , IWorkContext workContext
                            , IImportExportService importExportService
                            , IEmployeeBaseInfoRepository employeeBaseInfoRepository
                            , ICompanyEmployeeRepository companyEmployeeRepository
                            , ICompanyRepository companyRepository
                            )
 {
     _healthResultRepository     = healthResultRepository;
     _workContext                = workContext;
     _importExportService        = importExportService;
     _employeeBaseInfoRepository = employeeBaseInfoRepository;
     _companyEmployeeRepository  = companyEmployeeRepository;
     _companyRepository          = companyRepository;
 }