Exemplo n.º 1
0
 public BlogPostProductsViewComponent(
     IProductViewModelService productViewModelService,
     IBlogService blogService)
 {
     _productViewModelService = productViewModelService;
     _blogService             = blogService;
 }
 public CatalogController(ICatalogViewModelService catalogViewModelService,
                          IProductViewModelService productViewModelService,
                          IVendorService vendorService,
                          IWorkContext workContext,
                          IStoreContext storeContext,
                          ILocalizationService localizationService,
                          IWebHelper webHelper,
                          IGenericAttributeService genericAttributeService,
                          IAclService aclService,
                          IStoreMappingService storeMappingService,
                          IPermissionService permissionService,
                          ICustomerActivityService customerActivityService,
                          ICustomerActionEventService customerActionEventService,
                          IVendorViewModelService vendorViewModelService,
                          VendorSettings vendorSettings)
 {
     this._catalogViewModelService = catalogViewModelService;
     this._productViewModelService = productViewModelService;
     this._vendorService           = vendorService;
     this._workContext             = workContext;
     this._storeContext            = storeContext;
     this._localizationService     = localizationService;
     this._webHelper = webHelper;
     this._genericAttributeService = genericAttributeService;
     this._aclService                 = aclService;
     this._storeMappingService        = storeMappingService;
     this._permissionService          = permissionService;
     this._customerActivityService    = customerActivityService;
     this._customerActionEventService = customerActionEventService;
     this._vendorViewModelService     = vendorViewModelService;
     this._vendorSettings             = vendorSettings;
 }
Exemplo n.º 3
0
 public ProductController(
     IProductService productService,
     IProductViewModelService productViewModelService,
     IWorkContext workContext,
     IStoreContext storeContext,
     ILocalizationService localizationService,
     IRecentlyViewedProductsService recentlyViewedProductsService,
     ICompareProductsService compareProductsService,
     IAclService aclService,
     IStoreMappingService storeMappingService,
     IPermissionService permissionService,
     ICustomerActivityService customerActivityService,
     ICustomerActionEventService customerActionEventService,
     CatalogSettings catalogSettings,
     ShoppingCartSettings shoppingCartSettings,
     CaptchaSettings captchaSettings
     )
 {
     this._productService                = productService;
     this._productViewModelService       = productViewModelService;
     this._workContext                   = workContext;
     this._storeContext                  = storeContext;
     this._localizationService           = localizationService;
     this._recentlyViewedProductsService = recentlyViewedProductsService;
     this._compareProductsService        = compareProductsService;
     this._aclService                 = aclService;
     this._storeMappingService        = storeMappingService;
     this._permissionService          = permissionService;
     this._customerActivityService    = customerActivityService;
     this._customerActionEventService = customerActionEventService;
     this._catalogSettings            = catalogSettings;
     this._shoppingCartSettings       = shoppingCartSettings;
     this._captchaSettings            = captchaSettings;
 }
 public RecommendedProductsViewComponent(
     IProductViewModelService productViewModelService,
     CatalogSettings catalogSettings
     )
 {
     this._productViewModelService = productViewModelService;
     this._catalogSettings         = catalogSettings;
 }
Exemplo n.º 5
0
 public HomePageBestSellersViewComponent(
     IProductViewModelService productViewModelService,
     CatalogSettings catalogSettings
     )
 {
     this._catalogSettings         = catalogSettings;
     this._productViewModelService = productViewModelService;
 }
Exemplo n.º 6
0
 public CrossSellProductsViewComponent(
     IProductViewModelService productViewModelService,
     ShoppingCartSettings shoppingCartSettings
     )
 {
     this._productViewModelService = productViewModelService;
     this._shoppingCartSettings    = shoppingCartSettings;
 }
 public PersonalizedProductsViewComponent(
     IProductViewModelService productViewModelService,
     CatalogSettings catalogSettings
     )
 {
     this._productViewModelService = productViewModelService;
     this._catalogSettings         = catalogSettings;
 }
Exemplo n.º 8
0
 public RecentlyViewedProductsBlockViewComponent(
     IProductViewModelService productViewModelService,
     CatalogSettings catalogSettings
     )
 {
     this._catalogSettings         = catalogSettings;
     this._productViewModelService = productViewModelService;
 }
Exemplo n.º 9
0
 public SuggestedProductsViewComponent(
     IProductViewModelService productViewModelService,
     CatalogSettings catalogSettings
     )
 {
     _productViewModelService = productViewModelService;
     _catalogSettings         = catalogSettings;
 }
Exemplo n.º 10
0
 public ProductReviewsViewComponent(
     IProductService productService,
     IProductViewModelService productViewModelService,
     CatalogSettings catalogSettings)
 {
     this._productService          = productService;
     this._catalogSettings         = catalogSettings;
     this._productViewModelService = productViewModelService;
 }
Exemplo n.º 11
0
 public HomePageProductsViewComponent(
     IProductService productService,
     IAclService aclService,
     IStoreMappingService storeMappingService,
     IProductViewModelService productViewModelService)
 {
     this._productService          = productService;
     this._aclService              = aclService;
     this._productViewModelService = productViewModelService;
     this._storeMappingService     = storeMappingService;
 }
Exemplo n.º 12
0
 public RelatedProductsViewComponent(
     IProductService productService,
     IAclService aclService,
     IStoreMappingService storeMappingService,
     IProductViewModelService productViewModelService,
     ICacheManager cacheManager,
     IStoreContext storeContext)
 {
     this._productService          = productService;
     this._aclService              = aclService;
     this._productViewModelService = productViewModelService;
     this._storeMappingService     = storeMappingService;
     this._cacheManager            = cacheManager;
     this._storeContext            = storeContext;
 }
Exemplo n.º 13
0
 public PersonalizedProductsViewComponent(
     IProductService productService,
     IWorkContext workContext,
     IAclService aclService,
     IStoreMappingService storeMappingService,
     IProductViewModelService productViewModelService,
     CatalogSettings catalogSettings
     )
 {
     this._productService          = productService;
     this._workContext             = workContext;
     this._aclService              = aclService;
     this._catalogSettings         = catalogSettings;
     this._productViewModelService = productViewModelService;
     this._storeMappingService     = storeMappingService;
 }
Exemplo n.º 14
0
 public CrossSellProductsViewComponent(
     IProductService productService,
     IWorkContext workContext,
     IAclService aclService,
     IStoreMappingService storeMappingService,
     IProductViewModelService productViewModelService,
     IStoreContext storeContext,
     ShoppingCartSettings shoppingCartSettings
     )
 {
     this._productService          = productService;
     this._workContext             = workContext;
     this._aclService              = aclService;
     this._shoppingCartSettings    = shoppingCartSettings;
     this._productViewModelService = productViewModelService;
     this._storeMappingService     = storeMappingService;
     this._storeContext            = storeContext;
 }
Exemplo n.º 15
0
 public RecentlyViewedProductsBlockViewComponent(
     IProductService productService,
     IWorkContext workContext,
     IAclService aclService,
     IStoreMappingService storeMappingService,
     IProductViewModelService productViewModelService,
     IRecentlyViewedProductsService recentlyViewedProductsService,
     CatalogSettings catalogSettings
     )
 {
     this._productService  = productService;
     this._workContext     = workContext;
     this._aclService      = aclService;
     this._catalogSettings = catalogSettings;
     this._recentlyViewedProductsService = recentlyViewedProductsService;
     this._storeMappingService           = storeMappingService;
     this._productViewModelService       = productViewModelService;
 }
Exemplo n.º 16
0
 public ProductsAlsoPurchasedViewComponent(
     IProductService productService,
     IAclService aclService,
     IStoreMappingService storeMappingService,
     IProductViewModelService productViewModelService,
     ICacheManager cacheManager,
     IOrderReportService orderReportService,
     IStoreContext storeContext,
     CatalogSettings catalogSettings
     )
 {
     _productService          = productService;
     _aclService              = aclService;
     _catalogSettings         = catalogSettings;
     _productViewModelService = productViewModelService;
     _storeMappingService     = storeMappingService;
     _cacheManager            = cacheManager;
     _orderReportService      = orderReportService;
     _storeContext            = storeContext;
 }
Exemplo n.º 17
0
 public HomePageBestSellersViewComponent(
     IProductService productService,
     IAclService aclService,
     IStoreMappingService storeMappingService,
     IProductViewModelService productViewModelService,
     IStoreContext storeContext,
     ICacheManager cacheManager,
     IOrderReportService orderReportService,
     CatalogSettings catalogSettings
     )
 {
     this._productService          = productService;
     this._aclService              = aclService;
     this._catalogSettings         = catalogSettings;
     this._productViewModelService = productViewModelService;
     this._storeMappingService     = storeMappingService;
     this._storeContext            = storeContext;
     this._orderReportService      = orderReportService;
     this._cacheManager            = cacheManager;
 }
Exemplo n.º 18
0
 public CustomerController(ICustomerService customerService,
                           IProductService productService,
                           IProductReviewService productReviewService,
                           IProductReviewViewModelService productReviewViewModelService,
                           IProductViewModelService productViewModelService,
                           ICustomerViewModelService customerViewModelService,
                           IGenericAttributeService genericAttributeService,
                           ICustomerRegistrationService customerRegistrationService,
                           ILocalizationService localizationService,
                           CustomerSettings customerSettings,
                           IWorkContext workContext,
                           IStoreContext storeContext,
                           IExportManager exportManager,
                           ICustomerAttributeParser customerAttributeParser,
                           ICustomerAttributeService customerAttributeService,
                           IAddressAttributeParser addressAttributeParser,
                           IAddressAttributeService addressAttributeService,
                           IWorkflowMessageService workflowMessageService,
                           IDownloadService downloadService)
 {
     _customerService               = customerService;
     _productService                = productService;
     _productReviewService          = productReviewService;
     _productReviewViewModelService = productReviewViewModelService;
     _productViewModelService       = productViewModelService;
     _customerViewModelService      = customerViewModelService;
     _genericAttributeService       = genericAttributeService;
     _customerRegistrationService   = customerRegistrationService;
     _localizationService           = localizationService;
     _customerSettings              = customerSettings;
     _workContext              = workContext;
     _storeContext             = storeContext;
     _exportManager            = exportManager;
     _customerAttributeParser  = customerAttributeParser;
     _customerAttributeService = customerAttributeService;
     _addressAttributeParser   = addressAttributeParser;
     _addressAttributeService  = addressAttributeService;
     _workflowMessageService   = workflowMessageService;
     _downloadService          = downloadService;
 }
 public RelatedProductsViewComponent(
     IProductViewModelService productViewModelService)
 {
     this._productViewModelService = productViewModelService;
 }
Exemplo n.º 20
0
 public ProductController(IProductViewModelService productService, IWebHostEnvironment webHostEnvironment)
 {
     _productService     = productService;
     _webHostEnvironment = webHostEnvironment;
 }
Exemplo n.º 21
0
 public HomePageNewProductsViewComponent(
     IProductViewModelService productViewModelService)
 {
     _productViewModelService = productViewModelService;
 }
Exemplo n.º 22
0
 public ProductsController(IClientViewModelService clientViewModelService, IProductViewModelService productViewModelService)
 {
     _clientViewModelService  = clientViewModelService;
     _productViewModelService = productViewModelService;
 }
Exemplo n.º 23
0
 public HomePageProductsViewComponent(
     IProductViewModelService productViewModelService)
 {
     this._productViewModelService = productViewModelService;
 }
Exemplo n.º 24
0
 public SimilarProductsViewComponent(
     IProductViewModelService productViewModelService)
 {
     _productViewModelService = productViewModelService;
 }