public CatalogController(ICatalogWebService catalogWebService,
                          ICategoryService categoryService,
                          IProductWebService productWebService,
                          IManufacturerService manufacturerService,
                          IProductService productService,
                          IVendorService vendorService,
                          IWorkContext workContext,
                          IStoreContext storeContext,
                          ILocalizationService localizationService,
                          IWebHelper webHelper,
                          IProductTagService productTagService,
                          IGenericAttributeService genericAttributeService,
                          IAclService aclService,
                          IStoreMappingService storeMappingService,
                          IPermissionService permissionService,
                          ICustomerActivityService customerActivityService,
                          ICustomerActionEventService customerActionEventService,
                          IVendorWebService vendorWebService,
                          CaptchaSettings captchaSettings,
                          MediaSettings mediaSettings,
                          CatalogSettings catalogSettings,
                          VendorSettings vendorSettings,
                          ICacheManager cacheManager,
                          IEventPublisher eventPublisher,
                          IOrderService orderService)
 {
     this._catalogWebService          = catalogWebService;
     this._categoryService            = categoryService;
     this._productWebService          = productWebService;
     this._manufacturerService        = manufacturerService;
     this._productService             = productService;
     this._vendorService              = vendorService;
     this._workContext                = workContext;
     this._storeContext               = storeContext;
     this._localizationService        = localizationService;
     this._webHelper                  = webHelper;
     this._productTagService          = productTagService;
     this._genericAttributeService    = genericAttributeService;
     this._aclService                 = aclService;
     this._storeMappingService        = storeMappingService;
     this._permissionService          = permissionService;
     this._customerActivityService    = customerActivityService;
     this._customerActionEventService = customerActionEventService;
     this._vendorWebService           = vendorWebService;
     this._captchaSettings            = captchaSettings;
     this._mediaSettings              = mediaSettings;
     this._catalogSettings            = catalogSettings;
     this._vendorSettings             = vendorSettings;
     this._eventPublisher             = eventPublisher;
     this._orderService               = orderService;
 }
Beispiel #2
0
 public HomePageManufacturersViewComponent(ICatalogWebService catalogWebService)
 {
     this._catalogWebService = catalogWebService;
 }
Beispiel #3
0
 public TopMenuViewComponent(ICatalogWebService catalogWebService)
 {
     this._catalogWebService = catalogWebService;
 }
Beispiel #4
0
 public PopularProductTagsViewComponent(ICatalogWebService catalogWebService)
 {
     this._catalogWebService = catalogWebService;
 }
 public ManufacturerNavigationViewComponent(ICatalogWebService catalogWebService,
                                            CatalogSettings catalogSettings)
 {
     this._catalogWebService = catalogWebService;
     this._catalogSettings   = catalogSettings;
 }
 public HomePageCategoriesViewComponent(
     ICatalogWebService catalogWebService
     )
 {
     this._catalogWebService = catalogWebService;
 }
 public CategoryNavigationViewComponent(ICatalogWebService catalogWebService)
 {
     this._catalogWebService = catalogWebService;
 }
 public VendorNavigationViewComponent(ICatalogWebService catalogWebService,
                                      VendorSettings vendorSettings)
 {
     this._catalogWebService = catalogWebService;
     this._vendorSettings    = vendorSettings;
 }
Beispiel #9
0
 public SearchBoxViewComponent(ICatalogWebService catalogWebService)
 {
     this._catalogWebService = catalogWebService;
 }