public ActionResult Index(string title)
        {
            if (title == null)
            {
                return(HttpNotFound());
            }

            if (repo.GetByTitle(title) == null)
            {
                return(HttpNotFound());
            }

            var mod = new ClassInfoVM(repo.GetByTitle(title));

            return(View(mod));
        }