public PokemonService(ITranslateAPIService translateAPIService, IPokemonAPIService pokemonAPIService, IMapper mapper)
 {
     this.translateAPIService = translateAPIService;
     this.pokemonAPIService   = pokemonAPIService;
     this.mapper = mapper;
 }
 public PokemonService(IPokemonAPIService pokemonAPIService)
 {
     this.pokemonAPIService = pokemonAPIService;
 }