public AuthenticateController(
     AuthenticateOrchestrator authenticateOrchestrator,
     IIdentityServerInteractionService interaction,
     IEventService events,
     IOneTimeCodeService oneTimeCodeService,
     IClientStore clientStore)
 {
     _authenticateOrchestrator = authenticateOrchestrator;
     _interaction        = interaction;
     _events             = events;
     _oneTimeCodeService = oneTimeCodeService;
     _clientStore        = clientStore;
 }
 public AuthController(AuthenticateOrchestrator authenticateOrchestrator)
 {
     _authenticateOrchestrator = authenticateOrchestrator;
 }