Example #1
0
        public ActionResult <PokemonDTO> Get(string id)
        {
            PokemonDTO pokemon = service.GetByID(id);

            if (pokemon != null)
            {
                return(pokemon);
            }
            return(NotFound());
        }