public WebWorkContext(IHttpContextAccessor httpContextAccessor,
                       IGrandAuthenticationService authenticationService,
                       IApiAuthenticationService apiauthenticationService,
                       ICurrencyService currencyService,
                       ICustomerService customerService,
                       IGenericAttributeService genericAttributeService,
                       ILanguageService languageService,
                       IStoreContext storeContext,
                       IStoreMappingService storeMappingService,
                       IVendorService vendorService,
                       LocalizationSettings localizationSettings,
                       TaxSettings taxSettings,
                       GrandConfig config)
 {
     _httpContextAccessor      = httpContextAccessor;
     _authenticationService    = authenticationService;
     _apiauthenticationService = apiauthenticationService;
     _currencyService          = currencyService;
     _customerService          = customerService;
     _genericAttributeService  = genericAttributeService;
     _languageService          = languageService;
     _storeContext             = storeContext;
     _storeMappingService      = storeMappingService;
     _vendorService            = vendorService;
     _localizationSettings     = localizationSettings;
     _taxSettings = taxSettings;
     _config      = config;
 }
Exemple #2
0
 public ExternalAuthenticationService(
     IGrandAuthenticationService authenticationService,
     ICustomerManagerService customerManagerService,
     ICustomerService customerService,
     IGroupService groupService,
     IMediator mediator,
     IRepository <ExternalAuthentication> externalAuthenticationRecordRepository,
     IWorkContext workContext,
     IEnumerable <IExternalAuthenticationProvider> externalAuthenticationProviders,
     LanguageSettings languageSettings,
     CustomerSettings customerSettings,
     ExternalAuthenticationSettings externalAuthenticationSettings)
 {
     _customerSettings = customerSettings;
     _externalAuthenticationSettings = externalAuthenticationSettings;
     _authenticationService          = authenticationService;
     _customerManagerService         = customerManagerService;
     _customerService = customerService;
     _groupService    = groupService;
     _mediator        = mediator;
     _externalAuthenticationRecordRepository = externalAuthenticationRecordRepository;
     _workContext = workContext;
     _externalAuthenticationProviders = externalAuthenticationProviders;
     _languageSettings = languageSettings;
 }
Exemple #3
0
 public UpdateCustomerInfoCommandHandler(
     ICustomerRegistrationService customerRegistrationService,
     IGrandAuthenticationService authenticationService,
     IGenericAttributeService genericAttributeService,
     IVatService checkVatService,
     IWorkflowMessageService workflowMessageService,
     INewsLetterSubscriptionService newsLetterSubscriptionService,
     DateTimeSettings dateTimeSettings,
     CustomerSettings customerSettings,
     TaxSettings taxSettings,
     LocalizationSettings localizationSettings,
     ForumSettings forumSettings)
 {
     _customerRegistrationService   = customerRegistrationService;
     _authenticationService         = authenticationService;
     _genericAttributeService       = genericAttributeService;
     _checkVatService               = checkVatService;
     _workflowMessageService        = workflowMessageService;
     _newsLetterSubscriptionService = newsLetterSubscriptionService;
     _dateTimeSettings              = dateTimeSettings;
     _customerSettings              = customerSettings;
     _taxSettings          = taxSettings;
     _localizationSettings = localizationSettings;
     _forumSettings        = forumSettings;
 }
Exemple #4
0
 public WebWorkContext(IHttpContextAccessor httpContextAccessor,
                       CurrencySettings currencySettings,
                       IGrandAuthenticationService authenticationService,
                       ICurrencyService currencyService,
                       ICustomerService customerService,
                       IGenericAttributeService genericAttributeService,
                       ILanguageService languageService,
                       IStoreContext storeContext,
                       IStoreMappingService storeMappingService,
                       IUserAgentHelper userAgentHelper,
                       IVendorService vendorService,
                       LocalizationSettings localizationSettings,
                       TaxSettings taxSettings)
 {
     this._httpContextAccessor     = httpContextAccessor;
     this._currencySettings        = currencySettings;
     this._authenticationService   = authenticationService;
     this._currencyService         = currencyService;
     this._customerService         = customerService;
     this._genericAttributeService = genericAttributeService;
     this._languageService         = languageService;
     this._storeContext            = storeContext;
     this._storeMappingService     = storeMappingService;
     this._userAgentHelper         = userAgentHelper;
     this._vendorService           = vendorService;
     this._localizationSettings    = localizationSettings;
     this._taxSettings             = taxSettings;
 }
Exemple #5
0
 public WorkContext(
     IHttpContextAccessor httpContextAccessor,
     IGrandAuthenticationService authenticationService,
     IApiAuthenticationService apiauthenticationService,
     ICurrencyService currencyService,
     ICustomerService customerService,
     IGroupService groupService,
     IUserFieldService userFieldService,
     ILanguageService languageService,
     IStoreHelper storeHelper,
     IAclService aclService,
     IVendorService vendorService,
     IDetectionService detectionService,
     LanguageSettings languageSettings,
     TaxSettings taxSettings,
     AppConfig config)
 {
     _httpContextAccessor      = httpContextAccessor;
     _authenticationService    = authenticationService;
     _apiauthenticationService = apiauthenticationService;
     _currencyService          = currencyService;
     _customerService          = customerService;
     _groupService             = groupService;
     _userFieldService         = userFieldService;
     _languageService          = languageService;
     _storeHelper      = storeHelper;
     _aclService       = aclService;
     _vendorService    = vendorService;
     _detectionService = detectionService;
     _languageSettings = languageSettings;
     _taxSettings      = taxSettings;
     _config           = config;
 }
 public LoginController(CustomerSettings customerSettings, CaptchaSettings captchaSettings,
                        ILocalizationService localizationService, ICustomerRegistrationService customerRegistrationService,
                        ICustomerService customerService, IGrandAuthenticationService authenticationService,
                        IWorkContext workContext,
                        IMediator mediator)
 {
     _customerSettings            = customerSettings;
     _captchaSettings             = captchaSettings;
     _localizationService         = localizationService;
     _customerRegistrationService = customerRegistrationService;
     _customerService             = customerService;
     _authenticationService       = authenticationService;
     _workContext = workContext;
     _mediator    = mediator;
 }
 public LoginController(
     CustomerSettings customerSettings,
     CaptchaSettings captchaSettings,
     ITranslationService translationService,
     ICustomerManagerService customerManagerService,
     ICustomerService customerService,
     IGrandAuthenticationService authenticationService,
     IMessageProviderService messageProviderService,
     IWorkContext workContext,
     IMediator mediator)
 {
     _customerSettings       = customerSettings;
     _captchaSettings        = captchaSettings;
     _translationService     = translationService;
     _customerManagerService = customerManagerService;
     _customerService        = customerService;
     _authenticationService  = authenticationService;
     _messageProviderService = messageProviderService;
     _workContext            = workContext;
     _mediator = mediator;
 }
 public HomeController(
     ITranslationService translationService,
     GoogleAnalyticsSettings googleAnalyticsSettings,
     IWorkContext workContext,
     IGroupService groupService,
     IOrderReportService orderReportService,
     IProductsReportService productsReportService,
     ILogger logger,
     IGrandAuthenticationService authenticationService,
     IMediator mediator)
 {
     _translationService      = translationService;
     _googleAnalyticsSettings = googleAnalyticsSettings;
     _workContext             = workContext;
     _groupService            = groupService;
     _orderReportService      = orderReportService;
     _productsReportService   = productsReportService;
     _logger = logger;
     _authenticationService = authenticationService;
     _mediator = mediator;
 }
 public UpdateCustomerInfoCommandHandler(
     ICustomerManagerService customerManagerService,
     IGrandAuthenticationService authenticationService,
     IUserFieldService userFieldService,
     IVatService checkVatService,
     INewsLetterSubscriptionService newsLetterSubscriptionService,
     ICustomerService customerService,
     IMediator mediator,
     CustomerSettings customerSettings,
     TaxSettings taxSettings)
 {
     _customerManagerService        = customerManagerService;
     _authenticationService         = authenticationService;
     _userFieldService              = userFieldService;
     _checkVatService               = checkVatService;
     _newsLetterSubscriptionService = newsLetterSubscriptionService;
     _customerService               = customerService;
     _mediator         = mediator;
     _customerSettings = customerSettings;
     _taxSettings      = taxSettings;
 }
Exemple #10
0
 public ExternalAuthenticationService(CustomerSettings customerSettings,
                                      ExternalAuthenticationSettings externalAuthenticationSettings,
                                      IGrandAuthenticationService authenticationService,
                                      ICustomerActivityService customerActivityService,
                                      ICustomerRegistrationService customerRegistrationService,
                                      ICustomerService customerService,
                                      IEventPublisher eventPublisher,
                                      IGenericAttributeService genericAttributeService,
                                      IHttpContextAccessor httpContextAccessor,
                                      ILocalizationService localizationService,
                                      IPluginFinder pluginFinder,
                                      IRepository <ExternalAuthenticationRecord> externalAuthenticationRecordRepository,
                                      IShoppingCartService shoppingCartService,
                                      IStoreContext storeContext,
                                      IWorkContext workContext,
                                      IWorkflowMessageService workflowMessageService,
                                      LocalizationSettings localizationSettings)
 {
     this._customerSettings = customerSettings;
     this._externalAuthenticationSettings = externalAuthenticationSettings;
     this._authenticationService          = authenticationService;
     this._customerActivityService        = customerActivityService;
     this._customerRegistrationService    = customerRegistrationService;
     this._customerService         = customerService;
     this._eventPublisher          = eventPublisher;
     this._genericAttributeService = genericAttributeService;
     this._httpContextAccessor     = httpContextAccessor;
     this._localizationService     = localizationService;
     this._pluginFinder            = pluginFinder;
     this._externalAuthenticationRecordRepository = externalAuthenticationRecordRepository;
     this._shoppingCartService    = shoppingCartService;
     this._storeContext           = storeContext;
     this._workContext            = workContext;
     this._workflowMessageService = workflowMessageService;
     this._localizationSettings   = localizationSettings;
 }