Files
NKC/NKC_WF/WebUserControls/cmp_SheetsStats.ascx.cs
2021-04-09 11:13:53 +02:00

52 lines
1.1 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_SheetsStats : System.Web.UI.UserControl
{
#region Public Properties
public int BatchID
{
get
{
int answ = 0;
int.TryParse(hfBatchId.Value, out answ);
return answ;
}
set
{
hfBatchId.Value = $"{value}";
}
}
public int MaxHour
{
get
{
int answ = 0;
int.TryParse(hfMaxHour.Value, out answ);
return answ;
}
set
{
hfMaxHour.Value = $"{value}";
}
}
#endregion Public Properties
#region Protected Methods
protected void Page_Load(object sender, EventArgs e)
{
}
#endregion Protected Methods
}
}