예제 #1
0
        public async Task <IActionResult> GetById(int id)
        {
            var result = await _pokemon.GetPokemon(id);

            return(Ok(result));
        }