コード例 #1
0
 public AuthenticateController(
     AuthenticateOrchestrator authenticateOrchestrator,
     IIdentityServerInteractionService interaction,
     IEventService events,
     IOneTimeCodeService oneTimeCodeService,
     IClientStore clientStore)
 {
     _authenticateOrchestrator = authenticateOrchestrator;
     _interaction        = interaction;
     _events             = events;
     _oneTimeCodeService = oneTimeCodeService;
     _clientStore        = clientStore;
 }
コード例 #2
0
 public AuthController(AuthenticateOrchestrator authenticateOrchestrator)
 {
     _authenticateOrchestrator = authenticateOrchestrator;
 }