public MissingImageProductController(
     ICustomProductService customProductService,
     IProductAbcDescriptionService productAbcDescriptionService
     )
 {
     _customProductService         = customProductService;
     _productAbcDescriptionService = productAbcDescriptionService;
 }
Example #2
0
 public YahooService(
     IAbcMattressBaseService abcMattressBaseService,
     IAbcMattressEntryService abcMattressEntryService,
     IAbcMattressFrameService abcMattressFrameService,
     IAbcMattressGiftService abcMattressGiftService,
     IAbcMattressModelService abcMattressModelService,
     IAbcMattressPackageService abcMattressPackageService,
     IAbcMattressProtectorService abcMattressProtectorService,
     IAddressService addressService,
     IAttributeUtilities attributeUtilities,
     ICountryService countryService,
     ICustomOrderService customOrderService,
     ICustomShopService customShopService,
     IEncryptionService encryptionService,
     IGenericAttributeService genericAttributeService,
     IGiftCardService giftCardService,
     IHomeDeliveryCostService homeDeliveryCostService,
     IPriceCalculationService priceCalculationService,
     IProductService productService,
     IProductAbcDescriptionService productAbcDescriptionService,
     IStateProvinceService stateProvinceService,
     IStoreService storeService,
     IUrlRecordService urlRecordService,
     IWarrantyService warrantyService,
     ExportOrderSettings settings,
     SecuritySettings securitySettings,
     IPaymentService paymentService
     )
 {
     _abcMattressBaseService      = abcMattressBaseService;
     _abcMattressEntryService     = abcMattressEntryService;
     _abcMattressFrameService     = abcMattressFrameService;
     _abcMattressGiftService      = abcMattressGiftService;
     _abcMattressModelService     = abcMattressModelService;
     _abcMattressPackageService   = abcMattressPackageService;
     _abcMattressProtectorService = abcMattressProtectorService;
     _addressService               = addressService;
     _attributeUtilities           = attributeUtilities;
     _countryService               = countryService;
     _customOrderService           = customOrderService;
     _customShopService            = customShopService;
     _encryptionService            = encryptionService;
     _genericAttributeService      = genericAttributeService;
     _giftCardService              = giftCardService;
     _homeDeliveryCostService      = homeDeliveryCostService;
     _productService               = productService;
     _productAbcDescriptionService = productAbcDescriptionService;
     _priceCalculationService      = priceCalculationService;
     _stateProvinceService         = stateProvinceService;
     _storeService     = storeService;
     _urlRecordService = urlRecordService;
     _warrantyService  = warrantyService;
     _settings         = settings;
     _securitySettings = securitySettings;
     _paymentService   = paymentService;
 }
 public CartSlideoutProductInfoViewComponent(
     IGenericAttributeService genericAttributeService,
     IPictureService pictureService,
     IProductAbcDescriptionService productAbcDescriptionService,
     IProductService productService)
 {
     _genericAttributeService      = genericAttributeService;
     _pictureService               = pictureService;
     _productAbcDescriptionService = productAbcDescriptionService;
     _productService               = productService;
 }
Example #4
0
 public AbcPromoController(
     IAbcPromoService abcPromoService,
     IManufacturerService manufacturerService,
     IProductAbcDescriptionService productAbcDescriptionService,
     IUrlRecordService urlRecordService
     )
 {
     _abcPromoService              = abcPromoService;
     _manufacturerService          = manufacturerService;
     _productAbcDescriptionService = productAbcDescriptionService;
     _urlRecordService             = urlRecordService;
 }
 public AbcSynchronyPaymentsViewComponent(
     ILogger logger,
     IGenericAttributeService genericAttributeService,
     IAbcMattressListingPriceService abcMattressListingPriceService,
     IAbcMattressProductService abcMattressProductService,
     IProductAbcDescriptionService productAbcDescriptionService,
     IProductAbcFinanceService productAbcFinanceService,
     IProductService productService,
     IStoreContext storeContext
     )
 {
     _logger = logger;
     _abcMattressListingPriceService = abcMattressListingPriceService;
     _abcMattressProductService      = abcMattressProductService;
     _genericAttributeService        = genericAttributeService;
     _productAbcDescriptionService   = productAbcDescriptionService;
     _productAbcFinanceService       = productAbcFinanceService;
     _productService = productService;
     _storeContext   = storeContext;
 }
Example #6
0
 public CorePlugin(
     IWebHelper webHelper,
     ILocalizationService localizationService,
     ILogger logger,
     INopDataProvider nopDataProvider,
     INopFileProvider nopFileProvider,
     IPictureService pictureService,
     IProductAbcDescriptionService productAbcDescriptionService,
     IWebHostEnvironment webHostEnvironment
     )
 {
     _webHelper           = webHelper;
     _localizationService = localizationService;
     _logger          = logger;
     _nopDataProvider = nopDataProvider;
     _nopFileProvider = nopFileProvider;
     _pictureService  = pictureService;
     _productAbcDescriptionService = productAbcDescriptionService;
     _webHostEnvironment           = webHostEnvironment;
 }
Example #7
0
 public UpdateMattressesTask(
     ILogger logger,
     IAbcMattressModelService abcMattressModelService,
     IAbcMattressEntryService abcMattressEntryService,
     IAbcMattressPackageService abcMattressPackageService,
     IAbcMattressProductService abcMattressProductService,
     IProductService productService,
     IProductAbcDescriptionService productAbcDescriptionService,
     IStoreService storeService,
     IStoreMappingService storeMappingService
     )
 {
     _logger = logger;
     _abcMattressModelService      = abcMattressModelService;
     _abcMattressEntryService      = abcMattressEntryService;
     _abcMattressPackageService    = abcMattressPackageService;
     _abcMattressProductService    = abcMattressProductService;
     _productService               = productService;
     _productAbcDescriptionService = productAbcDescriptionService;
     _storeService        = storeService;
     _storeMappingService = storeMappingService;
 }
        public CustomShoppingCartController(
            CaptchaSettings captchaSettings,
            CustomerSettings customerSettings,
            ICheckoutAttributeParser checkoutAttributeParser,
            ICheckoutAttributeService checkoutAttributeService,
            ICurrencyService currencyService,
            ICustomerActivityService customerActivityService,
            ICustomerService customerService,
            IDiscountService discountService,
            IDownloadService downloadService,
            IGenericAttributeService genericAttributeService,
            IGiftCardService giftCardService,
            ILocalizationService localizationService,
            INopFileProvider fileProvider,
            INotificationService notificationService,
            IPermissionService permissionService,
            IPictureService pictureService,
            IPriceFormatter priceFormatter,
            IProductAttributeParser productAttributeParser,
            IProductAttributeService productAttributeService,
            IProductService productService,
            IShippingService shippingService,
            IShoppingCartModelFactory shoppingCartModelFactory,
            IShoppingCartService shoppingCartService,
            IStaticCacheManager staticCacheManager,
            IStoreContext storeContext,
            ITaxService taxService,
            IUrlRecordService urlRecordService,
            IWebHelper webHelper,
            IWorkContext workContext,
            IWorkflowMessageService workflowMessageService,
            MediaSettings mediaSettings,
            OrderSettings orderSettings,
            ShoppingCartSettings shoppingCartSettings,
            ShippingSettings shippingSettings,
            // custom
            IAttributeUtilities attributeUtilities,
            IRepository <CustomerShopMapping> customerShopMappingRepository,
            IBackendStockService backendStockService,
            IProductAbcDescriptionService productAbcDescriptionService,
            IWidgetPluginManager widgetPluginManager
            ) : base(captchaSettings, customerSettings, checkoutAttributeParser, checkoutAttributeService,
                     currencyService, customerActivityService, customerService, discountService,
                     downloadService, genericAttributeService, giftCardService, localizationService,
                     fileProvider, notificationService, permissionService, pictureService,
                     priceFormatter, productAttributeParser, productAttributeService, productService,
                     shippingService, shoppingCartModelFactory, shoppingCartService, staticCacheManager,
                     storeContext, taxService, urlRecordService, webHelper,
                     workContext, workflowMessageService, mediaSettings, orderSettings,
                     shoppingCartSettings, shippingSettings)
        {
            _customerActivityService = customerActivityService;
            _localizationService     = localizationService;
            _productAttributeParser  = productAttributeParser;
            _productAttributeService = productAttributeService;
            _productService          = productService;
            _shoppingCartService     = shoppingCartService;
            _shoppingCartSettings    = shoppingCartSettings;
            _storeContext            = storeContext;
            _urlRecordService        = urlRecordService;
            _workContext             = workContext;

            _attributeUtilities            = attributeUtilities;
            _customerShopMappingRepository = customerShopMappingRepository;
            _backendStockService           = backendStockService;
            _productAbcDescriptionService  = productAbcDescriptionService;
            _widgetPluginManager           = widgetPluginManager;
        }