autobus-api_old/AutobusApi.Application/Employees/Queries/GetEmployee/GetEmployeeQueryValidator.cs

12 lines
265 B
C#

using FluentValidation;
namespace AutobusApi.Application.Employees.Queries.GetEmployee;
public class GetEmployeeQueryValidator : AbstractValidator<GetEmployeeQuery>
{
public GetEmployeeQueryValidator()
{
RuleFor(v => v.Id).GreaterThan(0);
}
}