98 lines
2.0 KiB
C#
98 lines
2.0 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace NKC_WF.WebUserControls
|
|
{
|
|
public partial class cmp_OrderSearch : BaseUserControl
|
|
{
|
|
#region Public Properties
|
|
|
|
/// <summary>
|
|
/// Filtraggio x Modello
|
|
/// </summary>
|
|
public string CodModel
|
|
{
|
|
get
|
|
{
|
|
return hfCodModel.Value;
|
|
}
|
|
set
|
|
{
|
|
if (hfCodModel.Value != value)
|
|
{
|
|
hfCodModel.Value = value;
|
|
grView.DataBind();
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Filtraggio x Ordine
|
|
/// </summary>
|
|
public string CodOrder
|
|
{
|
|
get
|
|
{
|
|
return hfCodOrder.Value;
|
|
}
|
|
set
|
|
{
|
|
if (hfCodOrder.Value != value)
|
|
{
|
|
hfCodOrder.Value = value;
|
|
grView.DataBind();
|
|
}
|
|
}
|
|
}
|
|
|
|
/// <summary>
|
|
/// Filtraggio x Part
|
|
/// </summary>
|
|
public string CodPart
|
|
{
|
|
get
|
|
{
|
|
return hfCodPart.Value;
|
|
}
|
|
set
|
|
{
|
|
if (hfCodPart.Value != value)
|
|
{
|
|
hfCodPart.Value = value;
|
|
grView.DataBind();
|
|
}
|
|
}
|
|
}
|
|
|
|
public int numRow
|
|
{
|
|
get
|
|
{
|
|
return grView.PageSize;
|
|
}
|
|
set
|
|
{
|
|
grView.PageSize = value;
|
|
}
|
|
}
|
|
|
|
protected void grView_PageIndexChanged(object sender, EventArgs e)
|
|
{
|
|
//checkFixOds();
|
|
}
|
|
|
|
#endregion Public Properties
|
|
|
|
#region Protected Methods
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
}
|
|
} |