23 lines
459 B
C#
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);
|
|
}
|
|
}
|
|
} |