namespace CMSMicroservice.Application.UserContractCQ.Commands.CreateNewUserContract; public class CreateNewUserContractCommandValidator : AbstractValidator { public CreateNewUserContractCommandValidator() { RuleFor(model => model.UserId) .NotNull(); RuleFor(model => model.ContractId) .NotNull(); RuleFor(model => model.SignGuid) .NotEmpty(); RuleFor(model => model.SignedPdfFile) .NotEmpty(); } public Func>> ValidateValue => async (model, propertyName) => { var result = await ValidateAsync(ValidationContext.CreateWithOptions((CreateNewUserContractCommand)model, x => x.IncludeProperties(propertyName))); if (result.IsValid) return Array.Empty(); return result.Errors.Select(e => e.ErrorMessage); }; }