forked from ddrilling/AsbCloudServer
16 lines
570 B
C#
16 lines
570 B
C#
using AsbCloudApp.Data;
|
|
using FluentValidation;
|
|
|
|
namespace AsbCloudInfrastructure.Validators
|
|
{
|
|
public class WellOperationDtoValidator : AbstractValidator<WellOperationDto>
|
|
{
|
|
public WellOperationDtoValidator()
|
|
{
|
|
RuleFor(x => x.IdWell).GreaterThan(0)
|
|
.WithMessage("Id скважины не может быть меньше 1");
|
|
RuleFor(x => x.Comment).MaximumLength(4096)
|
|
.WithMessage("Комментарий не может быть длиннее 4096 символов");
|
|
}
|
|
}
|
|
} |