public ActionResult Index()
        {
            var model = new ExplainListingViewModel();

            model.RecordList = SolrResponseStorageService.GetPublicSolrQueryResponseRecords();

            return(View(model));
        }
        public ActionResult MyExplains()
        {
            var model = new ExplainListingViewModel();

            if (SessionService.IsAuthenticated())
            {
                model.RecordList = SolrResponseStorageService.GetSolrQueryResponseRecords(SessionService.GetUserId());
            }

            return(View(model));
        }