classlib/ExpenseTracker.Application/Accounts/Queries/Charts/GetExpenseBarChart/GetExpenseBarChartQueryValidator.cs
2024-08-07 21:12:02 +03:00

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();
}
}