Files
NKC/NKC_WF/WebUserControls/cmp_offOrderDetail.ascx.cs
T
2019-10-15 16:59:22 +02:00

26 lines
433 B
C#

using System;
namespace NKC_WF.WebUserControls
{
public partial class cmp_offOrderDetail : System.Web.UI.UserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
public int OffOrdId
{
get
{
int answ = 0;
int.TryParse(hfOffOrderId.Value, out answ);
return answ;
}
set
{
hfOffOrderId.Value = value.ToString();
}
}
}
}