public RegistrationHandler(
     IBlizzardAuthenticationService authenticationService,
     IPlayerRepository playerRepository)
 {
     _authenticationService = authenticationService;
     _playerRepository      = playerRepository;
 }
 public AuthorizationController(
     IBlizzardAuthenticationService blizzardAuthenticationService,
     ITwitchAuthenticationService twitchAuthenticationService)
 {
     _blizzardAuthenticationService = blizzardAuthenticationService;
     _twitchAuthenticationService   = twitchAuthenticationService;
 }
 public AuthorizationController(
     IBlizzardAuthenticationService authenticationService,
     ITwitchAuthenticationService twitchAuthenticationService,
     RegistrationHandler registrationHandler)
 {
     _authenticationService       = authenticationService;
     _twitchAuthenticationService = twitchAuthenticationService;
     _registrationHandler         = registrationHandler;
 }
 public AuthorizationController(
     IBlizzardAuthenticationService authenticationService,
     IW3CAuthenticationService w3CAuthenticationService,
     ITwitchAuthenticationService twitchAuthenticationService)
 {
     _authenticationService       = authenticationService;
     _w3CAuthenticationService    = w3CAuthenticationService;
     _twitchAuthenticationService = twitchAuthenticationService;
 }
Exemplo n.º 5
0
 public PersonalSettingsController(
     IBlizzardAuthenticationService authenticationService,
     IPersonalSettingsRepository personalSettingsRepository,
     IPlayerRepository playerRepository,
     ChatAuthenticationService chatAuthenticationService,
     PersonalSettingsCommandHandler commandHandler)
 {
     _authenticationService      = authenticationService;
     _personalSettingsRepository = personalSettingsRepository;
     _playerRepository           = playerRepository;
     _chatAuthenticationService  = chatAuthenticationService;
     _commandHandler             = commandHandler;
 }
Exemplo n.º 6
0
 public CheckIfBattleTagIsAdminFilter(IBlizzardAuthenticationService blizzardAuthenticationService)
 {
     _blizzardAuthenticationService = blizzardAuthenticationService;
 }
 public InjectActingPlayerFromAuthCodeFilter(IBlizzardAuthenticationService blizzardAuthenticationService)
 {
     _blizzardAuthenticationService = blizzardAuthenticationService;
 }
Exemplo n.º 8
0
 public CheckIfBattleTagBelongsToAuthCodeFilter(IBlizzardAuthenticationService blizzardAuthenticationService)
 {
     _blizzardAuthenticationService = blizzardAuthenticationService;
 }