forked from ddrilling/AsbCloudServer
18 lines
699 B
C#
18 lines
699 B
C#
using AsbCloudApp.Data.ProcessMap;
|
|
using FluentValidation;
|
|
|
|
namespace AsbCloudInfrastructure.Validators
|
|
{
|
|
public class ProcessMapValidator : AbstractValidator<ProcessMapDto>
|
|
{
|
|
public ProcessMapValidator()
|
|
{
|
|
RuleFor(x => x.IdWell).GreaterThan(0)
|
|
.WithMessage("Id скважины не может быть меньше 1");
|
|
RuleFor(x => x.DepthStart).GreaterThan(-1)
|
|
.WithMessage("Глубина не может быть отрицательной");
|
|
RuleFor(x => x.DepthEnd).GreaterThan(-1)
|
|
.WithMessage("Глубина не может быть отрицательной");
|
|
}
|
|
}
|
|
} |