forked from ddrilling/AsbCloudServer
20 lines
872 B
C#
20 lines
872 B
C#
using AsbCloudApp.Data;
|
|
using FluentValidation;
|
|
|
|
namespace AsbCloudInfrastructure.Validators
|
|
{
|
|
public class DrillFlowChartDtoValidator : AbstractValidator<DrillFlowChartDto>
|
|
{
|
|
public DrillFlowChartDtoValidator()
|
|
{
|
|
RuleFor(x => x.IdWell).LessThan(1)
|
|
.WithMessage("Id скважины не может быть меньше 1");
|
|
RuleFor(x => x.IdWellOperationCategory).LessThan(1)
|
|
.WithMessage("Id категории операции не может быть меньше 1");
|
|
RuleFor(x => x.DepthStart).LessThan(1)
|
|
.WithMessage("Глубина не может быть отрицательной");
|
|
RuleFor(x => x.DepthEnd).LessThan(1)
|
|
.WithMessage("Глубина не может быть отрицательной");
|
|
}
|
|
}
|
|
} |