Files
MoonPro.net/MP-TAB/MpTabPage.cs
T
2020-07-10 08:04:54 +02:00

40 lines
873 B
C#

using SteamWare;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
namespace MoonProTablet
{
public class MpTabPage : System.Web.UI.Page
{
/// <summary>
/// idxMacchina corrente
/// </summary>
public string idxMacchina
{
get
{
return memLayer.ML.StringSessionObj("idxMacchina");
}
set
{
memLayer.ML.setSessionVal("idxMacchina", value);
}
}
/// <summary>
/// idxODL corrente
/// </summary>
public int idxODL
{
get
{
return memLayer.ML.IntSessionObj("idxODL");
}
set
{
memLayer.ML.setSessionVal("idxODL", value);
}
}
}
}