Example #1
0
 public IActionResult AddPokemon(PokemonDTO pokemonDto)
 {
     try
     {
         pkService.AdicionarPokemon(pokemonDto.nome, pokemonDto.email);
     }catch (Exception ex)
     {
         return(NotFound(ex.Message));
     }
     return(Created("", pokemonDto));
 }