public ValidationPassword_EFCore(IOptions <PasswordValidationConfig> config, IUserPasswordChangeHistoryService userPasswordChangeHistory, IUserPasswordBlackListService userPasswordBlackList)
 {
     this.config = config;
     this.userPasswordChangeHistory = userPasswordChangeHistory;
     this.userPasswordBlackList     = userPasswordBlackList;
 }
 public HomeController(IUserPasswordChangeHistoryService userPasswordChangeHistoryService, UserManager <AppUser> userManager)
 {
     this.userPasswordChangeHistoryService = userPasswordChangeHistoryService;
     this.userManager = userManager;
 }