public ChatAuthenticationService(
     MongoClient mongoClient,
     IW3CAuthenticationService authenticationService,
     IWebsiteBackendRepository websiteBackendRepository
     ) : base(mongoClient)
 {
     _authenticationService    = authenticationService;
     _websiteBackendRepository = websiteBackendRepository;
 }
 public AuthorizationController(
     IBlizzardAuthenticationService authenticationService,
     IW3CAuthenticationService w3CAuthenticationService,
     ITwitchAuthenticationService twitchAuthenticationService)
 {
     _authenticationService       = authenticationService;
     _w3CAuthenticationService    = w3CAuthenticationService;
     _twitchAuthenticationService = twitchAuthenticationService;
 }
Пример #3
0
 public AuthorizationController(
     IBlizzardAuthenticationService authenticationService,
     IW3CAuthenticationService w3CAuthenticationService,
     ITwitchAuthenticationService twitchAuthenticationService,
     RegistrationHandler registrationHandler)
 {
     _authenticationService       = authenticationService;
     _w3CAuthenticationService    = w3CAuthenticationService;
     _twitchAuthenticationService = twitchAuthenticationService;
     _registrationHandler         = registrationHandler;
 }
 public PlayersController(
     IPlayerRepository playerRepository,
     GameModeStatQueryHandler queryHandler,
     IPersonalSettingsRepository personalSettingsRepository,
     IClanRepository clanRepository,
     IW3CAuthenticationService authenticationService)
 {
     _playerRepository           = playerRepository;
     _queryHandler               = queryHandler;
     _personalSettingsRepository = personalSettingsRepository;
     _clanRepository             = clanRepository;
     _authenticationService      = authenticationService;
 }
 public InjectActingPlayerFromAuthCodeFilter(IW3CAuthenticationService authService)
 {
     _authService = authService;
 }
Пример #6
0
 public CheckIfBattleTagBelongsToAuthCodeFilter(IW3CAuthenticationService authService)
 {
     _authService = authService;
 }
Пример #7
0
 public CheckIfBattleTagIsAdminFilter(IW3CAuthenticationService authService)
 {
     _authService = authService;
 }