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;
 }