43 lines
922 B
C#
43 lines
922 B
C#
using AppData;
|
|
using NKC_SDK;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Data;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace NKC_WF.WebUserControls
|
|
{
|
|
public partial class cmp_orderExtList : System.Web.UI.UserControl
|
|
{
|
|
#region Public Properties
|
|
|
|
public List<OrderPrev> _CurrOrders { get; set; } = new List<OrderPrev>();
|
|
|
|
public List<OrderPrev> CurrOrders
|
|
{
|
|
get
|
|
{
|
|
return _CurrOrders;
|
|
}
|
|
set
|
|
{
|
|
_CurrOrders = value;
|
|
grView.DataSource = value;
|
|
grView.DataBind();
|
|
}
|
|
}
|
|
|
|
#endregion Public Properties
|
|
|
|
#region Protected Methods
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |