/// <inheritdoc/>
        public void ShowFeedSearch(SearchQuery query)
        {
            #region Sanity checks
            if (query == null) throw new ArgumentNullException(nameof(query));
            #endregion

            Output(query.ToString(), query.Results);
        }
 public void ShowFeedSearch(SearchQuery query)
 {
     // No UI, so nothing to do
 }