40 lines
873 B
C#
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);
|
|
}
|
|
}
|
|
}
|
|
} |