예제 #1
0
 public HomeController(IOwinWrapper owinWrapper, HomeOrchestrator homeOrchestrator,
                       EmployerApprenticeshipsServiceConfiguration configuration, IFeatureToggle featureToggle, IMultiVariantTestingService multiVariantTestingService, ICookieStorageService <FlashMessageViewModel> flashMessage)
     : base(owinWrapper, featureToggle, multiVariantTestingService, flashMessage)
 {
     _homeOrchestrator = homeOrchestrator;
     _configuration    = configuration;
 }
예제 #2
0
 public EmployerAccountTransactionsController(IOwinWrapper owinWrapper, IFeatureToggle featureToggle,
                                              EmployerAccountTransactionsOrchestrator accountTransactionsOrchestrator, IMultiVariantTestingService multiVariantTestingService,
                                              ICookieStorageService <FlashMessageViewModel> flashMessage)
     : base(owinWrapper, featureToggle, multiVariantTestingService, flashMessage)
 {
     _accountTransactionsOrchestrator = accountTransactionsOrchestrator;
 }
예제 #3
0
 public AccountController(AccountOrchestrator accountOrchestrator, IOwinWrapper owinWrapper, IdentityServerConfiguration identityServerConfiguration, ILogger logger)
 {
     _accountOrchestrator         = accountOrchestrator;
     _owinWrapper                 = owinWrapper;
     _identityServerConfiguration = identityServerConfiguration;
     _logger = logger;
 }
 public DataLockController(
     IOwinWrapper owinWrapper,
     IMultiVariantTestingService multiVariantTestingService,
     ICookieStorageService <FlashMessageViewModel> flashMessage,
     DataLockOrchestrator orchestrator
     ) : base(owinWrapper, multiVariantTestingService, flashMessage)
 {
     _orchestrator = orchestrator;
 }
 public BaseController(
     IOwinWrapper owinWrapper,
     IMultiVariantTestingService multiVariantTestingService,
     ICookieStorageService <FlashMessageViewModel> flashMessage)
 {
     OwinWrapper = owinWrapper;
     _multiVariantTestingService = multiVariantTestingService;
     _flashMessage = flashMessage;
 }
예제 #6
0
 public InvitationController(InvitationOrchestrator invitationOrchestrator, IOwinWrapper owinWrapper,
                             IFeatureToggle featureToggle, IMultiVariantTestingService multiVariantTestingService, EmployerApprenticeshipsServiceConfiguration configuration, ICookieStorageService <FlashMessageViewModel> flashMessage)
     : base(owinWrapper, featureToggle, multiVariantTestingService, flashMessage)
 {
     if (invitationOrchestrator == null)
     {
         throw new ArgumentNullException(nameof(invitationOrchestrator));
     }
     _invitationOrchestrator = invitationOrchestrator;
     _configuration          = configuration;
 }
예제 #7
0
        public EmployerAccountController(IOwinWrapper owinWrapper, EmployerAccountOrchestrator employerAccountOrchestrator,
                                         IFeatureToggle featureToggle, IMultiVariantTestingService multiVariantTestingService, ILogger logger, ICookieStorageService <FlashMessageViewModel> flashMessage)
            : base(owinWrapper, featureToggle, multiVariantTestingService, flashMessage)
        {
            if (employerAccountOrchestrator == null)
            {
                throw new ArgumentNullException(nameof(employerAccountOrchestrator));
            }

            _employerAccountOrchestrator = employerAccountOrchestrator;
            _logger = logger;
        }
 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;
 }
 public EmployerManageApprenticesController(
     IEmployerManageApprenticeshipsOrchestrator orchestrator,
     IOwinWrapper owinWrapper,
     IMultiVariantTestingService multiVariantTestingService,
     ICookieStorageService <FlashMessageViewModel> flashMessage,
     ILinkGenerator linkGenerator,
     ILog logger)
     : base(owinWrapper, multiVariantTestingService, flashMessage)
 {
     _orchestrator  = orchestrator;
     _linkGenerator = linkGenerator;
     _logger        = logger;
 }
 public MembershipService(
     IMembershipProvider membershipProvider,
     HttpContextBase httpContext,
     IOwinWrapper authenticationService,
     IHashingService hashingService,
     ILog logger)
 {
     _membershipProvider    = membershipProvider;
     _httpContext           = httpContext;
     _authenticationService = authenticationService;
     _hashingService        = hashingService;
     _logger = logger;
 }
 public OrganisationController(
     IOwinWrapper owinWrapper,
     OrganisationOrchestrator orchestrator,
     IFeatureToggle featureToggle,
     IMultiVariantTestingService multiVariantTestingService,
     IMapper mapper,
     ILogger logger,
     ICookieStorageService <FlashMessageViewModel> flashMessage)
     : base(owinWrapper, featureToggle, multiVariantTestingService, flashMessage)
 {
     _orchestrator = orchestrator;
     _mapper       = mapper;
     _logger       = logger;
 }
        public EmployerManageApprenticesController(
            EmployerManageApprenticeshipsOrchestrator orchestrator,
            IOwinWrapper owinWrapper,
            IFeatureToggle featureToggle,
            IMultiVariantTestingService multiVariantTestingService,
            ICookieStorageService <FlashMessageViewModel> flashMessage)
            : base(owinWrapper, featureToggle, multiVariantTestingService, flashMessage)
        {
            if (orchestrator == null)
            {
                throw new ArgumentNullException(nameof(orchestrator));
            }

            _orchestrator = orchestrator;
        }
예제 #13
0
 public LoginController(AccountOrchestrator accountOrchestrator, IOwinWrapper owinWrapper, IdentityServerConfiguration identityServerConfiguration)
 {
     _accountOrchestrator         = accountOrchestrator;
     _owinWrapper                 = owinWrapper;
     _identityServerConfiguration = identityServerConfiguration;
 }
예제 #14
0
 public HomeController(IOwinWrapper owinWrapper, IdentityServerConfiguration identityServerConfiguration, ILogger logger)
 {
     _owinWrapper = owinWrapper;
     _identityServerConfiguration = identityServerConfiguration;
     _logger = logger;
 }
 public ServiceController(IOwinWrapper owinWrapper)
 {
     OwinWrapper = owinWrapper;
 }
 protected BaseEmployerController(IEmployerCommitmentsOrchestrator orchestrator, IOwinWrapper owinWrapper,
                                  IMultiVariantTestingService multiVariantTestingService, ICookieStorageService <FlashMessageViewModel> flashMessage,
                                  ICookieStorageService <string> lastCohortCookieStorageService)
     : base(owinWrapper, multiVariantTestingService, flashMessage)
 {
     Orchestrator = orchestrator;
     _lastCohortCookieStorageService = lastCohortCookieStorageService;
 }
 public AccountOrchestrator(IMediator mediator, IOwinWrapper owinWrapper, ILogger logger)
 {
     _mediator    = mediator;
     _owinWrapper = owinWrapper;
     _logger      = logger;
 }
 public EmployerTeamController(IOwinWrapper owinWrapper, EmployerTeamOrchestrator employerTeamOrchestrator,
                               IFeatureToggle featureToggle, IMultiVariantTestingService multiVariantTestingService, ICookieStorageService <FlashMessageViewModel> flashMessage)
     : base(owinWrapper, featureToggle, multiVariantTestingService, flashMessage)
 {
     _employerTeamOrchestrator = employerTeamOrchestrator;
 }
 public ServiceController(IOwinWrapper owinWrapper, IMultiVariantTestingService multiVariantTestingService, ICookieStorageService <FlashMessageViewModel> flashMessage, EmployerCommitmentsServiceConfiguration configuration)
     : base(owinWrapper, multiVariantTestingService, flashMessage)
 {
     _configuration = configuration;
 }
예제 #20
0
 public TestController(IFeatureToggle featureToggle, IOwinWrapper owinWrapper, IMultiVariantTestingService multiVariantTestingService, ICookieStorageService <FlashMessageViewModel> flashMessage)
     : base(owinWrapper, featureToggle, multiVariantTestingService, flashMessage)
 {
 }
예제 #21
0
 public TransferRequestController(EmployerCommitmentsOrchestrator orchestrator, IOwinWrapper owinWrapper,
                                  IMultiVariantTestingService multiVariantTestingService, ICookieStorageService <FlashMessageViewModel> flashMessage,
                                  ICookieStorageService <string> lastCohortCookieStorageService, ILinkGenerator linkGenerator)
     : base(orchestrator, owinWrapper, multiVariantTestingService, flashMessage, lastCohortCookieStorageService)
 {
     _linkGenerator = linkGenerator;
 }