// GET: Month public ChartPeriodController(IDataService dataService, ICommentService commentService, IWebHostEnvironment environment, IActionPlanService actionPlanService, ISettingService settingService, IMailHelper mailHelper, IKPILevelService kPILevelService, IFavouriteService favouriteService, IConfiguration configuaration, IHubContext <HenryHub> hubContext, INotificationService notificationService, IConfiguration configuration) { _environment = environment; _configuration = configuration; _dataService = dataService; _commentService = commentService; _actionPlanService = actionPlanService; _settingService = settingService; _mailHelper = mailHelper; _kPILevelService = kPILevelService; _favouriteService = favouriteService; _configuaration = configuaration; _hubContext = hubContext; _notificationService = notificationService; }
public CategoryKPILevelController(ICategoryKPILevelService categoryKPILevelService, ILevelService levelService, IKPILevelService kPILevelService, ICategoryService categoryService) { _categoryKPILevelService = categoryKPILevelService; _kPILevelService = kPILevelService; _categoryService = categoryService; _levelService = levelService; }
public KPIController(IKPIService KPIService, ILevelService levelService, IKPILevelService kpiLevelService, ICategoryService categoryService) { _KPIService = KPIService; _levelService = levelService; _kpiLevelService = kpiLevelService; _categoryService = categoryService; }
public OCCategoryService(DataContext dbContext, IKPILevelService KPILlevelService) { this._dbContext = dbContext; _kPILlevelService = KPILlevelService; }
public AdminKPILevelController(IKPILevelService KPILevelService, ILevelService levelService, IUserService userService) { _KPILevelService = KPILevelService; _levelService = levelService; _userService = userService; }