hello-shop/src/HelloShop.OrderingService/Validations/Commands/CancelOrderCommandValidator.cs
2024-09-09 22:53:22 +08:00

17 lines
484 B
C#

// Copyright (c) HelloShop Corporation. All rights reserved.
// See the license file in the project root for more information.
using FluentValidation;
using HelloShop.OrderingService.Commands.Orders;
namespace HelloShop.OrderingService.Validations.Commands
{
public class CancelOrderCommandValidator : AbstractValidator<CancelOrderCommand>
{
public CancelOrderCommandValidator()
{
RuleFor(x => x.OrderNumber).GreaterThan(0);
}
}
}