namespace CMSMicroservice.Application.UserWalletCQ.Commands.UpdateUserWallet; public class UpdateUserWalletCommandValidator : AbstractValidator { public UpdateUserWalletCommandValidator() { RuleFor(model => model.Id) .NotNull(); RuleFor(model => model.UserId) .NotNull(); RuleFor(model => model.Balance) .NotNull(); } public Func>> ValidateValue => async (model, propertyName) => { var result = await ValidateAsync(ValidationContext.CreateWithOptions((UpdateUserWalletCommand)model, x => x.IncludeProperties(propertyName))); if (result.IsValid) return Array.Empty(); return result.Errors.Select(e => e.ErrorMessage); }; }