예제 #1
0
 public SearchProductController(ICategoryService categoryService,
                                ICategoryProductAttributeService categoryProductAttributeService,
                                ICurrencyService currencyService,
                                IWorkContext workContext, ICustomerInformationAttributeService customerInformationAttributeService,
                                ICityService cityService,
                                IProductService productService,
                                ICurrencyService currenncyService,
                                IPictureService pictureService,
                                IUrlRecordService urlRecordService,
                                ICustomerActivityService customerActivityService,
                                ISearchLogService searchLogService,
                                ILocalizationService localizationService)
 {
     this._categoryService = categoryService;
     this._categoryProductAttributeService = categoryProductAttributeService;
     this._currencyService = currencyService;
     this._workContext     = workContext;
     this._customerInformationAttributeService = customerInformationAttributeService;
     this._cityService             = cityService;
     this._productService          = productService;
     this._currencyService         = currencyService;
     this._pictureService          = pictureService;
     this._urlRecordService        = urlRecordService;
     this._customerActivityService = customerActivityService;
     this._searchLogService        = searchLogService;
     this._localizationService     = localizationService;
 }
예제 #2
0
 public CategoryController(ICategoryService categoryService, ICategoryTemplateService categoryTemplateService,
                           IManufacturerService manufacturerService, IProductService productService,
                           ICustomerService customerService,
                           ICategoryProductAttributeService categoryProductAttributeService,
                           IUrlRecordService urlRecordService, IPictureService pictureService, ILanguageService languageService,
                           ILocalizationService localizationService, ILocalizedEntityService localizedEntityService,
                           IDiscountService discountService, IPermissionService permissionService,
                           IAclService aclService,
                           IExportManager exportManager, IWorkContext workContext,
                           ICustomerActivityService customerActivityService, AdminAreaSettings adminAreaSettings,
                           CatalogSettings catalogSettings)
 {
     this._categoryService         = categoryService;
     this._categoryTemplateService = categoryTemplateService;
     this._manufacturerService     = manufacturerService;
     this._productService          = productService;
     this._customerService         = customerService;
     this._urlRecordService        = urlRecordService;
     this._pictureService          = pictureService;
     this._languageService         = languageService;
     this._localizationService     = localizationService;
     this._localizedEntityService  = localizedEntityService;
     this._discountService         = discountService;
     this._permissionService       = permissionService;
     this._aclService                      = aclService;
     this._exportManager                   = exportManager;
     this._workContext                     = workContext;
     this._customerActivityService         = customerActivityService;
     this._adminAreaSettings               = adminAreaSettings;
     this._catalogSettings                 = catalogSettings;
     this._categoryProductAttributeService = categoryProductAttributeService;
 }
예제 #3
0
 public UploadCatalogStructureService(ICategoryService categoryService,
                                      IProductAttributeService productAttributeService,
                                      ICategoryProductAttributeService categoryProductAttributeService,
                                      IDownloadService downloadService,
                                      ILocalizedEntityService localizedEntityService,
                                      ICountryService countryService,
                                      ILanguageService languageService,
                                      IUrlRecordService urlRecordService)
 {
     this._categoryService                 = categoryService;
     this._productAttributeService         = productAttributeService;
     this._categoryProductAttributeService = categoryProductAttributeService;
     this._downloadService                 = downloadService;
     this._localizedEntityService          = localizedEntityService;
     this._countryService   = countryService;
     this._languageService  = languageService;
     this._urlRecordService = urlRecordService;
 }
예제 #4
0
 public CategoryAttributesController(ICategoryProductAttributeService categoryProductAttributeService,
                                     IProductAttributeService productAttributeService, IWorkContext workContext,
                                     ILanguageService languageService, ILocalizedEntityService localizedEntityService,
                                     ILocalizationService localizationService, ICustomerActivityService customerActivityService,
                                     IPermissionService permissionService,
                                     ICategoryService categoryService,
                                     IConversionImageService conversionImageService,
                                     IPictureService pictureService)
 {
     this._categoryProductAttributeService = categoryProductAttributeService;
     this._languageService         = languageService;
     this._localizedEntityService  = localizedEntityService;
     this._localizationService     = localizationService;
     this._customerActivityService = customerActivityService;
     this._permissionService       = permissionService;
     this._productAttributeService = productAttributeService;
     this._workContext             = workContext;
     this._categoryService         = categoryService;
     this._conversionImageService  = conversionImageService;
     this._pictureService          = pictureService;
 }
예제 #5
0
 public CatalogueController(IProductService productService,
                            IPictureService pictureService,
                            IWorkContext workContext,
                            CatalogSettings catalogSettings,
                            IProductTemplateService productTemplateService,
                            IFavoritsService favoritsService,
                            ICacheManager cacheManager,
                            MediaSettings mediaSettings,
                            ILocalizationService localizationService,
                            ILanguageService languageService,
                            IProductPriceService productPriceService,
                            ICurrencyService currencyService,
                            ICategoryService categoryService,
                            IAclService aclService,
                            IDateTimeHelper dateTimeHelper,
                            IUrlRecordService urlRecordService,
                            ICategoryProductAttributeService categoryProductAttributeService)
 {
     this._pictureService                  = pictureService;
     this._productService                  = productService;
     this._workContext                     = workContext;
     this._catalogSettings                 = catalogSettings;
     this._productTemplateService          = productTemplateService;
     this._favoritsService                 = favoritsService;
     this._cacheManager                    = cacheManager;
     this._mediaSettings                   = mediaSettings;
     this._localizationService             = localizationService;
     this._productPriceService             = productPriceService;
     this._currencyService                 = currencyService;
     this._categoryService                 = categoryService;
     this._languageService                 = languageService;
     this._aclService                      = aclService;
     this._dateTimeHelper                  = dateTimeHelper;
     this._urlRecordService                = urlRecordService;
     this._categoryProductAttributeService = categoryProductAttributeService;
 }