51 lines
815 B
C#
51 lines
815 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace MP_ADM.WebUserControls
|
|
{
|
|
|
|
public partial class mod_planCreate : SteamWare.UserControl
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
public string CodGruppo
|
|
{
|
|
get
|
|
{
|
|
return hfCodGruppo.Value;
|
|
}
|
|
set
|
|
{
|
|
hfCodGruppo.Value = value;
|
|
}
|
|
}
|
|
public string CodArticolo
|
|
{
|
|
get
|
|
{
|
|
return hfCodArticolo.Value;
|
|
}
|
|
set
|
|
{
|
|
hfCodArticolo.Value = value;
|
|
}
|
|
}
|
|
public string IdxMacchina
|
|
{
|
|
get
|
|
{
|
|
return hfIdxMacchina.Value;
|
|
}
|
|
set
|
|
{
|
|
hfIdxMacchina.Value = value;
|
|
}
|
|
}
|
|
}
|
|
} |