35 lines
786 B
C#
35 lines
786 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace MoonProTablet.WebUserControls
|
|
{
|
|
public partial class cmp_dettODL : BaseUserControl
|
|
{
|
|
#region Protected Methods
|
|
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
}
|
|
|
|
#endregion Protected Methods
|
|
|
|
#region Internal Methods
|
|
|
|
internal void fixODL()
|
|
{
|
|
// userò ODL del turno
|
|
int answ = 0;
|
|
// cerco da redis...
|
|
int.TryParse(DataLayerObj.currODL(idxMacchinaSel, true), out answ);
|
|
// salvo!
|
|
idxOdl = answ;
|
|
frmView.DataBind();
|
|
}
|
|
|
|
#endregion Internal Methods
|
|
}
|
|
} |