Example #1
0
        //     private readonly Data.ProductMapToShippingMethodObjectContext _prodMapObjectContext;


        public ShippingByWeightExtendedController(IShippingService shippingService,
                                                  IStoreService storeService,
                                                  ICountryService countryService,
                                                  IStateProvinceService stateProvinceService,
                                                  ShippingByWeightExtendedSettings shippingByWeightSettings,
                                                  IShippingByWeightExtendedService ShippingByWeightExtendedService,
                                                  ISettingService settingService,
                                                  ILocalizationService localizationService,
                                                  IPermissionService permissionService,
                                                  ICurrencyService currencyService,
                                                  CurrencySettings currencySettings,
                                                  IMeasureService measureService,
                                                  MeasureSettings measureSettings

                                                  //      , Data.ProductMapToShippingMethodObjectContext prodMapObjectContext
                                                  )
        {
            this._shippingService                 = shippingService;
            this._storeService                    = storeService;
            this._countryService                  = countryService;
            this._stateProvinceService            = stateProvinceService;
            this._shippingByWeightSettings        = shippingByWeightSettings;
            this._ShippingByWeightExtendedService = ShippingByWeightExtendedService;
            this._settingService                  = settingService;
            this._localizationService             = localizationService;
            this._permissionService               = permissionService;
            this._currencyService                 = currencyService;
            this._currencySettings                = currencySettings;
            this._measureService                  = measureService;
            this._measureSettings                 = measureSettings;

            //        this._prodMapObjectContext = prodMapObjectContext;
        }
 public ProductAdminConsumer(IProductService productService, ILocalizationService localizationService,
                             IGenericAttributeService genericAttributeService, IPermissionService permissionService, IShippingByWeightExtendedService ShippingByWeightExtendedService)
 {
     this._productService                  = productService;
     this._localizationService             = localizationService;
     this._genericAttributeService         = genericAttributeService;
     this._permissionService               = permissionService;
     this._ShippingByWeightExtendedService = ShippingByWeightExtendedService;
 }
 public ByWeightShippingComputationMethod(IShippingService shippingService,
                                          IStoreContext storeContext,
                                          IShippingByWeightExtendedService ShippingByWeightExtendedService,
                                          IPriceCalculationService priceCalculationService,
                                          ShippingByWeightExtendedSettings shippingByWeightSettings,
                                          ShippingByWeightExtendedObjectContext objectContext,
                                          ProductMapToShippingMethodObjectContext prodMapobjectContext,
                                          ISettingService settingService)
 {
     this._shippingService = shippingService;
     this._storeContext    = storeContext;
     this._ShippingByWeightExtendedService = ShippingByWeightExtendedService;
     this._priceCalculationService         = priceCalculationService;
     this._shippingByWeightSettings        = shippingByWeightSettings;
     this._objectContext        = objectContext;
     this._prodMapObjectContext = prodMapobjectContext;
     this._settingService       = settingService;
 }