Esempio n. 1
0
 public FlyoutShoppingCartViewComponent(IShoppingCartWebService shoppingCartWebService,
                                        IPermissionService permissionService,
                                        ShoppingCartSettings shoppingCartSettings)
 {
     this._shoppingCartWebService = shoppingCartWebService;
     this._permissionService      = permissionService;
     this._shoppingCartSettings   = shoppingCartSettings;
 }
        public ShoppingCartViewComponent(
            IProductService productService,
            IStoreContext storeContext,
            IWorkContext workContext,
            IShoppingCartService shoppingCartService,
            IPermissionService permissionService,
            IShoppingCartWebService shoppingCartWebService,
            IHttpContextAccessor httpContextAccessor,

            MediaSettings mediaSettings,
            ShoppingCartSettings shoppingCartSettings,
            CatalogSettings catalogSettings,
            OrderSettings orderSettings,
            ShippingSettings shippingSettings,
            TaxSettings taxSettings,
            CaptchaSettings captchaSettings,
            AddressSettings addressSettings,
            RewardPointsSettings rewardPointsSettings
            )
        {
            this._productService      = productService;
            this._workContext         = workContext;
            this._storeContext        = storeContext;
            this._shoppingCartService = shoppingCartService;
            this._permissionService   = permissionService;

            this._shoppingCartWebService = shoppingCartWebService;

            this._mediaSettings        = mediaSettings;
            this._shoppingCartSettings = shoppingCartSettings;
            this._catalogSettings      = catalogSettings;
            this._orderSettings        = orderSettings;
            this._shippingSettings     = shippingSettings;
            this._taxSettings          = taxSettings;
            this._captchaSettings      = captchaSettings;
            this._addressSettings      = addressSettings;
            this._rewardPointsSettings = rewardPointsSettings;
        }
Esempio n. 3
0
 public EstimateShippingViewComponent(IShoppingCartWebService shoppingCartWebService, IWorkContext workContext, IStoreContext storeContext)
 {
     this._shoppingCartWebService = shoppingCartWebService;
     this._workContext            = workContext;
     this._storeContext           = storeContext;
 }
Esempio n. 4
0
 public OrderTotalsViewComponent(IShoppingCartWebService shoppingCartWebService, IWorkContext workContext, IStoreContext storeContext)
 {
     this._shoppingCartWebService = shoppingCartWebService;
     this._workContext            = workContext;
     this._storeContext           = storeContext;
 }