Exemple #1
0
 public AccountController(
     IIdentityServerInteractionService interaction,
     IClientStore clientStore,
     IAuthenticationSchemeProvider schemeProvider,
     IEventService events,
     IUserAppServiceClient userAppServiceClient,
     IMobileLoginCodeSender sMSVerificationCode,
     IConfiguration config, IHandleLoginService handleLoginService)
 {
     _interaction          = interaction;
     _clientStore          = clientStore;
     _schemeProvider       = schemeProvider;
     _events               = events;
     _smsVerificationCode  = sMSVerificationCode;
     _userAppServiceClient = userAppServiceClient;
     _config               = config;
     _handleLoginService   = handleLoginService;
 }
Exemple #2
0
 public ResourceOwnerPasswordValidator(IHandleLoginService handleLoginService)
 {
     _handleLoginService = handleLoginService;
 }