hello-shop/src/HelloShop.BasketService/Validations/Baskets/UpdateBasketRequestValidator.cs
2024-07-10 22:41:32 +08:00

18 lines
545 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
using FluentValidation;
using HelloShop.BasketService.Protos;
namespace HelloShop.BasketService.Validations.Baskets
{
public class UpdateBasketRequestValidator : AbstractValidator<UpdateBasketRequest>
{
public UpdateBasketRequestValidator()
{
RuleFor(x => x.Items).NotNull();
RuleForEach(x => x.Items).SetValidator(new BasketListItemValidator());
}
}
}