Beispiel #1
0
 public AuthorizationService(
     IAuthorizationTokenRepository authorizationTokenRepository,
     ILoginRequestService loginRequestService,
     IMapper mapper,
     IOptions <SpotifyOptions> spotifyOptions,
     IOptions <AzureOptions> azureOptions)
 {
     _authorizationTokenRepository = authorizationTokenRepository;
     _loginRequestService          = loginRequestService;
     _mapper         = mapper;
     _spotifyOptions = spotifyOptions.Value;
     _azureOptions   = azureOptions.Value;
 }
Beispiel #2
0
 public AuthenticationController(ILoginRequestService loginRequestService)
 {
     _loginRequestService = loginRequestService;
 }