namespace Nop.Core.Domain.Orders; /// /// Represents an order average report line summary /// public partial class OrderAverageReportLineSummary { /// /// Gets or sets the order status /// public OrderStatus OrderStatus { get; set; } /// /// Gets or sets the sum today total /// public decimal SumTodayOrders { get; set; } /// /// Gets or sets the today count /// public int CountTodayOrders { get; set; } /// /// Gets or sets the sum this week total /// public decimal SumThisWeekOrders { get; set; } /// /// Gets or sets the this week count /// public int CountThisWeekOrders { get; set; } /// /// Gets or sets the sum this month total /// public decimal SumThisMonthOrders { get; set; } /// /// Gets or sets the this month count /// public int CountThisMonthOrders { get; set; } /// /// Gets or sets the sum this year total /// public decimal SumThisYearOrders { get; set; } /// /// Gets or sets the this year count /// public int CountThisYearOrders { get; set; } /// /// Gets or sets the sum all time total /// public decimal SumAllTimeOrders { get; set; } /// /// Gets or sets the all time count /// public int CountAllTimeOrders { get; set; } }