16 lines
428 B
C#
16 lines
428 B
C#
using FluentValidation;
|
|
|
|
namespace ExpenseTracker.Application.Accounts.Queries.Charts.GetExpenseBarChart;
|
|
|
|
public class GetExpenseBarChartQueryValidator : AbstractValidator<GetExpenseBarChartQuery>
|
|
{
|
|
public GetExpenseBarChartQueryValidator()
|
|
{
|
|
// RuleFor(v => v.AccountId).NotEmpty();
|
|
|
|
RuleFor(v => v.FromDate).NotEmpty();
|
|
|
|
RuleFor(v => v.ToDate).GreaterThan(v => v.FromDate).NotEmpty();
|
|
}
|
|
}
|