Try your search with a different keyword or use * as a wildcard.
using FluentValidation;
using Nop.Core.Domain.Catalog;
using Nop.Services.Localization;
using Nop.Web.Areas.Admin.Models.Catalog;
using Nop.Web.Framework.Validators;
namespace Nop.Web.Areas.Admin.Validators.Catalog;
public partial class ProductAttributeValueModelValidator : BaseNopValidator<ProductAttributeValueModel>
{
public ProductAttributeValueModelValidator(ILocalizationService localizationService)
{
RuleFor(x => x.Name)
.NotEmpty()
.WithMessageAwait(localizationService.GetResourceAsync("Admin.Catalog.Products.ProductAttributes.Attributes.Values.Fields.Name.Required"));
RuleFor(x => x.Quantity)
.GreaterThanOrEqualTo(1)
.WithMessageAwait(localizationService.GetResourceAsync("Admin.Catalog.Products.ProductAttributes.Attributes.Values.Fields.Quantity.GreaterThanOrEqualTo1"))
.When(x => x.AttributeValueTypeId == (int)AttributeValueType.AssociatedToProduct && !x.CustomerEntersQty);
RuleFor(x => x.AssociatedProductId)
.GreaterThanOrEqualTo(1)
.WithMessageAwait(localizationService.GetResourceAsync("Admin.Catalog.Products.ProductAttributes.Attributes.Values.Fields.AssociatedProduct.Choose"))
.When(x => x.AttributeValueTypeId == (int)AttributeValueType.AssociatedToProduct);
SetDatabaseValidationRules<ProductAttributeValue>();
}
}