/// <summary> /// Ctor /// </summary> /// <param name="localizationService">Localization service</param> /// <param name="logger">Logger</param> /// <param name="priceCalculationService">PriceCalculation service</param> /// <param name="productAttributeParser">Product Attribute Parser</param> /// <param name="productService">Product Service</param> /// <param name="settingService">Settings service</param> /// <param name="shippingByTotalService">ShippingByTotal service</param> /// <param name="shippingService">Shipping service</param> /// <param name="storeContext">Store Context</param> /// <param name="shippingByTotalSettings">ShippingByTotal settings</param> /// <param name="webHelper">Web Helper</param> /// <param name="shoppingCartService">Shopping Cart service</param> public ByTotalShippingComputationMethod( ILocalizationService localizationService, ILogger logger, IPriceCalculationService priceCalculationService, IProductAttributeParser productAttributeParser, IProductService productService, ISettingService settingService, IShippingByTotalService shippingByTotalService, IShippingService shippingService, IStoreContext storeContext, ShippingByTotalSettings shippingByTotalSettings, IWebHelper webHelper, IShoppingCartService shoppingCartService) { _localizationService = localizationService; _logger = logger; _priceCalculationService = priceCalculationService; _productAttributeParser = productAttributeParser; _productService = productService; _priceCalculationService = priceCalculationService; _settingService = settingService; _shippingByTotalService = shippingByTotalService; _shippingByTotalSettings = shippingByTotalSettings; _shippingService = shippingService; _storeContext = storeContext; _webHelper = webHelper; _shoppingCartService = shoppingCartService; }
public ShippingByTotalController( CurrencySettings currencySettings, ICountryService countryService, ICurrencyService currencyService, ILocalizationService localizationService, IPermissionService permissionService, ISettingService settingService, IShippingByTotalService shippingByTotalService, IShippingService shippingService, IStateProvinceService stateProvinceService, IStoreService storeService, ShippingByTotalSettings shippingByTotalSettings) { _countryService = countryService; _currencyService = currencyService; _currencySettings = currencySettings; _localizationService = localizationService; _permissionService = permissionService; _settingService = settingService; _shippingByTotalService = shippingByTotalService; _shippingByTotalSettings = shippingByTotalSettings; _shippingService = shippingService; _stateProvinceService = stateProvinceService; _storeService = storeService; }
public ByTotalController( IShippingService shippingService, IShippingByTotalService shippingByTotalService, ShippingByTotalSettings shippingByTotalSettings, ICountryService countryService, AdminAreaSettings adminAreaSettings, ICommonServices services) { this._shippingService = shippingService; this._shippingByTotalService = shippingByTotalService; this._shippingByTotalSettings = shippingByTotalSettings; this._countryService = countryService; this._adminAreaSettings = adminAreaSettings; this._services = services; }
/// <summary> /// Ctor /// </summary> /// <param name="shippingService">Shipping service</param> /// <param name="shippingByTotalService">ShippingByTotal service</param> /// <param name="shippingByTotalSettings">ShippingByTotal settings</param> /// <param name="objectContext">ShippingByTotal object context</param> /// <param name="priceCalculationService">PriceCalculation service</param> /// <param name="settingService">Settings service</param> /// <param name="logger">Logger</param> public ByTotalShippingComputationMethod(IShippingService shippingService, IStoreContext storeContext, IShippingByTotalService shippingByTotalService, ShippingByTotalSettings shippingByTotalSettings, ShippingByTotalObjectContext objectContext, IPriceCalculationService priceCalculationService, ILogger logger, ISettingService settingService) { this._shippingService = shippingService; this._storeContext = storeContext; this._shippingByTotalService = shippingByTotalService; this._shippingByTotalSettings = shippingByTotalSettings; this._objectContext = objectContext; this._priceCalculationService = priceCalculationService; this._logger = logger; this._settingService = settingService; }
/// <summary> /// Ctor /// </summary> /// <param name="shippingService">Shipping service</param> /// <param name="shippingByTotalService">ShippingByTotal service</param> /// <param name="shippingByTotalSettings">ShippingByTotal settings</param> /// <param name="objectContext">ShippingByTotal object context</param> /// <param name="priceCalculationService">PriceCalculation service</param> /// <param name="settingService">Settings service</param> /// <param name="logger">Logger</param> public ByTotalProvider(IShippingService shippingService, IStoreContext storeContext, IShippingByTotalService shippingByTotalService, ShippingByTotalSettings shippingByTotalSettings, IPriceCalculationService priceCalculationService, ILogger logger, ISettingService settingService, ILocalizationService localizationService) { this._shippingService = shippingService; this._storeContext = storeContext; this._shippingByTotalService = shippingByTotalService; this._shippingByTotalSettings = shippingByTotalSettings; this._priceCalculationService = priceCalculationService; this._logger = logger; this._settingService = settingService; this._localizationService = localizationService; }
public ShippingByTotalController(IShippingService shippingService, IStoreService storeService, ISettingService settingService, IShippingByTotalService shippingByTotalService, ShippingByTotalSettings shippingByTotalSettings, ICountryService countryService, IStateProvinceService stateProvinceService, ICurrencyService currencyService, CurrencySettings currencySettings) { this._shippingService = shippingService; this._storeService = storeService; this._settingService = settingService; this._shippingByTotalService = shippingByTotalService; this._shippingByTotalSettings = shippingByTotalSettings; this._countryService = countryService; this._stateProvinceService = stateProvinceService; this._currencyService = currencyService; this._currencySettings = currencySettings; }
public ByTotalController(IShippingService shippingService, IStoreService storeService, ISettingService settingService, IShippingByTotalService shippingByTotalService, ShippingByTotalSettings shippingByTotalSettings, ICountryService countryService, ICurrencyService currencyService, CurrencySettings currencySettings, AdminAreaSettings adminAreaSettings) { this._shippingService = shippingService; this._storeService = storeService; this._settingService = settingService; this._shippingByTotalService = shippingByTotalService; this._shippingByTotalSettings = shippingByTotalSettings; this._countryService = countryService; this._currencyService = currencyService; this._currencySettings = currencySettings; this._adminAreaSettings = adminAreaSettings; }
/// <summary> /// Ctor /// </summary> /// <param name="shippingService">Shipping service</param> /// <param name="shippingByTotalService">ShippingByTotal service</param> /// <param name="shippingByTotalSettings">ShippingByTotal settings</param> /// <param name="objectContext">ShippingByTotal object context</param> /// <param name="priceCalculationService">PriceCalculation service</param> /// <param name="settingService">Settings service</param> /// <param name="logger">Logger</param> public ByTotalShippingComputationMethod(IShippingService shippingService, IStoreContext storeContext, IShippingByTotalService shippingByTotalService, ShippingByTotalSettings shippingByTotalSettings, ShippingByTotalObjectContext objectContext, IPriceCalculationService priceCalculationService, ILogger logger, ISettingService settingService, ILocalizationService localizationService) { this._shippingService = shippingService; this._storeContext = storeContext; this._shippingByTotalService = shippingByTotalService; this._shippingByTotalSettings = shippingByTotalSettings; this._objectContext = objectContext; this._priceCalculationService = priceCalculationService; this._logger = logger; this._settingService = settingService; this._localizationService = localizationService; }
public ShippingByTotalController(IShippingService shippingService, IStoreService storeService, ISettingService settingService, IShippingByTotalService shippingByTotalService, ShippingByTotalSettings shippingByTotalSettings, ICountryService countryService, IStateProvinceService stateProvinceService, ICurrencyService currencyService, CurrencySettings currencySettings, IPermissionService permissionService, ILocalizationService localizationService) { this._shippingService = shippingService; this._storeService = storeService; this._settingService = settingService; this._shippingByTotalService = shippingByTotalService; this._shippingByTotalSettings = shippingByTotalSettings; this._countryService = countryService; this._stateProvinceService = stateProvinceService; this._currencyService = currencyService; this._currencySettings = currencySettings; this._permissionService = permissionService; this._localizationService = localizationService; }
public ShippingMethodDeletedEventConsumer(IShippingByTotalService shippingByTotalService) => _shippingByTotalService = shippingByTotalService;