public CorrectiveController(IWorkContext workContext,
                             ICorrectiveTaskService correctiveTaskService,
                             IAccountService accountService,
                             MyConfig myConfig) : base(workContext)
 {
     this._correctiveTaskService = correctiveTaskService;
     this._accountService        = accountService;
     this._myConfig = myConfig;
 }
Exemple #2
0
 public HomeController(IWorkContext workContext,
                       IFileScheduleService fileScheduleService,
                       ICustomerCompanyService customerCompanyService,
                       ICorrectiveTaskService correctiveTaskService,
                       IAccountService accountService,
                       IScoreTaskService scoreTaskService,
                       IClausesPersonLiableService clausesPersonLiableService) : base(workContext)
 {
     this._fileScheduleService        = fileScheduleService;
     this._customerCompanyService     = customerCompanyService;
     this._correctiveTaskService      = correctiveTaskService;
     this._accountService             = accountService;
     this._scoreTaskService           = scoreTaskService;
     this._clausesPersonLiableService = clausesPersonLiableService;
 }