using FluentValidation; using Nop.Core.Domain.Messages; using Nop.Services.Localization; using Nop.Web.Areas.Admin.Models.Messages; using Nop.Web.Framework.Validators; namespace Nop.Web.Areas.Admin.Validators.Messages; public partial class MessageTemplateValidator : BaseNopValidator { public MessageTemplateValidator(ILocalizationService localizationService) { RuleFor(x => x.Subject).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("Admin.ContentManagement.MessageTemplates.Fields.Subject.Required")); RuleFor(x => x.Body).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("Admin.ContentManagement.MessageTemplates.Fields.Body.Required")); SetDatabaseValidationRules(); } }