12 lines
261 B
C#
12 lines
261 B
C#
using FluentValidation;
|
|
|
|
namespace AutobusApi.Application.Companies.Queries.GetCompany;
|
|
|
|
public class GetCompanyQueryValidator : AbstractValidator<GetCompanyQuery>
|
|
{
|
|
public GetCompanyQueryValidator()
|
|
{
|
|
RuleFor(v => v.Id).GreaterThan(0);
|
|
}
|
|
}
|