Пример #1
0
 public EmployeeService(
     IAccountingService accountingService,
     IHumanResourceService humanResourceService,
     IConfiguration configuration)
 {
     _accountingService    = accountingService;
     _humanResourceService = humanResourceService;
     _connectionString     = configuration.GetConnectionString("EmployeeDatabaseConnection");
 }
 public ValuesController(IHumanResourceService empService)
 {
     _empService = empService;
 }
 public HomeController(IHumanResourceService empService)
 {
     _empService = empService;
 }
Пример #4
0
 public HumanResourceController(IHumanResourceService hrService)
 {
     _hrService = hrService;
 }