Пример #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 CustomerInformationAttributeController(ICustomerInformationAttributeService customerInformationAttributeService,
                                               ILocalizationService localizationService,
                                               IWorkContext workContext)
 {
     this._customerInformationAttributeService = customerInformationAttributeService;
     this._localizationService = localizationService;
     this._workContext         = workContext;
 }