public LeagueOfLegendsAuthenticationGeneratorAdapter(
     ILeagueOfLegendsService leagueOfLegendsService,
     IGameAuthenticationRepository gameAuthenticationRepository,
     IGameCredentialRepository gameCredentialRepository
     )
 {
     _leagueOfLegendsService       = leagueOfLegendsService;
     _gameAuthenticationRepository = gameAuthenticationRepository;
     _gameCredentialRepository     = gameCredentialRepository;
 }
 public LeagueOfLegendsChallengeMatchesAdapter(ILeagueOfLegendsService leagueOfLegendsService)
 {
     _leagueOfLegendsService = leagueOfLegendsService;
 }
Ejemplo n.º 3
0
 public LeagueOfLegendsAuthenticationValidatorAdapter(ILeagueOfLegendsService leagueOfLegendsService, IGameAuthenticationRepository gameAuthenticationRepository)
 {
     _leagueOfLegendsService       = leagueOfLegendsService;
     _gameAuthenticationRepository = gameAuthenticationRepository;
 }