public FedexService(CurrencySettings currencySettings, FedexSettings fedexSettings, ICountryService countryService, ICurrencyService currencyService, ICustomerService customerService, ILogger logger, IMeasureService measureService, IOrderTotalCalculationService orderTotalCalculationService, IProductService productService, IShippingService shippingService, IStateProvinceService stateProvinceService, IWorkContext workContext) { _currencySettings = currencySettings; _fedexSettings = fedexSettings; _countryService = countryService; _currencyService = currencyService; _customerService = customerService; _logger = logger; _measureService = measureService; _orderTotalCalculationService = orderTotalCalculationService; _productService = productService; _shippingService = shippingService; _stateProvinceService = stateProvinceService; _workContext = workContext; }
public ShippingFedexController(FedexSettings fedexSettings, ISettingService settingService, ILocalizationService localizationService) { this._fedexSettings = fedexSettings; this._settingService = settingService; this._localizationService = localizationService; }
public ShippingFedexController(FedexSettings fedexSettings, ILocalizationService localizationService, INotificationService notificationService, IPermissionService permissionService, ISettingService settingService) { _fedexSettings = fedexSettings; _localizationService = localizationService; _notificationService = notificationService; _permissionService = permissionService; _settingService = settingService; }
public FedexService(CurrencySettings currencySettings, FedexSettings fedexSettings, ICurrencyService currencyService, ILogger logger, IMeasureService measureService, IOrderTotalCalculationService orderTotalCalculationService, IShippingService shippingService, IWorkContext workContext) { _currencySettings = currencySettings; _fedexSettings = fedexSettings; _currencyService = currencyService; _logger = logger; _measureService = measureService; _orderTotalCalculationService = orderTotalCalculationService; _shippingService = shippingService; _workContext = workContext; }
public ShippingFedexController(FedexSettings fedexSettings, ISettingService settingService) { this._fedexSettings = fedexSettings; this._settingService = settingService; }