public String GenerateSmartSearchFeed()
        {
            //Get all of the products
            String feedResponse = _smartSearchService.GenerateSmartSearchFeedFile();

            return(feedResponse);
        }
Esempio n. 2
0
 public void GenerateSmartSearchFeed()
 {
     _productFeedService = new SmartSearchService(_productService, _categoryService, _orderRepository, _pictureService,
                                                  _smartSearchSettings, _logger, _cacheManager, _localizationService, _mediaSettings, _workContext, _storeContext, _webHelper);
     _productFeedService.GenerateSmartSearchFeedFile();
 }