public ActionResult Index()
        {
            var results = _searchHistoryProvider.AllSearchHistory();

            var model = results.Select(s => new SearchHistoryModel
            {
                Id          = s.Id,
                SearchTime  = s.SearchTime.ToString(),
                DisplayName = GetDisplayName(s),
                ReportCount = s.TotalItems,
                Successful  = s.SuccessfulCount > 0
            });

            return(View(model));
        }