Esempio n. 1
0
 public WebWorkContext(HttpContextBase httpContext,
     ILanguageService languageService,
     LocalizationSettings localizationSettings,
     IGenericAttributeService genericAttributeService,
     IStoreMappingService storeMappingService,
     IStoreContext storeContext,
     ICustomerService customerService,
     IUserAgentHelper userAgentHelper,
     IAuthenticationService authenticationService,
     CommonSettings commonSettings,
     IVendorService vendorService,
     ICurrencyService currencyService, 
     CurrencySettings currencySettings,
     TaxSettings taxSettings)
 {
     _httpContext = httpContext;
     _languageService = languageService;
     _localizationSettings = localizationSettings;
     _genericAttributeService = genericAttributeService;
     _storeMappingService = storeMappingService;
     _storeContext = storeContext;
     _customerService = customerService;
     _userAgentHelper = userAgentHelper;
     _authenticationService = authenticationService;
     _commonSettings = commonSettings;
     _vendorService = vendorService;
     _currencyService = currencyService;
     _currencySettings = currencySettings;
     _taxSettings = taxSettings;
 }
Esempio n. 2
0
 public UpdateExchangeRateTask(ISettingService settingService,
     ICurrencyService currencyService,
     CurrencySettings currencySettings)
 {
     _settingService = settingService;
     _currencyService = currencyService;
     _currencySettings = currencySettings;
 }