public FileUploadHelper(IPokemonSpeciesService pokemonSpeciesService, IPokemonTypesService pokemonTypesService)
 {
     _pokemonSpeciesService = pokemonSpeciesService;
     _pokemonTypesService   = pokemonTypesService;
 }
 public PokemonTypesController(IPokemonTypesService pokemonTypesService)
 {
     _pokemonTypesService = pokemonTypesService;
 }
Exemplo n.º 3
0
 public PokemonController(IPokemonSpeciesService pokemonSpeciesService, IPokemonTypesService pokemonTypesService)
 {
     _pokemonSpeciesService = pokemonSpeciesService;
     _pokemonTypesService   = pokemonTypesService;
 }