public Login(
     ApplicationUserManager userManager,
     ILogger logger,
     IOtpService otpService,
     IIdentityServerInteractionService interactionService,
     IEventService eventService,
     ApplicationSigninManager signinManager)
 {
     _userManager        = userManager;
     _logger             = logger;
     _otpService         = otpService;
     _interactionService = interactionService;
     _eventService       = eventService;
     _signinManager      = signinManager;
 }
 public AccountController(
     ApplicationUserManager userManager,
     ApplicationSigninManager signInManager,
     IIdentityServerInteractionService interaction,
     IClientStore clientStore,
     IAuthenticationSchemeProvider schemeProvider,
     IEventService events)
 {
     _userManager    = userManager;
     _signInManager  = signInManager;
     _interaction    = interaction;
     _clientStore    = clientStore;
     _schemeProvider = schemeProvider;
     _events         = events;
 }
Esempio n. 3
0
 public SelectAccountPage(
     IIdentityServerInteractionService interactionService,
     ILogger logger,
     ApplicationUserManager userManager,
     ApplicationSigninManager signinManager,
     IEventService eventService,
     IOptions <IdentityServerPlusOptions> options
     )
 {
     _interactionService = interactionService;
     _logger             = logger;
     _userManager        = userManager;
     _signinManager      = signinManager;
     _eventService       = eventService;
     _options            = options;
 }