public async Task <IActionResult> Create([FromBody] PokemonDTO pokemon, CancellationToken cancellationToken = default)
 {
     return(Ok(await _pokemonService.Create(pokemon, cancellationToken)));
 }