Files
MoonPro.net/MP-TAB/WebUserControls/cmp_sheetTech.ascx.cs
T
2020-09-14 21:56:39 +02:00

29 lines
583 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_sheetTech : BaseUserControl
{
protected void Page_Load(object sender, EventArgs e)
{
}
public string CodArticolo
{
get
{
return hfCodArticolo.Value.Trim();
}
set
{
hfCodArticolo.Value = value.Trim();
}
}
}
}