20 lines
801 B
C#
20 lines
801 B
C#
|
|
using FluentValidation;
|
||
|
|
using FrontOfficeMicroservice.Protobuf.Protos.UserOrder;
|
||
|
|
namespace FrontOfficeMicroservice.Protobuf.Validator.UserOrder;
|
||
|
|
|
||
|
|
public class SubmitShopBuyOrderRequestValidator : AbstractValidator<SubmitShopBuyOrderRequest>
|
||
|
|
{
|
||
|
|
public SubmitShopBuyOrderRequestValidator()
|
||
|
|
{
|
||
|
|
RuleFor(model => model.TotalAmount)
|
||
|
|
.NotNull();
|
||
|
|
}
|
||
|
|
public Func<object, string, Task<IEnumerable<string>>> ValidateValue => async (model, propertyName) =>
|
||
|
|
{
|
||
|
|
var result = await ValidateAsync(ValidationContext<SubmitShopBuyOrderRequest>.CreateWithOptions((SubmitShopBuyOrderRequest)model, x => x.IncludeProperties(propertyName)));
|
||
|
|
if (result.IsValid)
|
||
|
|
return Array.Empty<string>();
|
||
|
|
return result.Errors.Select(e => e.ErrorMessage);
|
||
|
|
};
|
||
|
|
}
|