12 lines
265 B
C#
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);
|
|
}
|
|
}
|