Esempio n. 1
0
 public AccessTokenProvider(
     IProfileTokenService profileTokenService,
     IServiceTokenService serviceTokenService)
 {
     _profileTokenService = profileTokenService;
     _serviceTokenService = serviceTokenService;
 }
Esempio n. 2
0
 public InMemoryServiceClient(
     IHttpClientFactory httpClientFactory,
     IProfileTokenService profileTokenService,
     IServiceTokenService serviceTokenService)
 {
     _httpClientFactory   = httpClientFactory;
     _profileTokenService = profileTokenService;
     _serviceTokenService = serviceTokenService;
 }
Esempio n. 3
0
 public RealtimeAuthenticationController(ITyrCache cache, IServiceTokenService serviceTokenService)
 {
     _cache = cache;
     _serviceTokenService = serviceTokenService;
 }