protected BaseEmployerController(IEmployerCommitmentsOrchestrator orchestrator, IOwinWrapper owinWrapper,
                                  IMultiVariantTestingService multiVariantTestingService, ICookieStorageService <FlashMessageViewModel> flashMessage,
                                  ICookieStorageService <string> lastCohortCookieStorageService)
     : base(owinWrapper, multiVariantTestingService, flashMessage)
 {
     Orchestrator = orchestrator;
     _lastCohortCookieStorageService = lastCohortCookieStorageService;
 }
 public EmployerCommitmentsController(
     IEmployerCommitmentsOrchestrator orchestrator,
     IOwinWrapper owinWrapper,
     IMultiVariantTestingService multiVariantTestingService,
     ICookieStorageService <FlashMessageViewModel> flashMessage,
     ICookieStorageService <string> lastCohortCookieStorageService,
     IFeatureToggleService featureToggleService,
     ILinkGenerator linkGenerator)
     : base(orchestrator, owinWrapper, multiVariantTestingService, flashMessage, lastCohortCookieStorageService)
 {
     _featureToggleService = featureToggleService;
     _linkGenerator        = linkGenerator;
 }