public UpdatePasswordPageViewModel(IConnectionService connectionService,
                                    INavigationService navigationService,
                                    IDialogService dialogService,
                                    IUpdatePasswordService updatePasswordService,
                                    ISettingsService settingsService)
     : base(connectionService, navigationService, dialogService)
 {
     _updatePasswordService = updatePasswordService;
     _settingsService       = settingsService;
 }
 public PasswordController(UserManager <IdentityUser> userManager, IUpdatePasswordService updatePasswordService)
 {
     _userManager           = userManager;
     _updatePasswordService = updatePasswordService;
 }
Esempio n. 3
0
 public UserAccountChangePasswordController(IUniquePageService uniquePageService, IUpdatePasswordService updatePasswordService)
 {
     _uniquePageService     = uniquePageService;
     _updatePasswordService = updatePasswordService;
 }