コード例 #1
0
 public HistoricalsController(
     IHistoricalsService historicalsService,
     IEmployeesService employeesService)
 {
     this.historicalsService = historicalsService;
     this.employeesService   = employeesService;
 }
コード例 #2
0
 public DashboardsService(
     IEmployeesService employeesService,
     IOneononesService oneononesService,
     IHistoricalsService historicalsService)
 {
     this.employeesService   = employeesService;
     this.oneononesService   = oneononesService;
     this.historicalsService = historicalsService;
 }