namespace FrontOffice.BFF.Application.UserWalletCQ.Commands.TransferUserWalletBallance; public class TransferUserWalletBallanceCommandValidator : AbstractValidator { public TransferUserWalletBallanceCommandValidator() { } public Func>> ValidateValue => async (model, propertyName) => { var result = await ValidateAsync(ValidationContext.CreateWithOptions((Unit)model, x => x.IncludeProperties(propertyName))); if (result.IsValid) return Array.Empty(); return result.Errors.Select(e => e.ErrorMessage); }; }