50 lines
1.5 KiB
C#
50 lines
1.5 KiB
C#
using System.ComponentModel.DataAnnotations;
|
|
using Microsoft.AspNetCore.Mvc.Rendering;
|
|
using Nop.Web.Framework.Models;
|
|
using Nop.Web.Framework.Mvc.ModelBinding;
|
|
|
|
namespace Nop.Web.Areas.Admin.Models.Reports;
|
|
|
|
/// <summary>
|
|
/// Represents a country report search model
|
|
/// </summary>
|
|
public partial record CountryReportSearchModel : BaseSearchModel
|
|
{
|
|
#region Ctor
|
|
|
|
public CountryReportSearchModel()
|
|
{
|
|
AvailableOrderStatuses = new List<SelectListItem>();
|
|
AvailablePaymentStatuses = new List<SelectListItem>();
|
|
AvailableStores = new List<SelectListItem>();
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Properties
|
|
|
|
[NopResourceDisplayName("Admin.Reports.Sales.Country.StartDate")]
|
|
[UIHint("DateNullable")]
|
|
public DateTime? StartDate { get; set; }
|
|
|
|
[NopResourceDisplayName("Admin.Reports.Sales.Country.EndDate")]
|
|
[UIHint("DateNullable")]
|
|
public DateTime? EndDate { get; set; }
|
|
|
|
[NopResourceDisplayName("Admin.Reports.Sales.Country.OrderStatus")]
|
|
public int OrderStatusId { get; set; }
|
|
|
|
[NopResourceDisplayName("Admin.Reports.Sales.Country.PaymentStatus")]
|
|
public int PaymentStatusId { get; set; }
|
|
|
|
[NopResourceDisplayName("Admin.Reports.Sales.Country.SearchStore")]
|
|
public int SearchStoreId { get; set; }
|
|
|
|
public IList<SelectListItem> AvailableOrderStatuses { get; set; }
|
|
|
|
public IList<SelectListItem> AvailablePaymentStatuses { get; set; }
|
|
|
|
public IList<SelectListItem> AvailableStores { get; set; }
|
|
|
|
#endregion
|
|
} |