17 lines
643 B
C#
17 lines
643 B
C#
|
|
namespace FrontOffice.BFF.Application.UserCQ.Queries.GetUser;
|
||
|
|
public class GetUserQueryValidator : AbstractValidator<GetUserQuery>
|
||
|
|
{
|
||
|
|
public GetUserQueryValidator()
|
||
|
|
{
|
||
|
|
RuleFor(model => model.Id)
|
||
|
|
.NotNull();
|
||
|
|
}
|
||
|
|
public Func<object, string, Task<IEnumerable<string>>> ValidateValue => async (model, propertyName) =>
|
||
|
|
{
|
||
|
|
var result = await ValidateAsync(ValidationContext<GetUserQuery>.CreateWithOptions((GetUserQuery)model, x => x.IncludeProperties(propertyName)));
|
||
|
|
if (result.IsValid)
|
||
|
|
return Array.Empty<string>();
|
||
|
|
return result.Errors.Select(e => e.ErrorMessage);
|
||
|
|
};
|
||
|
|
}
|