public AccountRecoveryController(IUserService userService,
                                  IPasswordRecoveryService passwordRecoveryService,
                                  IPortalFrontendSettings settings)
 {
     _userService             = userService;
     _passwordRecoveryService = passwordRecoveryService;
     _settings = settings;
 }
Beispiel #2
0
 public AuthenticationController(IMapper mapper,
                                 IUserAuthenticationService authService,
                                 IPasswordRecoveryService passwordRecoveryService)
     : base(mapper)
 {
     _authService             = authService;
     _passwordRecoveryService = passwordRecoveryService;
 }
 public AccountRecoveryController(IUserService userService,
     IPasswordRecoveryService passwordRecoveryService,
     IPortalFrontendSettings settings)
 {
     _userService = userService;
     _passwordRecoveryService = passwordRecoveryService;
     _settings = settings;
 }
 public UsersController(IUserService userService, IRegistrationService registrationalService, IConfirmationSenderService confirmationalService,
                        IAuthentificationService authentificationSerice, IJwtService jwtService, IEmailChangeService emailChangeService, IEmailConfirmationService emailConfirmationService,
                        IPasswordChangeService passwordChangeService, IPasswordRecoveryService passwordRecoveryService, IValidationService userDraftValidationService)
 {
     _emailChangeService         = emailChangeService;
     _userService                = userService;
     _jwtService                 = jwtService;
     _autentificationService     = authentificationSerice;
     _registrationService        = registrationalService;
     _confirmationSenderService  = confirmationalService;
     _emailConfirmationService   = emailConfirmationService;
     _passwordChangeService      = passwordChangeService;
     _passwordRecoveryService    = passwordRecoveryService;
     _userDraftValidationService = userDraftValidationService;
 }
 public UserPasswordMaintenanceController(IClientService clientService, IPasswordRecoveryService passwordRecoveryService)
 {
     _clientService           = clientService;
     _passwordRecoveryService = passwordRecoveryService;
 }
Beispiel #6
0
 public PasswordRecoveryController(IPasswordRecoveryService passwordService)
 {
     this.passwordService = Utils.NullArgumentCheck("passwordService", passwordService);
 }
Beispiel #7
0
 public ForgotPasswordModel(IPasswordRecoveryService recoveryService, ILogger <ForgotPasswordModel> logger)
 {
     _recoveryService = recoveryService;
     _logger          = logger;
 }
 public HomeController(SessionContext sessionContext, IPasswordRecoveryService recoveryService)
 {
     _sessionContext  = sessionContext;
     _recoveryService = recoveryService;
 }
Beispiel #9
0
 /// <summary />
 public PasswordRecoveryController(IPasswordRecoveryService recoveryService)
 {
     _recoveryService = recoveryService;
 }