DD.WellWorkover.Cloud/AsbCloudInfrastructure/Validators/FileMarkDtoValidator.cs
Харченко Владимир 8a3bcf311f Fixed dto ids validation
2022-01-20 12:07:15 +05:00

18 lines
742 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).GreaterThan(0)
.WithMessage("Id файла не может быть ниже 1");
RuleFor(x => x.IdMarkType).GreaterThan(0)
.WithMessage("Id категории действия с файлом не может быть ниже 1");
RuleFor(x => x.Comment).MaximumLength(200)
.WithMessage("Длина текста комментария не может быть выше 200 символов");
}
}
}