DD.WellWorkover.Cloud/AsbCloudInfrastructure/Validators/DrillFlowChartDtoValidator.cs

20 lines
886 B
C#
Raw Normal View History

2022-01-12 17:28:27 +05:00
using AsbCloudApp.Data;
using FluentValidation;
namespace AsbCloudInfrastructure.Validators
{
public class DrillFlowChartDtoValidator : AbstractValidator<DrillFlowChartDto>
{
public DrillFlowChartDtoValidator()
{
2022-01-20 12:07:15 +05:00
RuleFor(x => x.IdWell).GreaterThan(0)
2022-01-12 17:28:27 +05:00
.WithMessage("Id скважины не может быть меньше 1");
2022-01-20 12:07:15 +05:00
RuleFor(x => x.IdWellOperationCategory).GreaterThan(0)
2022-01-12 17:28:27 +05:00
.WithMessage("Id категории операции не может быть меньше 1");
2022-01-20 12:07:15 +05:00
RuleFor(x => x.DepthStart).GreaterThan(-1)
2022-01-12 17:28:27 +05:00
.WithMessage("Глубина не может быть отрицательной");
2022-01-20 12:07:15 +05:00
RuleFor(x => x.DepthEnd).GreaterThan(-1)
2022-01-12 17:28:27 +05:00
.WithMessage("Глубина не может быть отрицательной");
}
}
}