public OrdersController(IOrdersQuery ordersQuery) { _ordersQuery = ordersQuery; }
public OrdersController(IOrdersQuery ordersQuery, ITelemetryProvider telemetryProvider) { _ordersQuery = ordersQuery; _telemetry = telemetryProvider; }
public NewOrderController(IPageflowEngine pageflowEngine, IEmployerOrdersCommand employerOrdersCommand, IEmployerOrdersQuery employerOrdersQuery, IProductsQuery productsQuery, ICreditsQuery creditsQuery, ICouponsQuery couponsQuery, IOrdersCommand ordersCommand, IOrdersQuery ordersQuery, IAccountsManager accountsManager, ILoginCredentialsQuery loginCredentialsQuery, ILoginAuthenticationCommand loginAuthenticationCommand, IAuthenticationManager authenticationManager, IIndustriesQuery industriesQuery) : base(Routes, pageflowEngine) { _employerOrdersCommand = employerOrdersCommand; _employerOrdersQuery = employerOrdersQuery; _productsQuery = productsQuery; _creditsQuery = creditsQuery; _couponsQuery = couponsQuery; _ordersCommand = ordersCommand; _ordersQuery = ordersQuery; _accountsManager = accountsManager; _loginCredentialsQuery = loginCredentialsQuery; _loginAuthenticationCommand = loginAuthenticationCommand; _authenticationManager = authenticationManager; _industriesQuery = industriesQuery; }
public EmployerCreditsController(IEmployersQuery employersQuery, IMembersQuery membersQuery, IJobAdsQuery jobAdsQuery, IOrganisationsQuery organisationsQuery, IAllocationsQuery allocationsQuery, IEmployerAllocationsCommand employerAllocationsCommand, ICreditsQuery creditsQuery, IExercisedCreditsQuery exercisedCreditsQuery, IOrdersQuery ordersQuery) { _employersQuery = employersQuery; _membersQuery = membersQuery; _jobAdsQuery = jobAdsQuery; _organisationsQuery = organisationsQuery; _allocationsQuery = allocationsQuery; _employerAllocationsCommand = employerAllocationsCommand; _creditsQuery = creditsQuery; _exercisedCreditsQuery = exercisedCreditsQuery; _ordersQuery = ordersQuery; }
public ProductsController(IEmployerOrdersQuery employerOrdersQuery, IProductsCommand productsCommand, IOrdersQuery ordersQuery, ICreditsQuery creditsQuery, IAllocationsQuery allocationsQuery, IRecruitersQuery recruitersQuery, IOrganisationsQuery organisationsQuery) { _employerOrdersQuery = employerOrdersQuery; _productsCommand = productsCommand; _ordersQuery = ordersQuery; _creditsQuery = creditsQuery; _allocationsQuery = allocationsQuery; _recruitersQuery = recruitersQuery; _organisationsQuery = organisationsQuery; }
public OrdersController(IOrdersQuery ordersService) { _ordersService = ordersService; }