forked from ddrilling/AsbCloudServer
16 lines
568 B
C#
16 lines
568 B
C#
|
using AsbCloudApp.Data;
|
||
|
using FluentValidation;
|
||
|
|
||
|
namespace AsbCloudInfrastructure.Validators
|
||
|
{
|
||
|
public class ReportPropertiesDtoValidator : AbstractValidator<ReportPropertiesDto>
|
||
|
{
|
||
|
public ReportPropertiesDtoValidator()
|
||
|
{
|
||
|
RuleFor(x => x.Name).Length(1, 50)
|
||
|
.WithMessage("Допустимая длина имени файла от 1 до 50 символов");
|
||
|
RuleFor(x => x.IdWell).LessThan(1)
|
||
|
.WithMessage("Id скважины не может быть меньше 1");
|
||
|
}
|
||
|
}
|
||
|
}
|