public LeagueOfLegendsAuthenticationGeneratorAdapter(
     ILeagueOfLegendsService leagueOfLegendsService,
     IGameAuthenticationRepository gameAuthenticationRepository,
     IGameCredentialRepository gameCredentialRepository
     )
 {
     _leagueOfLegendsService       = leagueOfLegendsService;
     _gameAuthenticationRepository = gameAuthenticationRepository;
     _gameCredentialRepository     = gameCredentialRepository;
 }
 public GameCredentialService(IGameCredentialRepository gameCredentialRepository, IGameAuthenticationService gameAuthenticationService)
 {
     _gameCredentialRepository  = gameCredentialRepository;
     _gameAuthenticationService = gameAuthenticationService;
 }