Files
NKC/NKC_WF/WebUserControls/cmp_devUtils.ascx.cs
T
Samuele E. Locatelli a6d9295f67 Reset nesting x debug...
2019-11-29 18:35:02 +01:00

23 lines
459 B
C#

using AppData;
using System;
namespace NKC_WF.WebUserControls
{
public partial class cmp_devUtils : BaseUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
protected void lbtResetStackBuild_Click(object sender, EventArgs e)
{
DataLayer.man.taSHL.resetPrepared(-9999);
}
protected void lbtResetNest_Click(object sender, EventArgs e)
{
DataLayer.man.taBL.resetNesting(-9999);
}
}
}