Files
NKC/NKC_WF/WebUserControls/cmp_orderExtList.ascx.cs
T
2021-06-10 19:14:24 +02:00

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
}
}