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;
/// <summary>
/// Represent a review type validator
/// </summary>
public partial class ReviewTypeValidator : BaseNopValidator<ReviewTypeModel>
{
public ReviewTypeValidator(ILocalizationService localizationService)
{
RuleFor(x => x.Name).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("Admin.Settings.ReviewType.Fields.Name.Required"));
RuleFor(x => x.Description).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("Admin.Settings.ReviewType.Fields.Description.Required"));
SetDatabaseValidationRules<ReviewType>();
}
}