using SteamWare;
using System;
using System.Linq;
using System.Web.UI.WebControls;
namespace MoonPro.WebUserControls
{
public partial class mod_sequencerStatiJS : System.Web.UI.UserControl
{
///
/// caricamento pagina
///
///
///
protected void Page_Load(object sender, EventArgs e)
{
}
///
/// Idx macchina da plottare
///
public string idxMacchina
{
get
{
return hfIdxMacc.Value;
}
set
{
hfIdxMacc.Value = value;
}
}
///
/// Inizio periodo, formato yyyyMMdd
///
public string DataFrom
{
get
{
return hfDataFrom.Value;
}
set
{
hfDataFrom.Value = value;
}
}
///
/// Fine periodo, formato yyyyMMdd
///
public string DataTo
{
get
{
return hfDataTo.Value;
}
set
{
hfDataTo.Value = value;
}
}
}
}