Example #1
0
 public void UploadFeed()
 {
     if (_productFeedService != null)
     {
         if (_smartSearchSettings.AutoFTP)
         {
             _productFeedService.UploadFeed();
         }
     }
     else
     {
         if (_logger.IsEnabled(LogLevel.Error))
         {
             _logger.Error("Upload Feed Was Called Before The Feed Was Generated. No Data Was Uploaded");
         }
     }
 }
        public String UploadSmartSearchFeedViaFTP()
        {
            String response = _smartSearchService.UploadFeed();

            return(response);
        }