public IActionResult Index() { JokesRepository rep = new JokesRepository(_connString); Joke joke = rep.GetJoke(); return(View(joke)); }