Files
Samuele E. Locatelli 7fb05a3a0a OK fix ODL x selezione DP
2020-11-18 17:22:18 +01:00

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
}
}