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