26 lines
408 B
C#
26 lines
408 B
C#
using System;
|
|
|
|
namespace C_TRACK.WebUserControls
|
|
{
|
|
public partial class mod_taskRec : System.Web.UI.UserControl
|
|
{
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
|
|
}
|
|
/// <summary>
|
|
/// Filtro task
|
|
/// </summary>
|
|
public string NumTask
|
|
{
|
|
get
|
|
{
|
|
return hfNumTask.Value;
|
|
}
|
|
set
|
|
{
|
|
hfNumTask.Value = value;
|
|
}
|
|
}
|
|
}
|
|
} |