22 lines
812 B
C#
22 lines
812 B
C#
using FluentValidation;
|
|
using FrontOffice.BFF.Role.Protobuf.Protos.Role;
|
|
namespace FrontOffice.BFF.Role.Protobuf.Validator;
|
|
|
|
public class CreateNewRoleRequestValidator : AbstractValidator<CreateNewRoleRequest>
|
|
{
|
|
public CreateNewRoleRequestValidator()
|
|
{
|
|
RuleFor(model => model.Name)
|
|
.NotEmpty();
|
|
RuleFor(model => model.Title)
|
|
.NotEmpty();
|
|
}
|
|
public Func<object, string, Task<IEnumerable<string>>> ValidateValue => async (model, propertyName) =>
|
|
{
|
|
var result = await ValidateAsync(ValidationContext<CreateNewRoleRequest>.CreateWithOptions((CreateNewRoleRequest)model, x => x.IncludeProperties(propertyName)));
|
|
if (result.IsValid)
|
|
return Array.Empty<string>();
|
|
return result.Errors.Select(e => e.ErrorMessage);
|
|
};
|
|
}
|