public PokemonSpeciesCacheService(
     IMemoryCache memoryCache,
     ILogger <PokemonSpeciesCacheService> logger,
     IPokemonSpeciesService pokemonSpeciesService)
 {
     _memoryCache           = memoryCache;
     _logger                = logger;
     _pokemonSpeciesService = pokemonSpeciesService;
     _typeName              = GetType().Name;
 }
 public FileUploadHelper(IPokemonSpeciesService pokemonSpeciesService, IPokemonTypesService pokemonTypesService)
 {
     _pokemonSpeciesService = pokemonSpeciesService;
     _pokemonTypesService   = pokemonTypesService;
 }
Ejemplo n.º 3
0
 public PokemonController(IPokemonSpeciesService pokemonSpeciesService, IPokemonTypesService pokemonTypesService)
 {
     _pokemonSpeciesService = pokemonSpeciesService;
     _pokemonTypesService   = pokemonTypesService;
 }