using FluentValidation; using CMSMicroservice.Protobuf.Protos.Role; namespace CMSMicroservice.Protobuf.Validator.Role; public class DeleteRoleRequestValidator : AbstractValidator { public DeleteRoleRequestValidator() { RuleFor(model => model.Id) .NotNull(); } public Func>> ValidateValue => async (model, propertyName) => { var result = await ValidateAsync(ValidationContext.CreateWithOptions((DeleteRoleRequest)model, x => x.IncludeProperties(propertyName))); if (result.IsValid) return Array.Empty(); return result.Errors.Select(e => e.ErrorMessage); }; }