Example #1
0
 public void InvokeSmartSearchIndexing()
 {
     if (_productFeedService != null)
     {
         _productFeedService.InvokeSmartSearchIndexing();
     }
     else
     {
         if (_logger.IsEnabled(LogLevel.Error))
         {
             _logger.Error("Generate Smart Search Index Was Called Before The Feed Was Generated. Smart Search Was Not Reindexed");
         }
     }
 }
        public String InvokeSmartSearchIndexing()
        {
            String feedResponse = _smartSearchService.InvokeSmartSearchIndexing();

            return(feedResponse);
        }