20 lines
726 B
C#
20 lines
726 B
C#
using FluentValidation;
|
|
using CMSMicroservice.Protobuf.Protos.Role;
|
|
namespace CMSMicroservice.Protobuf.Validator.Role;
|
|
|
|
public class DeleteRoleRequestValidator : AbstractValidator<DeleteRoleRequest>
|
|
{
|
|
public DeleteRoleRequestValidator()
|
|
{
|
|
RuleFor(model => model.Id)
|
|
.NotNull();
|
|
}
|
|
public Func<object, string, Task<IEnumerable<string>>> ValidateValue => async (model, propertyName) =>
|
|
{
|
|
var result = await ValidateAsync(ValidationContext<DeleteRoleRequest>.CreateWithOptions((DeleteRoleRequest)model, x => x.IncludeProperties(propertyName)));
|
|
if (result.IsValid)
|
|
return Array.Empty<string>();
|
|
return result.Errors.Select(e => e.ErrorMessage);
|
|
};
|
|
}
|