12 lines
284 B
C#
12 lines
284 B
C#
using FluentValidation;
|
|
|
|
namespace AutobusApi.Application.Employees.Commands.DeleteEmployee;
|
|
|
|
public class DeleteEmployeeCommandValidator : AbstractValidator<DeleteEmployeeCommand>
|
|
{
|
|
public DeleteEmployeeCommandValidator()
|
|
{
|
|
RuleFor(v => v.Id).GreaterThan(0);
|
|
}
|
|
}
|