49 lines
987 B
C#
49 lines
987 B
C#
using SteamWare;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web;
|
|
using System.Web.UI;
|
|
using System.Web.UI.WebControls;
|
|
|
|
namespace ScheMe
|
|
{
|
|
public partial class PREN : System.Web.UI.Page
|
|
{
|
|
protected int idxPaziente
|
|
{
|
|
get
|
|
{
|
|
return memLayer.ML.IntSessionObj("IdxPaziente");
|
|
}
|
|
}
|
|
protected DateTime DataVisita
|
|
{
|
|
get
|
|
{
|
|
DateTime answ = DateTime.Now.Date;
|
|
try
|
|
{
|
|
answ = memLayer.ML.QSD("DataVisita");
|
|
}
|
|
catch
|
|
{ }
|
|
return answ;
|
|
}
|
|
}
|
|
protected void Page_Load(object sender, EventArgs e)
|
|
{
|
|
if(!Page.IsPostBack)
|
|
{
|
|
mod_Prenotazioni.idxPaziente = idxPaziente;
|
|
mod_Prenotazioni.DataVisita = DataVisita;
|
|
}
|
|
mod_Prenotazioni.eh_ucev += Mod_Prenotazioni_eh_ucev;
|
|
}
|
|
|
|
private void Mod_Prenotazioni_eh_ucev(object sender, EventArgs e)
|
|
{
|
|
frmView.DataBind();
|
|
}
|
|
}
|
|
} |