public ActionResult Show(int wordToSearchId, int countDisplayId)
        {
            CountDisplay countDisplay         = CountDisplay.Find(countDisplayId);
            Dictionary <string, object> model = new Dictionary <string, object>();
            WordToSearch wordToSearch         = WordToSearch.Find(wordToSearchId);

            model.Add("countDisplay", countDisplay);
            model.Add("wordToSearch", wordToSearch);
            return(View(model));
        }