17 lines
657 B
C#
17 lines
657 B
C#
namespace BackOffice.BFF.Application.OtpCQ.Commands.SendOtp;
|
|
public class SendOtpCommandValidator : AbstractValidator<SendOtpCommand>
|
|
{
|
|
public SendOtpCommandValidator()
|
|
{
|
|
RuleFor(model => model.Mobile)
|
|
.NotEmpty();
|
|
}
|
|
public Func<object, string, Task<IEnumerable<string>>> ValidateValue => async (model, propertyName) =>
|
|
{
|
|
var result = await ValidateAsync(ValidationContext<SendOtpCommand>.CreateWithOptions((SendOtpCommand)model, x => x.IncludeProperties(propertyName)));
|
|
if (result.IsValid)
|
|
return Array.Empty<string>();
|
|
return result.Errors.Select(e => e.ErrorMessage);
|
|
};
|
|
}
|