Exemplo n.º 1
0
 public ChangePasswordViewModel(IChangePasswordService changePasswordService,
                                NavigationManager navigationManager, IHttpContextAccessor httpContextAccessor)
 {
     ChangePasswordService = changePasswordService;
     NavigationManager     = navigationManager;
     HttpContextAccessor   = httpContextAccessor;
 }
Exemplo n.º 2
0
 public AccountController(IAuthService authService, IChangePasswordService changePasswordService, IConfirmAccountService confirmAccountService,
                          ILogger <AccountController> logger, ICacheService cacheService, IReCaptchaValidation reCaptchaValidation)
 {
     _authService           = authService;
     _changePasswordService = changePasswordService;
     _confirmAccountService = confirmAccountService;
     _logger              = logger;
     _cacheService        = cacheService;
     _reCaptchaValidation = reCaptchaValidation;
 }
Exemplo n.º 3
0
 public UserController(ICreateUserService createUserService, IGetUsersService getUsersService,
                       IUpdateUserService updateUserService, IChangePasswordService changePasswordService,
                       IGetRolesService getRolesService, IDeleteUserService deleteUserService,
                       IGetPermissionsService getPermissionsService, IPermissionVerificationService permissionVerificationService)
 {
     this.createUserService             = createUserService;
     this.getUsersService               = getUsersService;
     this.updateUserService             = updateUserService;
     this.changePasswordService         = changePasswordService;
     this.getRolesService               = getRolesService;
     this.deleteUserService             = deleteUserService;
     this.getPermissionsService         = getPermissionsService;
     this.permissionVerificationService = permissionVerificationService;
 }
        public NeedChangePasswordModel(IMyUserService myUserService, ILogger <NeedChangePasswordModel> logger,
                                       SystemLogHelper systemLogHelper, IHttpContextAccessor httpContextAccessor,
                                       IAccountPolicyService AccountPolicyService, IChangePasswordService changePasswordService)
        {
#if DEBUG
            NewPassword   = "";
            AgainPassword = "";
            PasswordType  = "";
#endif
            this.myUserService         = myUserService;
            this.logger                = logger;
            SystemLogHelper            = systemLogHelper;
            HttpContextAccessor        = httpContextAccessor;
            AccountPolicyService       = AccountPolicyService;
            this.changePasswordService = changePasswordService;
        }
Exemplo n.º 5
0
 public ChangePasswordController(IConfigurationService configurationService, IChangePasswordService changePasswordService)
     : base(configurationService)
 {
     _changePasswordService = changePasswordService;
 }
Exemplo n.º 6
0
 public ChangePasswordHandler(IChangePasswordService changePasswordService)
 {
     _changePasswordService = changePasswordService;
 }
 public ChangePasswordViewModel(IChangePasswordService changePasswordService,
                                NavigationManager navigationManager)
 {
     ChangePasswordService = changePasswordService;
     NavigationManager     = navigationManager;
 }
Exemplo n.º 8
0
 public SettleCreditCardOutstandingBalanceHandler(IChangePasswordService changePasswordService)
 {
     _changePasswordService = changePasswordService;
 }
Exemplo n.º 9
0
 public SLTReloadBillPaymentHandler(IChangePasswordService changePasswordService)
 {
     _changePasswordService = changePasswordService;
 }