Beispiel #1
0
 public DashboardsService(
     IEmployeesService employeesService,
     IOneononesService oneononesService,
     IHistoricalsService historicalsService)
 {
     this.employeesService   = employeesService;
     this.oneononesService   = oneononesService;
     this.historicalsService = historicalsService;
 }
 public HistoricalsService(
     IHistoricalsRepository historicalsRepository,
     IEmployeesService employeesService,
     IOneononesService oneononesService)
 {
     this.historicalsRepository = historicalsRepository;
     this.employeesService      = employeesService;
     this.oneononesService      = oneononesService;
 }