using System;
namespace NKC_WF.WebUserControls
{
public partial class cmp_MU_singleStat : BaseUserControl
{
///
/// Batch corrente...
///
public int BatchId
{
set
{
hfBatchID.Value = value.ToString();
doUpdate();
}
get
{
int answ = 0;
int.TryParse(hfBatchID.Value, out answ);
return answ;
}
}
///
/// Tipo statistica richiesta
///
public int statLevel
{
set
{
hfStatLevel.Value = value.ToString();
}
get
{
int answ = 0;
int.TryParse(hfStatLevel.Value, out answ);
return answ;
}
}
protected void Page_Load(object sender, EventArgs e)
{
}
///
/// Css titolo
///
public string titleCss { get; set; } = "bg-dark text-light";
///
/// Valirizzazione variabili
///
public void doUpdate()
{
frmView.DataBind();
}
}
}