Exemplo n.º 1
0
        public IEnumerable <Joke> ViewAll()
        {
            var jokeRepo = new JokesRepository(_connectionString);

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

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