Try your search with a different keyword or use * as a wildcard.
using System.ComponentModel.DataAnnotations;
using Microsoft.AspNetCore.Mvc.Rendering;
using Nop.Services.Orders;
using Nop.Web.Framework.Models;
using Nop.Web.Framework.Mvc.ModelBinding;
namespace Nop.Web.Areas.Admin.Models.Reports;
///
/// Represents a best customers report search model
///
public partial record BestCustomersReportSearchModel : BaseSearchModel
{
#region Ctor
public BestCustomersReportSearchModel()
{
AvailableOrderStatuses = new List();
AvailablePaymentStatuses = new List();
AvailableShippingStatuses = new List();
}
#endregion
#region Properties
public OrderByEnum OrderBy { get; set; }
[NopResourceDisplayName("Admin.Reports.Customers.BestBy.StartDate")]
[UIHint("DateNullable")]
public DateTime? StartDate { get; set; }
[NopResourceDisplayName("Admin.Reports.Customers.BestBy.EndDate")]
[UIHint("DateNullable")]
public DateTime? EndDate { get; set; }
[NopResourceDisplayName("Admin.Reports.Customers.BestBy.OrderStatus")]
public int OrderStatusId { get; set; }
[NopResourceDisplayName("Admin.Reports.Customers.BestBy.PaymentStatus")]
public int PaymentStatusId { get; set; }
[NopResourceDisplayName("Admin.Reports.Customers.BestBy.ShippingStatus")]
public int ShippingStatusId { get; set; }
public IList AvailableOrderStatuses { get; set; }
public IList AvailablePaymentStatuses { get; set; }
public IList AvailableShippingStatuses { get; set; }
#endregion
}