Try your search with a different keyword or use * as a wildcard.
using FluentValidation;
using Nop.Core.Domain.Customers;
using Nop.Services.Localization;
using Nop.Web.Framework.Validators;
using Nop.Web.Models.Customer;
namespace Nop.Web.Validators.Customer;
public partial class PasswordRecoveryConfirmValidator : BaseNopValidator
{
public PasswordRecoveryConfirmValidator(ILocalizationService localizationService, CustomerSettings customerSettings)
{
RuleFor(x => x.NewPassword).IsPassword(localizationService, customerSettings);
RuleFor(x => x.ConfirmNewPassword).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("Account.PasswordRecovery.ConfirmNewPassword.Required"));
RuleFor(x => x.ConfirmNewPassword).Equal(x => x.NewPassword).WithMessageAwait(localizationService.GetResourceAsync("Account.PasswordRecovery.NewPassword.EnteredPasswordsDoNotMatch"));
}
}