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