示例#1
0
        public Joke GetJokeById(int id)
        {
            var repo = new JokesRepository(_connectionString);

            return(repo.GetJokeById(id));
        }