DD.WellWorkover.Cloud/AsbCloudInfrastructure/Validators/FileMarkDtoValidator.cs
Харченко Владимир 9792fe2196 CS2-125: Added base dto validation
2022-01-12 17:28:27 +05:00

18 lines
736 B
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using AsbCloudApp.Data;
using FluentValidation;
namespace AsbCloudInfrastructure.Validators
{
public class FileMarkDtoValidator : AbstractValidator<FileMarkDto>
{
public FileMarkDtoValidator()
{
RuleFor(x => x.IdFile).LessThan(1)
.WithMessage("Id файла не может быть ниже 1");
RuleFor(x => x.IdMarkType).LessThan(1)
.WithMessage("Id категории действия с файлом не может быть ниже 1");
RuleFor(x => x.Comment).MaximumLength(200)
.WithMessage("Длина текста комментария не может быть выше 200 символов");
}
}
}