43 lines
812 B
C#
43 lines
812 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace PUB.WebUserContols
|
|
{
|
|
public partial class mod_graphLine : System.Web.UI.UserControl
|
|
{
|
|
public string DSType
|
|
{
|
|
get
|
|
{
|
|
return "abc";// memLayer.ML.IntSessionObj("IdxPaziente");
|
|
}
|
|
|
|
}
|
|
protected DateTime DataRif
|
|
{
|
|
get
|
|
{
|
|
DateTime answ = DateTime.Now.Date;
|
|
#if false
|
|
try
|
|
{
|
|
answ = memLayer.ML.QSD("DataVisita");
|
|
}
|
|
catch
|
|
{
|
|
}
|
|
#endif
|
|
return answ;
|
|
}
|
|
}
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
hfDSetType.Value = DSType.ToString();
|
|
hfDataRif.Value = DataRif.ToString("yyyy-MM-dd");
|
|
}
|
|
}
|
|
} |