Example #1
0
 public KPIController(IKPIService KPIService,
                      ILevelService levelService,
                      IKPILevelService kpiLevelService,
                      ICategoryService categoryService)
 {
     _KPIService      = KPIService;
     _levelService    = levelService;
     _kpiLevelService = kpiLevelService;
     _categoryService = categoryService;
 }
Example #2
0
 public AdminKPIController(IKPIService KPIService, IUnitService unitService, IHubContext <HenryHub> hubContext)
 {
     _KPIService  = KPIService;
     _unitService = unitService;
     _hubContext  = hubContext;
 }