27 lines
1.0 KiB
C#
27 lines
1.0 KiB
C#
namespace CMSMicroservice.Application.TransactionsCQ.Commands.UpdateTransactions;
|
|
public class UpdateTransactionsCommandValidator : AbstractValidator<UpdateTransactionsCommand>
|
|
{
|
|
public UpdateTransactionsCommandValidator()
|
|
{
|
|
RuleFor(model => model.Id)
|
|
.NotNull();
|
|
RuleFor(model => model.Amount)
|
|
.NotNull();
|
|
RuleFor(model => model.Description)
|
|
.NotEmpty();
|
|
RuleFor(model => model.PaymentStatus)
|
|
.IsInEnum()
|
|
.NotNull();
|
|
RuleFor(model => model.Type)
|
|
.IsInEnum()
|
|
.NotNull();
|
|
}
|
|
public Func<object, string, Task<IEnumerable<string>>> ValidateValue => async (model, propertyName) =>
|
|
{
|
|
var result = await ValidateAsync(ValidationContext<UpdateTransactionsCommand>.CreateWithOptions((UpdateTransactionsCommand)model, x => x.IncludeProperties(propertyName)));
|
|
if (result.IsValid)
|
|
return Array.Empty<string>();
|
|
return result.Errors.Select(e => e.ErrorMessage);
|
|
};
|
|
}
|