28 lines
1008 B
C#
28 lines
1008 B
C#
using CMSMicroservice.Application.CommissionCQ.Commands.ProcessWithdrawal;
|
|
|
|
namespace CMSMicroservice.Application.CommissionCQ.Commands.TriggerWeeklyCalculation;
|
|
|
|
public class TriggerWeeklyCalculationCommandValidator : AbstractValidator<TriggerWeeklyCalculationCommand>
|
|
{
|
|
public TriggerWeeklyCalculationCommandValidator()
|
|
{
|
|
RuleFor(x => x.WeekDefinitionId)
|
|
.NotNull()
|
|
.GreaterThan(0)
|
|
.WithMessage("شماره هفته نمیتواند خالی باشد");
|
|
}
|
|
|
|
public Func<object, string, Task<IEnumerable<string>>> ValidateValue => async (model, propertyName) =>
|
|
{
|
|
var result = await ValidateAsync(
|
|
ValidationContext<TriggerWeeklyCalculationCommand>.CreateWithOptions(
|
|
(TriggerWeeklyCalculationCommand)model,
|
|
x => x.IncludeProperties(propertyName)));
|
|
|
|
if (result.IsValid)
|
|
return Array.Empty<string>();
|
|
|
|
return result.Errors.Select(e => e.ErrorMessage);
|
|
};
|
|
}
|