// GET: Superhero
        public ActionResult Index()
        {
            var superheroes = superheroRepository.FindAllSuperheroes().ToList();

            return(View("Index", superheroes));
        }