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;
 }
Esempio n. 2
0
 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;
 }
Esempio n. 3
0
        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;
        }
 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;
 }
        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;
        }
        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 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;
 }