Example #1
0
 public PokemonArenaService(PokemonRankSearchService rankSearchService,
                            PokedexProfilerService profilerService,
                            IDataAccess data)
 {
     _rankSearchService = rankSearchService;
     _profilerService   = profilerService;
     _data = data;
 }
Example #2
0
 public PokemonRankSearchController(PokemonRankSearchService rankSearchService,
                                    PokedexProfilerService profilerService)
 {
     _rankSearchService = rankSearchService;
     _profilerService   = profilerService;
 }