using FluentValidation; namespace AutobusApi.Application.Employees.Commands.DeleteEmployee; public class DeleteEmployeeCommandValidator : AbstractValidator { public DeleteEmployeeCommandValidator() { RuleFor(v => v.Id).GreaterThan(0); } }