Files
BackOffice.BFF/src/BackOffice.BFF.Application/RoleCQ/Queries/GetRole/GetRoleQueryValidator.cs

17 lines
642 B
C#
Raw Normal View History

2025-09-28 15:24:13 +03:30
namespace BackOffice.BFF.Application.RoleCQ.Queries.GetRole;
public class GetRoleQueryValidator : AbstractValidator<GetRoleQuery>
{
public GetRoleQueryValidator()
{
RuleFor(model => model.Id)
.NotNull();
}
public Func<object, string, Task<IEnumerable<string>>> ValidateValue => async (model, propertyName) =>
{
var result = await ValidateAsync(ValidationContext<GetRoleQuery>.CreateWithOptions((GetRoleQuery)model, x => x.IncludeProperties(propertyName)));
if (result.IsValid)
return Array.Empty<string>();
return result.Errors.Select(e => e.ErrorMessage);
};
}