public IEnumerable <Joke> ViewAll()
        {
            var jokeRepo = new JokesRepository(_connectionString);

            return(jokeRepo.GetAll());
        }
Esempio n. 2
0
        public IActionResult ViewAll()
        {
            var repo = new JokesRepository(_connectionString);

            return(View(repo.GetAll()));
        }