Try your search with a different keyword or use * as a wildcard.
using FluentValidation;
using Nop.Core.Domain.Directory;
using Nop.Services.Localization;
using Nop.Web.Areas.Admin.Models.Directory;
using Nop.Web.Framework.Validators;
namespace Nop.Web.Areas.Admin.Validators.Directory;
public partial class CountryValidator : BaseNopValidator
{
public CountryValidator(ILocalizationService localizationService)
{
RuleFor(x => x.Name)
.NotEmpty()
.WithMessageAwait(localizationService.GetResourceAsync("Admin.Configuration.Countries.Fields.Name.Required"));
RuleFor(p => p.Name).Length(1, 100);
RuleFor(x => x.TwoLetterIsoCode)
.NotEmpty()
.WithMessageAwait(localizationService.GetResourceAsync("Admin.Configuration.Countries.Fields.TwoLetterIsoCode.Required"));
RuleFor(x => x.TwoLetterIsoCode)
.Length(2)
.WithMessageAwait(localizationService.GetResourceAsync("Admin.Configuration.Countries.Fields.TwoLetterIsoCode.Length"));
RuleFor(x => x.ThreeLetterIsoCode)
.NotEmpty()
.WithMessageAwait(localizationService.GetResourceAsync("Admin.Configuration.Countries.Fields.ThreeLetterIsoCode.Required"));
RuleFor(x => x.ThreeLetterIsoCode)
.Length(3)
.WithMessageAwait(localizationService.GetResourceAsync("Admin.Configuration.Countries.Fields.ThreeLetterIsoCode.Length"));
SetDatabaseValidationRules();
}
}