Ejemplo n.º 1
0
 // 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;
 }
Ejemplo n.º 2
0
 public CategoryKPILevelController(ICategoryKPILevelService categoryKPILevelService, ILevelService levelService,
                                   IKPILevelService kPILevelService,
                                   ICategoryService categoryService)
 {
     _categoryKPILevelService = categoryKPILevelService;
     _kPILevelService         = kPILevelService;
     _categoryService         = categoryService;
     _levelService            = levelService;
 }
Ejemplo n.º 3
0
 public KPIController(IKPIService KPIService,
                      ILevelService levelService,
                      IKPILevelService kpiLevelService,
                      ICategoryService categoryService)
 {
     _KPIService      = KPIService;
     _levelService    = levelService;
     _kpiLevelService = kpiLevelService;
     _categoryService = categoryService;
 }
Ejemplo n.º 4
0
 public OCCategoryService(DataContext dbContext, IKPILevelService KPILlevelService)
 {
     this._dbContext   = dbContext;
     _kPILlevelService = KPILlevelService;
 }
Ejemplo n.º 5
0
 public AdminKPILevelController(IKPILevelService KPILevelService, ILevelService levelService, IUserService userService)
 {
     _KPILevelService = KPILevelService;
     _levelService    = levelService;
     _userService     = userService;
 }