Exemplo n.º 1
0
 public AuthenticateOrchestrator(
     ILogger <AuthenticateOrchestrator> logger,
     IEventNotificationService eventNotificationService,
     IOneTimeCodeService oneTimeCodeService,
     IMessageService messageService,
     IUserStore userStore,
     PasswordlessLoginOptions passwordlessLoginOptions,
     IPasswordService passwordService,
     IUrlService urlService,
     IHttpContextAccessor httpContextAccessor,
     ITrustedBrowserStore trustedBrowserStore,
     ISignInService signInService,
     IApplicationService applicationService,
     IApplicationLocalizer localizer)
 {
     _logger = logger;
     _eventNotificationService = eventNotificationService;
     _oneTimeCodeService       = oneTimeCodeService;
     _userStore           = userStore;
     _messageService      = messageService;
     _passwordService     = passwordService;
     _options             = passwordlessLoginOptions;
     _urlService          = urlService;
     _httpContext         = httpContextAccessor.HttpContext;
     _trustedBrowserStore = trustedBrowserStore;
     _signInService       = signInService;
     _applicationService  = applicationService;
     _localizer           = localizer;
 }
 public AuthenticateController(
     AuthenticateOrchestrator authenticateOrchestrator,
     IIdentityServerInteractionService interaction,
     IEventService events,
     IOneTimeCodeService oneTimeCodeService,
     IClientStore clientStore)
 {
     _authenticateOrchestrator = authenticateOrchestrator;
     _interaction        = interaction;
     _events             = events;
     _oneTimeCodeService = oneTimeCodeService;
     _clientStore        = clientStore;
 }
 public AccountController(
     IIdentityServerInteractionService interaction,
     IEmailTemplateService emailTemplateService,
     IUserStore userStore,
     IPasswordService passwordService,
     IOneTimeCodeService oneTimeCodeService,
     IMessageService messageService,
     IdProviderConfig config)
 {
     _interaction = interaction;
     _emailTemplateService = emailTemplateService;
     _userStore = userStore;
     _passwordService = passwordService;
     _oneTimeCodeService = oneTimeCodeService;
     _messageService = messageService;
     _config = config;
 }
Exemplo n.º 4
0
 public UserOrchestrator(
     ILogger <UserOrchestrator> logger,
     IEventNotificationService eventNotificationService,
     IHttpContextAccessor httpContextAccessor,
     IUserStore userStore,
     IPasswordService passwordService,
     IOneTimeCodeService oneTimeCodeService,
     IMessageService messageService,
     PasswordlessLoginOptions passwordlessLoginOptions,
     IApplicationLocalizer localizer)
 {
     _logger = logger;
     _eventNotificationService = eventNotificationService;
     _httpContext              = httpContextAccessor.HttpContext;
     _userStore                = userStore;
     _passwordService          = passwordService;
     _oneTimeCodeService       = oneTimeCodeService;
     _messageService           = messageService;
     _passwordlessLoginOptions = passwordlessLoginOptions;
     _localizer                = localizer;
 }
 public AuthenticateOrchestrator(
     IOneTimeCodeService oneTimeCodeService,
     IMessageService messageService,
     IUserStore userStore,
     IdProviderConfig config,
     IClientStore clientStore,
     IIdentityServerInteractionService interaction,
     IEventService events,
     IPasswordService passwordService,
     IUrlHelper urlHelper)
 {
     _oneTimeCodeService = oneTimeCodeService;
     _userStore          = userStore;
     _messageService     = messageService;
     _clientStore        = clientStore;
     _passwordService    = passwordService;
     _interaction        = interaction;
     _events             = events;
     _config             = config;
     _urlHelper          = urlHelper;
 }