15 lines
649 B
C#
15 lines
649 B
C#
using FluentValidation;
|
|
using Nop.Services.Localization;
|
|
using Nop.Web.Framework.Validators;
|
|
using Nop.Web.Models.PrivateMessages;
|
|
|
|
namespace Nop.Web.Validators.PrivateMessages;
|
|
|
|
public partial class SendPrivateMessageValidator : BaseNopValidator<SendPrivateMessageModel>
|
|
{
|
|
public SendPrivateMessageValidator(ILocalizationService localizationService)
|
|
{
|
|
RuleFor(x => x.Subject).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("PrivateMessages.SubjectCannotBeEmpty"));
|
|
RuleFor(x => x.Message).NotEmpty().WithMessageAwait(localizationService.GetResourceAsync("PrivateMessages.MessageCannotBeEmpty"));
|
|
}
|
|
} |