Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

CountryReportSearchModel.cs

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;

/// 
/// Represents a country report search model
/// 
public partial record CountryReportSearchModel : BaseSearchModel
{
    #region Ctor

    public CountryReportSearchModel()
    {
        AvailableOrderStatuses = new List();
        AvailablePaymentStatuses = new List();
        AvailableStores = new List();
    }

    #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 AvailableOrderStatuses { get; set; }

    public IList AvailablePaymentStatuses { get; set; }

    public IList AvailableStores { get; set; }

    #endregion
}