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;
 }