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