18 lines
744 B
C#
18 lines
744 B
C#
using FluentValidation;
|
|
using Nop.Core.Domain.Topics;
|
|
using Nop.Services.Localization;
|
|
using Nop.Web.Areas.Admin.Models.Templates;
|
|
using Nop.Web.Framework.Validators;
|
|
|
|
namespace Nop.Web.Areas.Admin.Validators.Templates;
|
|
|
|
public partial class TopicTemplateValidator : BaseNopValidator<TopicTemplateModel>
|
|
{
|
|
public TopicTemplateValidator(ILocalizationService localizationService)
|
|
{
|
|
RuleFor(x => x.Name).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("Admin.System.Templates.Topic.Name.Required"));
|
|
RuleFor(x => x.ViewPath).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("Admin.System.Templates.Topic.ViewPath.Required"));
|
|
|
|
SetDatabaseValidationRules<TopicTemplate>();
|
|
}
|
|
} |