diff --git a/ScheMe/WebUserControls/mod_ElencoVisitePaziente.ascx.cs b/ScheMe/WebUserControls/mod_ElencoVisitePaziente.ascx.cs
new file mode 100644
index 0000000..5be56cd
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_ElencoVisitePaziente.ascx.cs
@@ -0,0 +1,108 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+using SteamWare;
+
+namespace MedPred.WebUserControls
+{
+ public partial class mod_ElencoVisitePaziente : System.Web.UI.UserControl
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+
+ }
+ ///
+ /// ultimo comando letto da link button
+ ///
+ public string lastCmd { get; set; }
+
+ protected void grView_RowCommand(object sender, GridViewCommandEventArgs e)
+ {
+ // salvo il command argument...
+ lastCmd = e.CommandArgument.ToString();
+ }
+ protected int IdxPaziente
+ {
+ get
+ {
+ return memLayer.ML.IntSessionObj("IdxPaziente");
+ }
+ }
+ ///
+ /// ricevuto comando di select
+ ///
+ ///
+ ///
+ protected void grView_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ // recupero dati visita...
+ DateTime dataVisita = DateTime.Now;
+ try
+ {
+ dataVisita = Convert.ToDateTime(grView.SelectedDataKey["DataVisita"]);
+ memLayer.ML.setSessionVal("DataVisita", dataVisita);
+ //DS_Applicazione.AnagPazientiRow riga = DtProxy.man.taAP.getByKey(IdxPaziente)[0];
+ //memLayer.ML.setSessionVal("Paziente", string.Format("{0} {1} ({2:yyyy-MM-dd})", riga.Cognome, riga.Nome, riga.DataNasc));
+ }
+ catch
+ { }
+
+ switch (lastCmd)
+ {
+ case "SelVAC":
+ Response.Redirect(String.Format("VAC?cmd=sel&DataVisita={0:yyyy-MM-dd}", dataVisita));
+ break;
+ case "NewVAC":
+ Response.Redirect(String.Format("VAC?cmd=new&DataVisita={0:yyyy-MM-dd}", dataVisita));
+ break;
+ case "SelVBMA":
+ Response.Redirect(String.Format("VBMA?cmd=sel&DataVisita={0:yyyy-MM-dd}", dataVisita));
+ break;
+ case "NewVBMA":
+ Response.Redirect(String.Format("VBMA?cmd=new&DataVisita={0:yyyy-MM-dd}", dataVisita));
+ break;
+ case "SelVCP":
+ Response.Redirect(String.Format("VCP?cmd=sel&DataVisita={0:yyyy-MM-dd}", dataVisita));
+ break;
+ case "NewVCP":
+ Response.Redirect(String.Format("VCP?cmd=new&DataVisita={0:yyyy-MM-dd}", dataVisita));
+ break;
+ case "SelVL":
+ Response.Redirect(String.Format("VL?cmd=sel&DataVisita={0:yyyy-MM-dd}", dataVisita));
+ break;
+ case "NewVL":
+ Response.Redirect(String.Format("VL?cmd=new&DataVisita={0:yyyy-MM-dd}", dataVisita));
+ break;
+ case "SelVP":
+ Response.Redirect(String.Format("VP?cmd=sel&DataVisita={0:yyyy-MM-dd}", dataVisita));
+ break;
+ case "NewVP":
+ Response.Redirect(String.Format("VP?cmd=new&DataVisita={0:yyyy-MM-dd}", dataVisita));
+ break;
+ case "SelVSV":
+ Response.Redirect(String.Format("VSV?cmd=sel&DataVisita={0:yyyy-MM-dd}", dataVisita));
+ break;
+ case "NewVSV":
+ Response.Redirect(String.Format("VSV?cmd=new&DataVisita={0:yyyy-MM-dd}", dataVisita));
+ break;
+ case "SelVRF":
+ Response.Redirect(String.Format("VRF?cmd=sel&DataVisita={0:yyyy-MM-dd}", dataVisita));
+ break;
+ case "NewVRF":
+ Response.Redirect(String.Format("VRF?cmd=new&DataVisita={0:yyyy-MM-dd}", dataVisita));
+ break;
+ default:
+ break;
+ }
+
+ if (lastCmd == "edit")
+ {
+ // richiamo pagina con edit del record richiesto
+ Response.Redirect(string.Format("AccettazioneEdit?IdxPaziente={0}", grView.SelectedDataKey["IdxPaziente"]));
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/ScheMe/WebUserControls/mod_ElencoVisitePaziente.ascx.designer.cs b/ScheMe/WebUserControls/mod_ElencoVisitePaziente.ascx.designer.cs
new file mode 100644
index 0000000..48cad44
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_ElencoVisitePaziente.ascx.designer.cs
@@ -0,0 +1,33 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace MedPred.WebUserControls {
+
+
+ public partial class mod_ElencoVisitePaziente {
+
+ ///
+ /// grView control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.GridView grView;
+
+ ///
+ /// ods control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.ObjectDataSource ods;
+ }
+}
diff --git a/ScheMe/WebUserControls/mod_elencoRichResetUtenti.ascx b/ScheMe/WebUserControls/mod_elencoRichResetUtenti.ascx
new file mode 100644
index 0000000..07b34c0
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_elencoRichResetUtenti.ascx
@@ -0,0 +1,86 @@
+<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_elencoRichResetUtenti.ascx.cs" Inherits="MedPred.WebUserControls.mod_elencoRichResetUtenti" %>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ <%----%>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Spiegazione
+ Ogni riga rappresenta un utente, se questo è indicato con un font barrato significa che l'utente è disattivato e tutti i suoi devices (eventualmente registrati) sono stati disabilitati e rimossi dal DB (e non possono più accedere alla piattaforma).
+
+ Partendo da sinistra verso destra abbiamo:
+
+
+ <%--
seleziona l'utente per visualizzare i devices lui associati
+
seleziona l'utente per modificare i dati quali cognome, nome, email
--%>
+
Attivazione: il pulsante disattiva un utente (ed i relativi devices) mentre il pulsante lo riattiva (generando una NUOVA AuthKey) e permette nuovi enroll dei dispositivi.
+
NumAuth: indica il numero di attivazioni residue per l'utente, si possono incrementare/decrementare con i button e
+
Grp: indica il gruppo di appartenenza dell'utente
+
Reset: permette di gestire le richieste di supporto: col pulsante si possono approvare (generando una nuova auth key), con si possono rifiutare le richieste e con si possono inviare (per gli utenti ATTIVI) le email contenenti i link per autorizzare i dispositivi; nb: numAuth deve essere maggiore di zero altrimenti un link valido non permette comunque l'attivazione di nuovi devices utente.
+
+
+
diff --git a/ScheMe/WebUserControls/mod_elencoRichResetUtenti.ascx.cs b/ScheMe/WebUserControls/mod_elencoRichResetUtenti.ascx.cs
new file mode 100644
index 0000000..8d3c4b8
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_elencoRichResetUtenti.ascx.cs
@@ -0,0 +1,135 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+using SteamWare;
+
+namespace MedPred.WebUserControls
+{
+ public partial class mod_elencoRichResetUtenti : System.Web.UI.UserControl
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+ //if (!Page.IsPostBack)
+ //{
+ //}
+ }
+ ///
+ /// ultimo comando letto da link button
+ ///
+ public string lastCmd { get; set; }
+ ///
+ /// gestione evento novo record
+ ///
+ ///
+ ///
+ protected void btnNew_Click(object sender, EventArgs e)
+ {
+#if false
+ // richiamo pagina di edit senza parametri x metodo NEW
+ Response.Redirect("AccettazioneEdit");
+#endif
+ }
+ public bool toBool(object value)
+ {
+ bool answ = false;
+ try
+ {
+ answ = Convert.ToBoolean(value);
+ }
+ catch
+ { }
+ return answ;
+ }
+ ///
+ /// evento selezione paziente...
+ ///
+ ///
+ ///
+ protected void grView_SelectedIndexChanged(object sender, EventArgs e)
+ {
+ // recupero dati utente...
+ string USER_NAME = "";
+ try
+ {
+ USER_NAME = grView.SelectedDataKey["USER_NAME"].ToString();
+ }
+ catch
+ { }
+ if (USER_NAME != "")
+ {
+ switch (lastCmd)
+ {
+ case "+1":
+ devicesAuthProxy.stObj.taUtenti.UpdateNumAuth(1, USER_NAME);
+ break;
+ case "-1":
+ devicesAuthProxy.stObj.taUtenti.UpdateNumAuth(-1, USER_NAME);
+ break;
+ case "Disattiva":
+ case "Attiva":
+ devicesAuthProxy.stObj.taUtenti.ToggleAttivo(SteamwareStrings.pseudoRandomString(20), USER_NAME);
+ break;
+ case "NoReset":
+ devicesAuthProxy.stObj.taUtenti.rejectResetAK(USER_NAME);
+ break;
+ case "ResetKeyAndDevices":
+ devicesAuthProxy.stObj.taUtenti.ResetKeyAndDevices(SteamwareStrings.pseudoRandomString(20), USER_NAME);
+ break;
+ case "SendMail":
+ // cerco chiave...
+ string AuthKey = "";
+ try
+ {
+ AuthKey = devicesAuthProxy.stObj.taUtenti.getByEmail(USER_NAME)[0].authKey;
+ }
+ catch
+ { }
+ if (USER_NAME != "" && AuthKey != "")
+ {
+ // invio email!
+ devicesAuthProxy.stObj.sendEmailAuthKey(USER_NAME, AuthKey, "MedPred Authorization");
+ }
+ break;
+ default:
+ break;
+ }
+ }
+ grView.DataBind();
+#if false
+ // recupero dati paziente...
+ int IdxPaziente = 0;
+ try
+ {
+ IdxPaziente = Convert.ToInt32(grView.SelectedDataKey["IdxPaziente"]);
+ memLayer.ML.setSessionVal("IdxPaziente", IdxPaziente);
+ DS_Applicazione.AnagPazientiRow riga = DtProxy.man.taAP.getByKey(IdxPaziente)[0];
+ memLayer.ML.setSessionVal("Paziente", string.Format("{0} {1} ({2:dd/MM/yyyy})", riga.Cognome, riga.Nome, riga.DataNasc));
+ }
+ catch
+ { }
+ if (lastCmd == "edit")
+ {
+ // richiamo pagina con edit del record richiesto
+ Response.Redirect(string.Format("AccettazioneEdit?IdxPaziente={0}", grView.SelectedDataKey["IdxPaziente"]));
+ }
+ else if (lastCmd == "select")
+ {
+ // se utente abilitato ad accesso privilegiato
+ if (false) // !!!FARE controllo livello accesso
+ {
+ Response.Redirect("Visite");
+ }
+ }
+#endif
+ }
+
+ protected void grView_RowCommand(object sender, GridViewCommandEventArgs e)
+ {
+ // salvo il command argument...
+ lastCmd = e.CommandArgument.ToString();
+ }
+ }
+}
\ No newline at end of file
diff --git a/ScheMe/WebUserControls/mod_elencoRichResetUtenti.ascx.designer.cs b/ScheMe/WebUserControls/mod_elencoRichResetUtenti.ascx.designer.cs
new file mode 100644
index 0000000..5030a93
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_elencoRichResetUtenti.ascx.designer.cs
@@ -0,0 +1,33 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace MedPred.WebUserControls {
+
+
+ public partial class mod_elencoRichResetUtenti {
+
+ ///
+ /// grView control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.GridView grView;
+
+ ///
+ /// ods control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.ObjectDataSource ods;
+ }
+}
diff --git a/ScheMe/WebUserControls/mod_enrollByAuthKey.ascx b/ScheMe/WebUserControls/mod_enrollByAuthKey.ascx
new file mode 100644
index 0000000..a341ae1
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_enrollByAuthKey.ascx
@@ -0,0 +1,14 @@
+<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_enrollByAuthKey.ascx.cs"
+ Inherits="MedPred.WebUserControls.mod_enrollByAuthKey" %>
+
+
+
Registrazione da Auth Key
+
+
+
+
+
+
Spiegazione
+ Questa funzione permette di inserire un devices tra quelli gestiti tramite digitazione della AuthKey personale (MD5 o meno se abilitato, da richiedere all'admin se non nota).
+
+
diff --git a/ScheMe/WebUserControls/mod_enrollByAuthKey.ascx.cs b/ScheMe/WebUserControls/mod_enrollByAuthKey.ascx.cs
new file mode 100644
index 0000000..f96aceb
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_enrollByAuthKey.ascx.cs
@@ -0,0 +1,59 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+using SteamWare;
+using MedPred_Data;
+
+namespace MedPred.WebUserControls
+{
+ public partial class mod_enrollByAuthKey : System.Web.UI.UserControl
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+
+ }
+
+ ///
+ /// richiesta enroll device da chiave personale + email
+ ///
+ ///
+ ///
+ protected void btnEnrollByAK_Click(object sender, EventArgs e)
+ {
+ // controllo email & co...
+ string email = txtEmailAK.Text.Trim();
+ string authKey = txtAuthKey.Text.Trim();
+ if (email != "" && email.IndexOf("@") > 0)
+ {
+ // ora controllo che l'email SIA nell'elenco delle email degli utenti...
+ if (devicesAuthProxy.stObj.checkUserEmail(email))
+ {
+ // controllo se la authKey è corretta x utente...
+ if (devicesAuthProxy.stObj.checkUserEmailAK(email, authKey))
+ {
+ // rimando al jumper...
+ Response.Redirect(string.Format("jumper?UserAuthkey={0}&USER_NAME={1}", authKey, email));
+ }
+ else
+ {
+ lblOutRegAuthKey.Text = "Attenzione! auth key NON valida, prego contattare amministratore!";
+ lblOutRegAuthKey.Visible = true;
+ }
+ }
+ else
+ {
+ lblOutRegAuthKey.Text = "Attenzione! email non trovata, prego contattare amministratore!";
+ lblOutRegAuthKey.Visible = true;
+ }
+ }
+ else
+ {
+ lblOutRegAuthKey.Text = "Attenzione! preogo inserire email valida!";
+ lblOutRegAuthKey.Visible = true;
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/ScheMe/WebUserControls/mod_enrollByAuthKey.ascx.designer.cs b/ScheMe/WebUserControls/mod_enrollByAuthKey.ascx.designer.cs
new file mode 100644
index 0000000..7750128
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_enrollByAuthKey.ascx.designer.cs
@@ -0,0 +1,51 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace MedPred.WebUserControls {
+
+
+ public partial class mod_enrollByAuthKey {
+
+ ///
+ /// txtEmailAK control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.TextBox txtEmailAK;
+
+ ///
+ /// txtAuthKey control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.TextBox txtAuthKey;
+
+ ///
+ /// btnEnrollByAK control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.Button btnEnrollByAK;
+
+ ///
+ /// lblOutRegAuthKey control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.Label lblOutRegAuthKey;
+ }
+}
diff --git a/ScheMe/WebUserControls/mod_enrollByEmail.ascx b/ScheMe/WebUserControls/mod_enrollByEmail.ascx
new file mode 100644
index 0000000..4f1700b
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_enrollByEmail.ascx
@@ -0,0 +1,13 @@
+<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_enrollByEmail.ascx.cs"
+ Inherits="MedPred.WebUserControls.mod_enrollByEmail" %>
+
+
+
Richiesta Reset Chiave Personale
+
+
+
+
+
Spiegazione
+ Con questa procedura l'utente richiede il reset della propria chiave di autenticazione personale. L'amministratore della piattaforma valuterà e validata la richiesta annullerà le chiavi emesse per i devices eventualmente già autorizzati ed inoltrerà, all'indirizzo email dell'utente, la nuova chiave da utilizzare per abilitare i devices desiderati.
+
+
diff --git a/ScheMe/WebUserControls/mod_enrollByEmail.ascx.cs b/ScheMe/WebUserControls/mod_enrollByEmail.ascx.cs
new file mode 100644
index 0000000..b55a70d
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_enrollByEmail.ascx.cs
@@ -0,0 +1,50 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+using SteamWare;
+using MedPred_Data;
+
+namespace MedPred.WebUserControls
+{
+ public partial class mod_enrollByEmail : System.Web.UI.UserControl
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+
+ }
+ ///
+ /// richiesta reset dispositivi utente
+ ///
+ ///
+ ///
+ protected void btnReqNewKey_Click(object sender, EventArgs e)
+ {
+ // controllo email & co...
+ string email = txtEmailReq.Text.Trim();
+ if (email != "" && email.IndexOf("@") > 0)
+ {
+ // ora controllo che l'email SIA nell'elenco delle email degli utenti...
+ if (devicesAuthProxy.stObj.checkUserEmail(email))
+ {
+ // registro richiesta reset ed invio email ad admin...
+ devicesAuthProxy.stObj.reqResetAuthKey(email, memLayer.ML.confReadString("adminEmail"));
+ lblOutUnauth.Text = "Richiesta inoltrata all'amministratore, attendere sua risposta alla casella email indicata.";
+ lblOutUnauth.Visible = true;
+ }
+ else
+ {
+ lblOutUnauth.Text = "Attenzione! email non trovata, prego contattare amministratore!";
+ lblOutUnauth.Visible = true;
+ }
+ }
+ else
+ {
+ lblOutUnauth.Text = "Attenzione! preogo inserire email valida!";
+ lblOutUnauth.Visible = true;
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/ScheMe/WebUserControls/mod_enrollByEmail.ascx.designer.cs b/ScheMe/WebUserControls/mod_enrollByEmail.ascx.designer.cs
new file mode 100644
index 0000000..bef8d38
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_enrollByEmail.ascx.designer.cs
@@ -0,0 +1,42 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace MedPred.WebUserControls {
+
+
+ public partial class mod_enrollByEmail {
+
+ ///
+ /// txtEmailReq control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.TextBox txtEmailReq;
+
+ ///
+ /// btnReqNewKey control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.Button btnReqNewKey;
+
+ ///
+ /// lblOutUnauth control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.Label lblOutUnauth;
+ }
+}
diff --git a/ScheMe/WebUserControls/mod_enrollByJumperAuthKey.ascx b/ScheMe/WebUserControls/mod_enrollByJumperAuthKey.ascx
new file mode 100644
index 0000000..7348199
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_enrollByJumperAuthKey.ascx
@@ -0,0 +1,2 @@
+<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_enrollByJumperAuthKey.ascx.cs" Inherits="MedPred.WebUserControls.mod_enrollByJumperAuthKey" %>
+<%--è una procedura automatica, niente elementi grafici!--%>
diff --git a/ScheMe/WebUserControls/mod_enrollByJumperAuthKey.ascx.cs b/ScheMe/WebUserControls/mod_enrollByJumperAuthKey.ascx.cs
new file mode 100644
index 0000000..fbd3ad7
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_enrollByJumperAuthKey.ascx.cs
@@ -0,0 +1,68 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+using SteamWare;
+using MedPred_Data;
+
+namespace MedPred.WebUserControls
+{
+ public partial class mod_enrollByJumperAuthKey : System.Web.UI.UserControl
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+ // procedo alla ricerca di dati via sessione x User AuthKey
+ tryAutoEnroll();
+ }
+ ///
+ /// prova a fare auto enroll
+ ///
+ public void tryAutoEnroll()
+ {
+ // recupero dati da session
+ string UserAuthKey = "";
+ string email = "";
+ string userAgent = "";
+ bool fatto = false;
+ string DeviceName = "";
+ string IPv4 = "";
+ try
+ {
+ //UserAuthKey = memLayer.ML.StringSessionObj("UserAuthkey");
+ //email = memLayer.ML.StringSessionObj("email");
+ UserAuthKey = Request["UserAuthkey"];
+ email = Request["USER_NAME"];
+ userAgent = Request.UserAgent;
+ }
+ catch
+ { }
+ // se ci sono i dati effettua tentativo di AutoEnroll del device
+ if (email != "" && UserAuthKey != "")
+ {
+ IPv4 = Request.UserHostAddress;
+ DeviceName = SteamWare.dnsUtils.ReverseLookup(IPv4);
+ //DeviceName = SteamWare.dnsUtils.DetermineCompName(IPv4); // WIN2012R2SAM
+ //DeviceName = Request.UserHostName; // ::1
+
+ // prova ad usare la chiave DECODIFICATA x autorizzare device
+ fatto = devicesAuthProxy.stObj.enrollDevice(devicesAuthProxy.decodeKey(UserAuthKey), IPv4, DeviceName, userAgent, email);
+ // se NON ce l'ha fatta ed è abilitata l'autenticazione "plain" cerca di eseguire anche quella...
+ if (memLayer.ML.confReadBool("enablePlain") && !fatto)
+ {
+ fatto = devicesAuthProxy.stObj.enrollDevice(UserAuthKey, IPv4, DeviceName, userAgent, email);
+ }
+ if (fatto)
+ {
+ Response.Redirect("Default");
+ }
+ else
+ {
+ Response.Redirect("UserAdmin");
+ }
+ }
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/ScheMe/WebUserControls/mod_enrollByJumperAuthKey.ascx.designer.cs b/ScheMe/WebUserControls/mod_enrollByJumperAuthKey.ascx.designer.cs
new file mode 100644
index 0000000..730a432
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_enrollByJumperAuthKey.ascx.designer.cs
@@ -0,0 +1,17 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace MedPred.WebUserControls
+{
+
+
+ public partial class mod_enrollByJumperAuthKey
+ {
+ }
+}
diff --git a/ScheMe/WebUserControls/mod_fileUpload.ascx b/ScheMe/WebUserControls/mod_fileUpload.ascx
new file mode 100644
index 0000000..fa8beac
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_fileUpload.ascx
@@ -0,0 +1,81 @@
+<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_fileUpload.ascx.cs" Inherits="MedPred.WebUserControls.mod_fileUpload" %>
+
+
diff --git a/ScheMe/WebUserControls/mod_header.ascx.cs b/ScheMe/WebUserControls/mod_header.ascx.cs
new file mode 100644
index 0000000..deaf4b0
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_header.ascx.cs
@@ -0,0 +1,192 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+using MedPred_Data;
+using SteamWare;
+
+namespace MedPred.WebUserControls
+{
+ public partial class mod_header : SteamWare.UserControl
+ {
+ ///
+ /// stringa del paziente selezionato
+ ///
+ public string pazienteSel
+ {
+ get
+ {
+ string answ = "-";
+ if (memLayer.ML.isInSessionObject("Paziente"))
+ {
+ answ = memLayer.ML.StringSessionObj("Paziente");
+ }
+ return answ;
+ }
+ }
+ ///
+ /// caricamento pagina
+ ///
+ ///
+ ///
+ protected void Page_Load(object sender, EventArgs e)
+ {
+ // altri controlli
+ if (!Page.IsPostBack)
+ {
+ Timer1.Interval = memLayer.ML.confReadInt("intUpdatePagina_ms");
+ Page.Title = Request.Url.ToString();
+ // se ho cambiato pagina registro...)
+ if (devicesAuthProxy.pagPrecedente != titolo)
+ {
+ devicesAuthProxy.pagPrecedente = devicesAuthProxy.pagCorrente;
+ }
+ // salvo apgina corrente
+ devicesAuthProxy.pagCorrente = titolo; // devicesAuthProxy.getCurrPage(Request.Url);
+ // update valori
+ lblVers.Text = string.Format("v.{0}.{1}", System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.Major, System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.Minor);
+ lblVers.ToolTip = System.Reflection.Assembly.GetExecutingAssembly().GetName().Version.MinorRevision.ToString();
+ }
+ // SOLO se la pagina NON E' "safe"...
+ if (memLayer.ML.confReadString("PageNoIndex").IndexOf(titolo) < 0)
+ {
+ bool userOk = checkUser();
+ bool pageOk = checkPageIsAuth();
+ // controllo se c'è utente in sessione..
+ if ((userOk))
+ {
+ // ora controllo pagina...
+ if (!pageOk)
+ {
+ if (devicesAuthProxy.stObj.isPageEnabled(devicesAuthProxy.pagPrecedente))
+ {
+ Response.Redirect(devicesAuthProxy.pagPrecedente);
+ }
+ else
+ {
+ Response.Redirect("Accettazione");
+ }
+ }
+ }
+ else
+ {
+ // rimando pagina x registrazione devices
+ Response.Redirect("UserAdmin");
+ }
+ }
+ }
+ ///
+ /// verifica che la pagina sia tra quelle autorizzate x l'utente
+ ///
+ ///
+ private bool checkPageIsAuth()
+ {
+ bool allOk = false;
+ bool pageSafe = (memLayer.ML.confReadString("PageNoIndex").IndexOf(titolo)>=0);
+ bool pageAuth=devicesAuthProxy.stObj.isPageEnabled(titolo);
+ allOk = (pageSafe || pageAuth);
+ return allOk;
+ }
+ ///
+ /// verifica presenza utente autorizzato in sessione
+ ///
+ private bool checkUser()
+ {
+ bool allOk = devicesAuthProxy.stObj.isAuth;
+ if (!devicesAuthProxy.stObj.isAuth)
+ {
+ // controllo cookie device...
+ allOk = checkAuthCookieMedPred();
+ if (!allOk)
+ {
+ ResetUser();
+ }
+ }
+ return allOk;
+ }
+ ///
+ /// Restituisce cognome/nome da sessione...
+ ///
+ public string CognomeNome
+ {
+ get
+ {
+ string answ = "-";
+ try
+ {
+ answ = SteamWare.devicesAuthProxy.stObj.CognomeNome;
+ }
+ catch
+ { }
+ return answ;
+ }
+ }
+ ///
+ /// verifica la presenza di un cookie VALIDO per autorizzare il device ed avvia utente...
+ ///
+ private bool checkAuthCookieMedPred()
+ {
+ bool answ = false;
+ try
+ {
+ HttpCookie cookie = Request.Cookies["AuthDevice"];
+ if (!(cookie == null || cookie.Value == ""))
+ {
+ // ricavo utente da cookie...
+ string userAgent = "";
+ string postazione_IP = "";
+ string devSecret = cookie.Value;
+ DS_Auth.AnagDevicesRow device = null;
+ // cerco il device...ogni dipendente può averne + di 1 registrato a suo nome...
+ string email = "";
+ try
+ {
+ device = devicesAuthProxy.stObj.taAnagDev.getByDeviceSecret(devSecret)[0];
+ email = device.USER_NAME;
+ }
+ catch
+ { }
+ if (email != "")
+ {
+ // aggiorno descrizione (user agent) ed IP...
+ userAgent = Request.UserAgent;
+ postazione_IP = Request.UserHostAddress;
+ // controllo IP e DeviceDescription x eventuale update
+ if ((device.lastIPv4 != postazione_IP) || (device.Description != userAgent))
+ {
+ // salvo ultimo "contatto" del device aggiornando descrizione ed IP
+ devicesAuthProxy.stObj.taAnagDev.updateIP(device.IdxDevice, DateTime.Now, postazione_IP, userAgent);
+ }
+ // salvo in sessione utente
+ memLayer.ML.setSessionVal("email", email);
+ // avvio utente...
+ devicesAuthProxy.stObj.startUpUtente(email);
+ // salvo gruppo...
+ if (devicesAuthProxy.stObj.isAuth)
+ {
+ // se tutto ok
+ memLayer.ML.setSessionVal("Gruppo", devicesAuthProxy.stObj.rigaUtente.CodGruppo);
+ answ = true;
+ }
+
+ }
+ }
+ }
+ catch (Exception exc)
+ {
+ logger.lg.scriviLog(string.Format("Errore in checkAuthCookie:{0}{1}", Environment.NewLine, exc), tipoLog.EXCEPTION);
+ }
+ return answ;
+ }
+
+ private void ResetUser()
+ {
+ devicesAuthProxy.stObj.clearAllUserData();
+ // svuoto cookie...
+ memLayer.ML.setCookieVal("AuthDevice", "");
+ memLayer.ML.emptyCookieVal("AuthDevice");
+ }
+ }
+}
\ No newline at end of file
diff --git a/ScheMe/WebUserControls/mod_header.ascx.designer.cs b/ScheMe/WebUserControls/mod_header.ascx.designer.cs
new file mode 100644
index 0000000..4eedf54
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_header.ascx.designer.cs
@@ -0,0 +1,33 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace MedPred.WebUserControls {
+
+
+ public partial class mod_header {
+
+ ///
+ /// Timer1 control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.Timer Timer1;
+
+ ///
+ /// lblVers control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.WebControls.Label lblVers;
+ }
+}
diff --git a/ScheMe/WebUserControls/mod_reportVisita.ascx b/ScheMe/WebUserControls/mod_reportVisita.ascx
new file mode 100644
index 0000000..52ef9c6
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_reportVisita.ascx
@@ -0,0 +1,4 @@
+<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_reportVisita.ascx.cs" Inherits="MedPred.WebUserControls.mod_reportVisita" %>
+<%@ Register Assembly="Microsoft.ReportViewer.WebForms, Version=11.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" Namespace="Microsoft.Reporting.WebForms" TagPrefix="rsweb" %>
+
+
diff --git a/ScheMe/WebUserControls/mod_reportVisita.ascx.cs b/ScheMe/WebUserControls/mod_reportVisita.ascx.cs
new file mode 100644
index 0000000..05f057e
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_reportVisita.ascx.cs
@@ -0,0 +1,83 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+using Microsoft.Reporting.WebForms;
+using System.Data;
+using SteamWare;
+using MedPred_Data;
+
+namespace MedPred.WebUserControls
+{
+ public partial class mod_reportVisita : System.Web.UI.UserControl
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+ if (!Page.IsPostBack)
+ {
+ // collego il report...
+ fixReport();
+ }
+ }
+ ///
+ /// sistema dati x report
+ ///
+ public void fixReport()
+ {
+ RepVisita.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Local;
+ LocalReport localReport = RepVisita.LocalReport;
+ localReport.EnableExternalImages = true;
+
+ // 0) recupero la richiesta di data...
+ DateTime DataVisita = DateTime.Now;
+ try
+ {
+ DataVisita = Convert.ToDateTime(Request.QueryString["DataVisita"]);
+ }
+ catch
+ { }
+
+ // 1) impostazione file report
+ localReport.ReportPath = @".\Reports\ReportVisita.rdlc";
+
+ // 2) caricamento tab dati
+ DataTable tabRepVis = new DataTable();
+ tabRepVis = (DataTable)DtProxy.man.taRepVis.GetData(memLayer.ML.IntSessionObj("IdxPaziente"), DataVisita);
+
+ // 3) inserimento dataset nel report
+ localReport.DataSources.Clear();
+ localReport.DataSources.Add(new ReportDataSource("dsValue", tabRepVis));
+
+ // 4) aggiungo parametro
+ ReportParameter filtroPag;
+ if (userIsMedicoRef)
+ {
+ filtroPag = new ReportParameter("PrintPage", "0");
+ }
+ else
+ {
+ filtroPag = new ReportParameter("PrintPage", "1");
+ }
+ localReport.SetParameters(filtroPag);
+ }
+ ///
+ /// determina se utente sia MEDICO REFERTANTE o meno da diritti user
+ ///
+ public bool userIsMedicoRef
+ {
+ get
+ {
+ bool answ = false;
+ try
+ {
+ answ = devicesAuthProxy.stObj.userHasRight("MedicoRef");
+ }
+ catch
+ { }
+ return answ;
+ }
+ }
+ }
+}
\ No newline at end of file
diff --git a/ScheMe/WebUserControls/mod_reportVisita.ascx.designer.cs b/ScheMe/WebUserControls/mod_reportVisita.ascx.designer.cs
new file mode 100644
index 0000000..9cf9ba3
--- /dev/null
+++ b/ScheMe/WebUserControls/mod_reportVisita.ascx.designer.cs
@@ -0,0 +1,24 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace MedPred.WebUserControls {
+
+
+ public partial class mod_reportVisita {
+
+ ///
+ /// RepVisita control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::Microsoft.Reporting.WebForms.ReportViewer RepVisita;
+ }
+}
diff --git a/ScheMe/bin/ADODB.dll b/ScheMe/bin/ADODB.dll
new file mode 100644
index 0000000..b8896ba
Binary files /dev/null and b/ScheMe/bin/ADODB.dll differ
diff --git a/ScheMe/bin/Antlr3.Runtime.dll b/ScheMe/bin/Antlr3.Runtime.dll
new file mode 100644
index 0000000..34bd478
Binary files /dev/null and b/ScheMe/bin/Antlr3.Runtime.dll differ
diff --git a/ScheMe/bin/Elmah.dll b/ScheMe/bin/Elmah.dll
new file mode 100644
index 0000000..1851d9a
Binary files /dev/null and b/ScheMe/bin/Elmah.dll differ
diff --git a/ScheMe/bin/Flesk.ViewState.dll b/ScheMe/bin/Flesk.ViewState.dll
new file mode 100644
index 0000000..862a6ac
Binary files /dev/null and b/ScheMe/bin/Flesk.ViewState.dll differ
diff --git a/ScheMe/bin/ICSharpCode.SharpZipLib.dll b/ScheMe/bin/ICSharpCode.SharpZipLib.dll
new file mode 100644
index 0000000..a2a6f25
Binary files /dev/null and b/ScheMe/bin/ICSharpCode.SharpZipLib.dll differ
diff --git a/ScheMe/bin/MedPred.dll b/ScheMe/bin/MedPred.dll
new file mode 100644
index 0000000..04d70a1
Binary files /dev/null and b/ScheMe/bin/MedPred.dll differ
diff --git a/ScheMe/bin/MedPred.dll.config b/ScheMe/bin/MedPred.dll.config
new file mode 100644
index 0000000..7172a6a
--- /dev/null
+++ b/ScheMe/bin/MedPred.dll.config
@@ -0,0 +1,149 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ScheMe/bin/MedPred_Data.dll b/ScheMe/bin/MedPred_Data.dll
new file mode 100644
index 0000000..4fe9ebf
Binary files /dev/null and b/ScheMe/bin/MedPred_Data.dll differ
diff --git a/ScheMe/bin/Microsoft.AspNet.FriendlyUrls.dll b/ScheMe/bin/Microsoft.AspNet.FriendlyUrls.dll
new file mode 100644
index 0000000..deaf9fc
Binary files /dev/null and b/ScheMe/bin/Microsoft.AspNet.FriendlyUrls.dll differ
diff --git a/ScheMe/bin/Microsoft.AspNet.FriendlyUrls.xml b/ScheMe/bin/Microsoft.AspNet.FriendlyUrls.xml
new file mode 100644
index 0000000..19863a3
--- /dev/null
+++ b/ScheMe/bin/Microsoft.AspNet.FriendlyUrls.xml
@@ -0,0 +1,206 @@
+
+
+
+ Microsoft.AspNet.FriendlyUrls
+
+
+
+
+
+ Resolves a file handler virtual path to a friendly URL using the registered resolvers.
+ The friendly URL.
+ The handler virtual path.
+
+
+ The URL segments left over after Friendly URLs mapped this request to a file.
+
+
+ Represents the settings used when enabling Friendly URLs.
+
+
+ Creates a new instance of the FriendlyUrlSettings class with the default values.
+
+
+ The type of redirect to perform on non-friendly URLs to friendly URLs. Defaults to Off.
+ Returns .
+
+
+ The mode of caching to use when resolving friendly URLs. Defaults to ResolverCachingMode.Static.
+ Returns .
+
+
+ The name of the route that handles user requests to switch views. Defaults to "AspNet.FriendlyUrls.SwitchView".
+ Returns .
+
+
+ The URL that view switching request are sent to. Defaults to "__FriendlyUrls_SwitchView/{view}".
+ Returns .
+
+
+
+ Returns the extension of the file Friendly URLs mapped this request to.
+ The file extension, e.g. .aspx.
+ The HttpRequest object.
+
+
+ Returns the extension of the file Friendly URLs mapped this request to.
+ The file extension, e.g. .aspx.
+ The HttpRequestBase object.
+
+
+ Returns the virtual path of the file Friendly URLs mapped this request to.
+ The file virtual path
+ The HttpRequest object.
+
+
+ Returns the virtual path of the file Friendly URLs mapped this request to.
+ The file virtual path.
+ The HttpRequestBase object.
+
+
+ Returns the URL segments left over after Friendly URLs mapped this request to a file.
+ The URL segments.
+ The HttpRequest object.
+
+
+ Returns the URL segments left over after the current request has been mapped to a file.
+ The URL segments.
+ The HttpRequestBase object.
+
+
+
+
+ Represents the mode of redirect to use when auto-redirecting to friendly URLs.
+
+
+ Performs a permanent redirect (301 response code).
+
+
+ Performs a temporary redirect (302 response code).
+
+
+ Performs no auto-redirect (disabled).
+
+
+ Represents the mode of caching to use when resolving URLs. This setting affects how quickly extension-less URLs can be mapped back to their corresponding full URLs.
+
+
+ Build a list of files at application startup. This mode of operation is appropriate for sites where files are not added or removed at runtime.
+
+
+ Builds a list of files as requests arrive, and updates the file list as files in the site change. This mode of operation uses more memory than a static cache, but is useful for updating the file list for sites where files or directories are added or removed at runtime.
+
+
+ Don't perform any caching. Always query the file system directly every time a request to a friendly URL comes in.
+
+
+
+ Enables friendly URLs for Web Forms pages.
+ The routes collection.
+
+
+ Enables friendly URLs for Web Forms pages.
+ The routes collection.
+ The settings to use when enabling Friendly Urls.
+
+
+ Enables friendly URLs using the passed resolvers.
+ The routes collection.
+ The settings to use when enabling Friendly Urls.
+ The friendly URL resolvers to use.
+
+
+ Enables friendly URLs using the specified resolvers.
+ The routes collection.
+ The friendly URL resolvers to use.
+
+
+ Represents an attribute that specifies that model binding values are provided by a friendly URL segment.
+
+
+ Creates an instance of the FriendlyUrlSegmentsAttribute class.
+ The index of the URL segment to return.
+
+
+ Returns .
+
+
+ A value provider that retrieves values from the segments of a Friendly URL.
+
+
+
+ Returns .
+
+
+ Resolves a friendly URL to an HTTP handler.
+
+
+ Creates a FriendlyUrlResolver for the provided extension.
+ The physical file extension understood by this resolver. Must include the leading period, e.g. ".aspx".
+
+
+ Converts a typical URL with a file extension into a friendly extension-less URL.
+ The friendly URL (extension stripped) if this resolver can automatically map extensionless URLs to physical files with the provided extension. Otherwise, null.
+ The original path, including the file extension.
+
+
+ Gets the extensions to use (such as .aspx, .ashx, or .mobile.aspx) while attempting to resolve an HTTP handler from the friendly URL.
+ The list of extensions.
+ The current HttpContext.
+
+
+ Called after a friendly URL is resolved to an HTTP handler but before the handler is executed.
+ The current HttpContext.
+ The HTTP handler.
+
+
+ Resolves friendly URLs to generic handlers such as *.ashx.
+
+
+
+
+ Converts a typical URL with a file extension into a friendly extension-less URL.
+ The friendly extension-less URL if this resolver can automaticallymap extensionless URLs to physical files with the provided extension. Otherwise, null.
+ The original path, including the file extension.
+
+
+ Returns a list of file extensions that the Friendly URLs system will try to resolve for the current request. For example, if the current request is for "~/example" and the GetExtensions method returns [ ".mobile.aspx", ".aspx", ".en-us.aspx" ], then the Friendly URLs system will attempt to match the current request to thefiles "~/example.mobile.aspx", "~/example.aspx", and "~/example.en-us.aspx", returning the first match.
+ A list of extensions that the system should try to resolve.
+ The current request.
+
+
+ Provides the ability to inspect or modify the IHttpHandler that was resolved for the current request before the handler's ProcessRequest method is called.
+ Information about the current request.
+ The handler that will be invoked.
+
+
+ Resolves friendly URLs to Web Forms pages.
+
+
+
+ Returns .
+
+
+ Returns .
+
+
+ Determines if the current friendly URL was resolved to a mobile view based on the client browser and/or overrides.
+ Whether the current view is a mobile view.
+ The page.
+
+
+
+ Attempts to set the MasterPageFile property for the given page based on whether the master page exists.
+ A boolean value indicating whether the master page was set.
+ The page.
+ The master page file virtual path.
+
+
+ Attempts to set the MasterPageFile property for the given page to a mobile specific master page.
+ A boolean value indicating whether the master page was set.
+ The HTTP context.
+ The page.
+
+
+
+
\ No newline at end of file
diff --git a/ScheMe/bin/Microsoft.AspNet.Web.Optimization.WebForms.dll b/ScheMe/bin/Microsoft.AspNet.Web.Optimization.WebForms.dll
new file mode 100644
index 0000000..bc3c130
Binary files /dev/null and b/ScheMe/bin/Microsoft.AspNet.Web.Optimization.WebForms.dll differ
diff --git a/ScheMe/bin/Microsoft.Build.Utilities.v3.5.dll b/ScheMe/bin/Microsoft.Build.Utilities.v3.5.dll
new file mode 100644
index 0000000..dcc5f0b
Binary files /dev/null and b/ScheMe/bin/Microsoft.Build.Utilities.v3.5.dll differ
diff --git a/ScheMe/bin/Microsoft.Build.Utilities.v3.5.xml b/ScheMe/bin/Microsoft.Build.Utilities.v3.5.xml
new file mode 100644
index 0000000..a7f2a73
--- /dev/null
+++ b/ScheMe/bin/Microsoft.Build.Utilities.v3.5.xml
@@ -0,0 +1,69 @@
+
+
+
+ Microsoft.Build.Utilities.v3.5
+
+
+
+
+
+
+ Determines the correct tool in the Toolset that MSBuild should use, based on the current system's processor architecture.
+
+
+
+
+ Represents the AMD64 processor.
+
+
+
+
+ Gets the current processor architecture of the system.
+
+
+ A string containing the processor architecture value.
+
+
+
+
+ Represents the IA64 processor.
+
+
+
+
+ Represents MSIL.
+
+
+
+
+ Represents an x86 processor.
+
+
+
+
+
+ Logs an error using the message, and optionally the stack-trace from the given exception and any inner exceptions.
+
+
+ The exception to log.
+
+ true to include the stack trace in the log; otherwise, false.
+
+ true to log exception types and any inner exceptions; otherwise, false.
+
+
+ The name of the file related to the exception, or null if the project file should be logged.
+
+
+ is null.
+
+ 2
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ScheMe/bin/Microsoft.ReportViewer.Common.dll b/ScheMe/bin/Microsoft.ReportViewer.Common.dll
new file mode 100644
index 0000000..fe74ce4
Binary files /dev/null and b/ScheMe/bin/Microsoft.ReportViewer.Common.dll differ
diff --git a/ScheMe/bin/Microsoft.ReportViewer.WebForms.dll b/ScheMe/bin/Microsoft.ReportViewer.WebForms.dll
new file mode 100644
index 0000000..08d1a99
Binary files /dev/null and b/ScheMe/bin/Microsoft.ReportViewer.WebForms.dll differ
diff --git a/ScheMe/bin/Microsoft.ReportViewer.WinForms.dll b/ScheMe/bin/Microsoft.ReportViewer.WinForms.dll
new file mode 100644
index 0000000..684d8d2
Binary files /dev/null and b/ScheMe/bin/Microsoft.ReportViewer.WinForms.dll differ
diff --git a/ScheMe/bin/Microsoft.SqlServer.Types.dll b/ScheMe/bin/Microsoft.SqlServer.Types.dll
new file mode 100644
index 0000000..761fa2f
Binary files /dev/null and b/ScheMe/bin/Microsoft.SqlServer.Types.dll differ
diff --git a/ScheMe/bin/Microsoft.Web.Infrastructure.dll b/ScheMe/bin/Microsoft.Web.Infrastructure.dll
new file mode 100644
index 0000000..85f1138
Binary files /dev/null and b/ScheMe/bin/Microsoft.Web.Infrastructure.dll differ
diff --git a/ScheMe/bin/NLog.config b/ScheMe/bin/NLog.config
new file mode 100644
index 0000000..d2e19fd
--- /dev/null
+++ b/ScheMe/bin/NLog.config
@@ -0,0 +1,25 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ScheMe/bin/NLog.dll b/ScheMe/bin/NLog.dll
new file mode 100644
index 0000000..5a2f145
Binary files /dev/null and b/ScheMe/bin/NLog.dll differ
diff --git a/ScheMe/bin/NLog.xml b/ScheMe/bin/NLog.xml
new file mode 100644
index 0000000..e639307
--- /dev/null
+++ b/ScheMe/bin/NLog.xml
@@ -0,0 +1,14705 @@
+
+
+
+ NLog
+
+
+
+
+ NLog COM Interop logger implementation.
+
+
+
+
+ NLog COM Interop logger interface.
+
+
+
+
+ Writes the diagnostic message at the specified level.
+
+ The log level.
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Trace level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Debug level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Info level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Warn level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Error level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Fatal level.
+
+ A to be written.
+
+
+
+ Checks if the specified log level is enabled.
+
+ The log level.
+ A value indicating whether the specified log level is enabled.
+
+
+
+ Gets a value indicating whether the Trace level is enabled.
+
+
+
+
+ Gets a value indicating whether the Debug level is enabled.
+
+
+
+
+ Gets a value indicating whether the Info level is enabled.
+
+
+
+
+ Gets a value indicating whether the Warn level is enabled.
+
+
+
+
+ Gets a value indicating whether the Error level is enabled.
+
+
+
+
+ Gets a value indicating whether the Fatal level is enabled.
+
+
+
+
+ Gets or sets the logger name.
+
+
+
+
+ Writes the diagnostic message at the specified level.
+
+ The log level.
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Trace level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Debug level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Info level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Warn level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Error level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Fatal level.
+
+ A to be written.
+
+
+
+ Checks if the specified log level is enabled.
+
+ The log level.
+
+ A value indicating whether the specified log level is enabled.
+
+
+
+
+ Gets a value indicating whether the Trace level is enabled.
+
+
+
+
+
+ Gets a value indicating whether the Debug level is enabled.
+
+
+
+
+
+ Gets a value indicating whether the Info level is enabled.
+
+
+
+
+
+ Gets a value indicating whether the Warn level is enabled.
+
+
+
+
+
+ Gets a value indicating whether the Error level is enabled.
+
+
+
+
+
+ Gets a value indicating whether the Fatal level is enabled.
+
+
+
+
+
+ Gets or sets the logger name.
+
+
+
+
+
+ NLog COM Interop LogManager implementation.
+
+
+
+
+ NLog COM Interop LogManager interface.
+
+
+
+
+ Loads NLog configuration from the specified file.
+
+ The name of the file to load NLog configuration from.
+
+
+
+ Creates the specified logger object and assigns a LoggerName to it.
+
+ Logger name.
+ The new logger instance.
+
+
+
+ Gets or sets a value indicating whether internal messages should be written to the console.
+
+
+
+
+ Gets or sets the name of the internal log file.
+
+
+
+
+ Gets or sets the name of the internal log level.
+
+
+
+
+ Creates the specified logger object and assigns a LoggerName to it.
+
+ The name of the logger.
+ The new logger instance.
+
+
+
+ Loads NLog configuration from the specified file.
+
+ The name of the file to load NLog configuration from.
+
+
+
+ Gets or sets a value indicating whether to log internal messages to the console.
+
+
+ A value of true if internal messages should be logged to the console; otherwise, false.
+
+
+
+
+ Gets or sets the name of the internal log level.
+
+
+
+
+
+ Gets or sets the name of the internal log file.
+
+
+
+
+
+ Asynchronous continuation delegate - function invoked at the end of asynchronous
+ processing.
+
+ Exception during asynchronous processing or null if no exception
+ was thrown.
+
+
+
+ Helpers for asynchronous operations.
+
+
+
+
+ Iterates over all items in the given collection and runs the specified action
+ in sequence (each action executes only after the preceding one has completed without an error).
+
+ Type of each item.
+ The items to iterate.
+ The asynchronous continuation to invoke once all items
+ have been iterated.
+ The action to invoke for each item.
+
+
+
+ Repeats the specified asynchronous action multiple times and invokes asynchronous continuation at the end.
+
+ The repeat count.
+ The asynchronous continuation to invoke at the end.
+ The action to invoke.
+
+
+
+ Modifies the continuation by pre-pending given action to execute just before it.
+
+ The async continuation.
+ The action to pre-pend.
+ Continuation which will execute the given action before forwarding to the actual continuation.
+
+
+
+ Attaches a timeout to a continuation which will invoke the continuation when the specified
+ timeout has elapsed.
+
+ The asynchronous continuation.
+ The timeout.
+ Wrapped continuation.
+
+
+
+ Iterates over all items in the given collection and runs the specified action
+ in parallel (each action executes on a thread from thread pool).
+
+ Type of each item.
+ The items to iterate.
+ The asynchronous continuation to invoke once all items
+ have been iterated.
+ The action to invoke for each item.
+
+
+
+ Runs the specified asynchronous action synchronously (blocks until the continuation has
+ been invoked).
+
+ The action.
+
+ Using this method is not recommended because it will block the calling thread.
+
+
+
+
+ Wraps the continuation with a guard which will only make sure that the continuation function
+ is invoked only once.
+
+ The asynchronous continuation.
+ Wrapped asynchronous continuation.
+
+
+
+ Gets the combined exception from all exceptions in the list.
+
+ The exceptions.
+ Combined exception or null if no exception was thrown.
+
+
+
+ Asynchronous action.
+
+ Continuation to be invoked at the end of action.
+
+
+
+ Asynchronous action with one argument.
+
+ Type of the argument.
+ Argument to the action.
+ Continuation to be invoked at the end of action.
+
+
+
+ Represents the logging event with asynchronous continuation.
+
+
+
+
+ Initializes a new instance of the struct.
+
+ The log event.
+ The continuation.
+
+
+
+ Implements the operator ==.
+
+ The event info1.
+ The event info2.
+ The result of the operator.
+
+
+
+ Implements the operator ==.
+
+ The event info1.
+ The event info2.
+ The result of the operator.
+
+
+
+ Determines whether the specified is equal to this instance.
+
+ The to compare with this instance.
+
+ A value of true if the specified is equal to this instance; otherwise, false.
+
+
+
+
+ Returns a hash code for this instance.
+
+
+ A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+
+
+
+
+ Gets the log event.
+
+
+
+
+ Gets the continuation.
+
+
+
+
+ NLog internal logger.
+
+
+
+
+ Initializes static members of the InternalLogger class.
+
+
+
+
+ Logs the specified message at the specified level.
+
+ Log level.
+ Message which may include positional parameters.
+ Arguments to the message.
+
+
+
+ Logs the specified message at the specified level.
+
+ Log level.
+ Log message.
+
+
+
+ Logs the specified message at the Trace level.
+
+ Message which may include positional parameters.
+ Arguments to the message.
+
+
+
+ Logs the specified message at the Trace level.
+
+ Log message.
+
+
+
+ Logs the specified message at the Debug level.
+
+ Message which may include positional parameters.
+ Arguments to the message.
+
+
+
+ Logs the specified message at the Debug level.
+
+ Log message.
+
+
+
+ Logs the specified message at the Info level.
+
+ Message which may include positional parameters.
+ Arguments to the message.
+
+
+
+ Logs the specified message at the Info level.
+
+ Log message.
+
+
+
+ Logs the specified message at the Warn level.
+
+ Message which may include positional parameters.
+ Arguments to the message.
+
+
+
+ Logs the specified message at the Warn level.
+
+ Log message.
+
+
+
+ Logs the specified message at the Error level.
+
+ Message which may include positional parameters.
+ Arguments to the message.
+
+
+
+ Logs the specified message at the Error level.
+
+ Log message.
+
+
+
+ Logs the specified message at the Fatal level.
+
+ Message which may include positional parameters.
+ Arguments to the message.
+
+
+
+ Logs the specified message at the Fatal level.
+
+ Log message.
+
+
+
+ Gets or sets the internal log level.
+
+
+
+
+ Gets or sets a value indicating whether internal messages should be written to the console output stream.
+
+
+
+
+ Gets or sets a value indicating whether internal messages should be written to the console error stream.
+
+
+
+
+ Gets or sets the name of the internal log file.
+
+ A value of value disables internal logging to a file.
+
+
+
+ Gets or sets the text writer that will receive internal logs.
+
+
+
+
+ Gets or sets a value indicating whether timestamp should be included in internal log output.
+
+
+
+
+ Gets a value indicating whether internal log includes Trace messages.
+
+
+
+
+ Gets a value indicating whether internal log includes Debug messages.
+
+
+
+
+ Gets a value indicating whether internal log includes Info messages.
+
+
+
+
+ Gets a value indicating whether internal log includes Warn messages.
+
+
+
+
+ Gets a value indicating whether internal log includes Error messages.
+
+
+
+
+ Gets a value indicating whether internal log includes Fatal messages.
+
+
+
+
+ A cyclic buffer of object.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Buffer size.
+ Whether buffer should grow as it becomes full.
+ The maximum number of items that the buffer can grow to.
+
+
+
+ Adds the specified log event to the buffer.
+
+ Log event.
+ The number of items in the buffer.
+
+
+
+ Gets the array of events accumulated in the buffer and clears the buffer as one atomic operation.
+
+ Events in the buffer.
+
+
+
+ Gets the number of items in the array.
+
+
+
+
+ Condition and expression.
+
+
+
+
+ Base class for representing nodes in condition expression trees.
+
+
+
+
+ Converts condition text to a condition expression tree.
+
+ Condition text to be converted.
+ Condition expression tree.
+
+
+
+ Evaluates the expression.
+
+ Evaluation context.
+ Expression result.
+
+
+
+ Returns a string representation of the expression.
+
+
+ A that represents the condition expression.
+
+
+
+
+ Evaluates the expression.
+
+ Evaluation context.
+ Expression result.
+
+
+
+ Initializes a new instance of the class.
+
+ Left hand side of the AND expression.
+ Right hand side of the AND expression.
+
+
+
+ Returns a string representation of this expression.
+
+ A concatenated '(Left) and (Right)' string.
+
+
+
+ Evaluates the expression by evaluating and recursively.
+
+ Evaluation context.
+ The value of the conjunction operator.
+
+
+
+ Gets the left hand side of the AND expression.
+
+
+
+
+ Gets the right hand side of the AND expression.
+
+
+
+
+ Exception during evaluation of condition expression.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The inner exception.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+
+ The parameter is null.
+
+
+ The class name is null or is zero (0).
+
+
+
+
+ Condition layout expression (represented by a string literal
+ with embedded ${}).
+
+
+
+
+ Initializes a new instance of the class.
+
+ The layout.
+
+
+
+ Returns a string representation of this expression.
+
+ String literal in single quotes.
+
+
+
+ Evaluates the expression by calculating the value
+ of the layout in the specified evaluation context.
+
+ Evaluation context.
+ The value of the layout.
+
+
+
+ Gets the layout.
+
+ The layout.
+
+
+
+ Condition level expression (represented by the level keyword).
+
+
+
+
+ Returns a string representation of the expression.
+
+ The 'level' string.
+
+
+
+ Evaluates to the current log level.
+
+ Evaluation context. Ignored.
+ The object representing current log level.
+
+
+
+ Condition literal expression (numeric, LogLevel.XXX, true or false).
+
+
+
+
+ Initializes a new instance of the class.
+
+ Literal value.
+
+
+
+ Returns a string representation of the expression.
+
+ The literal value.
+
+
+
+ Evaluates the expression.
+
+ Evaluation context.
+ The literal value as passed in the constructor.
+
+
+
+ Gets the literal value.
+
+ The literal value.
+
+
+
+ Condition logger name expression (represented by the logger keyword).
+
+
+
+
+ Returns a string representation of this expression.
+
+ A logger string.
+
+
+
+ Evaluates to the logger name.
+
+ Evaluation context.
+ The logger name.
+
+
+
+ Condition message expression (represented by the message keyword).
+
+
+
+
+ Returns a string representation of this expression.
+
+ The 'message' string.
+
+
+
+ Evaluates to the logger message.
+
+ Evaluation context.
+ The logger message.
+
+
+
+ Marks class as a log event Condition and assigns a name to it.
+
+
+
+
+ Attaches a simple name to an item (such as ,
+ , , etc.).
+
+
+
+
+ Initializes a new instance of the class.
+
+ The name of the item.
+
+
+
+ Gets the name of the item.
+
+ The name of the item.
+
+
+
+ Initializes a new instance of the class.
+
+ Condition method name.
+
+
+
+ Condition method invocation expression (represented by method(p1,p2,p3) syntax).
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the condition method.
+ of the condition method.
+ The method parameters.
+
+
+
+ Returns a string representation of the expression.
+
+
+ A that represents the condition expression.
+
+
+
+
+ Evaluates the expression.
+
+ Evaluation context.
+ Expression result.
+
+
+
+ Gets the method info.
+
+
+
+
+ Gets the method parameters.
+
+ The method parameters.
+
+
+
+ A bunch of utility methods (mostly predicates) which can be used in
+ condition expressions. Parially inspired by XPath 1.0.
+
+
+
+
+ Compares two values for equality.
+
+ The first value.
+ The second value.
+ true when two objects are equal, false otherwise.
+
+
+
+ Compares two strings for equality.
+
+ The first string.
+ The second string.
+ Optional. If true, case is ignored; if false (default), case is significant.
+ true when two strings are equal, false otherwise.
+
+
+
+ Gets or sets a value indicating whether the second string is a substring of the first one.
+
+ The first string.
+ The second string.
+ Optional. If true (default), case is ignored; if false, case is significant.
+ true when the second string is a substring of the first string, false otherwise.
+
+
+
+ Gets or sets a value indicating whether the second string is a prefix of the first one.
+
+ The first string.
+ The second string.
+ Optional. If true (default), case is ignored; if false, case is significant.
+ true when the second string is a prefix of the first string, false otherwise.
+
+
+
+ Gets or sets a value indicating whether the second string is a suffix of the first one.
+
+ The first string.
+ The second string.
+ Optional. If true (default), case is ignored; if false, case is significant.
+ true when the second string is a prefix of the first string, false otherwise.
+
+
+
+ Returns the length of a string.
+
+ A string whose lengths is to be evaluated.
+ The length of the string.
+
+
+
+ Marks the class as containing condition methods.
+
+
+
+
+ Condition not expression.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The expression.
+
+
+
+ Returns a string representation of the expression.
+
+
+ A that represents the condition expression.
+
+
+
+
+ Evaluates the expression.
+
+ Evaluation context.
+ Expression result.
+
+
+
+ Gets the expression to be negated.
+
+ The expression.
+
+
+
+ Condition or expression.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Left hand side of the OR expression.
+ Right hand side of the OR expression.
+
+
+
+ Returns a string representation of the expression.
+
+
+ A that represents the condition expression.
+
+
+
+
+ Evaluates the expression by evaluating and recursively.
+
+ Evaluation context.
+ The value of the alternative operator.
+
+
+
+ Gets the left expression.
+
+ The left expression.
+
+
+
+ Gets the right expression.
+
+ The right expression.
+
+
+
+ Exception during parsing of condition expression.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The inner exception.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+
+ The parameter is null.
+
+
+ The class name is null or is zero (0).
+
+
+
+
+ Condition parser. Turns a string representation of condition expression
+ into an expression tree.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The string reader.
+ Instance of used to resolve references to condition methods and layout renderers.
+
+
+
+ Parses the specified condition string and turns it into
+ tree.
+
+ The expression to be parsed.
+ The root of the expression syntax tree which can be used to get the value of the condition in a specified context.
+
+
+
+ Parses the specified condition string and turns it into
+ tree.
+
+ The expression to be parsed.
+ Instance of used to resolve references to condition methods and layout renderers.
+ The root of the expression syntax tree which can be used to get the value of the condition in a specified context.
+
+
+
+ Parses the specified condition string and turns it into
+ tree.
+
+ The string reader.
+ Instance of used to resolve references to condition methods and layout renderers.
+
+ The root of the expression syntax tree which can be used to get the value of the condition in a specified context.
+
+
+
+
+ Condition relational (==, !=, <, <=,
+ > or >=) expression.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The left expression.
+ The right expression.
+ The relational operator.
+
+
+
+ Returns a string representation of the expression.
+
+
+ A that represents the condition expression.
+
+
+
+
+ Evaluates the expression.
+
+ Evaluation context.
+ Expression result.
+
+
+
+ Compares the specified values using specified relational operator.
+
+ The first value.
+ The second value.
+ The relational operator.
+ Result of the given relational operator.
+
+
+
+ Gets the left expression.
+
+ The left expression.
+
+
+
+ Gets the right expression.
+
+ The right expression.
+
+
+
+ Gets the relational operator.
+
+ The operator.
+
+
+
+ Relational operators used in conditions.
+
+
+
+
+ Equality (==).
+
+
+
+
+ Inequality (!=).
+
+
+
+
+ Less than (<).
+
+
+
+
+ Greater than (>).
+
+
+
+
+ Less than or equal (<=).
+
+
+
+
+ Greater than or equal (>=).
+
+
+
+
+ Hand-written tokenizer for conditions.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The string reader.
+
+
+
+ Asserts current token type and advances to the next token.
+
+ Expected token type.
+ If token type doesn't match, an exception is thrown.
+
+
+
+ Asserts that current token is a keyword and returns its value and advances to the next token.
+
+ Keyword value.
+
+
+
+ Gets or sets a value indicating whether current keyword is equal to the specified value.
+
+ The keyword.
+
+ A value of true if current keyword is equal to the specified value; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether the tokenizer has reached the end of the token stream.
+
+
+ A value of true if the tokenizer has reached the end of the token stream; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether current token is a number.
+
+
+ A value of true if current token is a number; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether the specified token is of specified type.
+
+ The token type.
+
+ A value of true if current token is of specified type; otherwise, false.
+
+
+
+
+ Gets the next token and sets and properties.
+
+
+
+
+ Gets the token position.
+
+ The token position.
+
+
+
+ Gets the type of the token.
+
+ The type of the token.
+
+
+
+ Gets the token value.
+
+ The token value.
+
+
+
+ Gets the value of a string token.
+
+ The string token value.
+
+
+
+ Mapping between characters and token types for punctuations.
+
+
+
+
+ Initializes a new instance of the CharToTokenType struct.
+
+ The character.
+ Type of the token.
+
+
+
+ Token types for condition expressions.
+
+
+
+
+ Marks the class or a member as advanced. Advanced classes and members are hidden by
+ default in generated documentation.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Identifies that the output of layout or layout render does not change for the lifetime of the current appdomain.
+
+
+
+
+ Used to mark configurable parameters which are arrays.
+ Specifies the mapping between XML elements and .NET types.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The type of the array item.
+ The XML element name that represents the item.
+
+
+
+ Gets the .NET type of the array item.
+
+
+
+
+ Gets the XML element name.
+
+
+
+
+ NLog configuration section handler class for configuring NLog from App.config.
+
+
+
+
+ Creates a configuration section handler.
+
+ Parent object.
+ Configuration context object.
+ Section XML node.
+ The created section handler object.
+
+
+
+ Constructs a new instance the configuration item (target, layout, layout renderer, etc.) given its type.
+
+ Type of the item.
+ Created object of the specified type.
+
+
+
+ Provides registration information for named items (targets, layouts, layout renderers, etc.) managed by NLog.
+
+
+
+
+ Initializes static members of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The assemblies to scan for named items.
+
+
+
+ Registers named items from the assembly.
+
+ The assembly.
+
+
+
+ Registers named items from the assembly.
+
+ The assembly.
+ Item name prefix.
+
+
+
+ Clears the contents of all factories.
+
+
+
+
+ Registers the type.
+
+ The type to register.
+ The item name prefix.
+
+
+
+ Builds the default configuration item factory.
+
+ Default factory.
+
+
+
+ Registers items in NLog.Extended.dll using late-bound types, so that we don't need a reference to NLog.Extended.dll.
+
+
+
+
+ Gets or sets default singleton instance of .
+
+
+
+
+ Gets or sets the creator delegate used to instantiate configuration objects.
+
+
+ By overriding this property, one can enable dependency injection or interception for created objects.
+
+
+
+
+ Gets the factory.
+
+ The target factory.
+
+
+
+ Gets the factory.
+
+ The filter factory.
+
+
+
+ Gets the factory.
+
+ The layout renderer factory.
+
+
+
+ Gets the factory.
+
+ The layout factory.
+
+
+
+ Gets the ambient property factory.
+
+ The ambient property factory.
+
+
+
+ Gets the time source factory.
+
+ The time source factory.
+
+
+
+ Gets the condition method factory.
+
+ The condition method factory.
+
+
+
+ Attribute used to mark the default parameters for layout renderers.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Factory for class-based items.
+
+ The base type of each item.
+ The type of the attribute used to annotate itemss.
+
+
+
+ Represents a factory of named items (such as targets, layouts, layout renderers, etc.).
+
+ Base type for each item instance.
+ Item definition type (typically or ).
+
+
+
+ Registers new item definition.
+
+ Name of the item.
+ Item definition.
+
+
+
+ Tries to get registed item definition.
+
+ Name of the item.
+ Reference to a variable which will store the item definition.
+ Item definition.
+
+
+
+ Creates item instance.
+
+ Name of the item.
+ Newly created item instance.
+
+
+
+ Tries to create an item instance.
+
+ Name of the item.
+ The result.
+ True if instance was created successfully, false otherwise.
+
+
+
+ Provides means to populate factories of named items (such as targets, layouts, layout renderers, etc.).
+
+
+
+
+ Scans the assembly.
+
+ The assembly.
+ The prefix.
+
+
+
+ Registers the type.
+
+ The type to register.
+ The item name prefix.
+
+
+
+ Registers the item based on a type name.
+
+ Name of the item.
+ Name of the type.
+
+
+
+ Clears the contents of the factory.
+
+
+
+
+ Registers a single type definition.
+
+ The item name.
+ The type of the item.
+
+
+
+ Tries to get registed item definition.
+
+ Name of the item.
+ Reference to a variable which will store the item definition.
+ Item definition.
+
+
+
+ Tries to create an item instance.
+
+ Name of the item.
+ The result.
+ True if instance was created successfully, false otherwise.
+
+
+
+ Creates an item instance.
+
+ The name of the item.
+ Created item.
+
+
+
+ Implemented by objects which support installation and uninstallation.
+
+
+
+
+ Performs installation which requires administrative permissions.
+
+ The installation context.
+
+
+
+ Performs uninstallation which requires administrative permissions.
+
+ The installation context.
+
+
+
+ Determines whether the item is installed.
+
+ The installation context.
+
+ Value indicating whether the item is installed or null if it is not possible to determine.
+
+
+
+
+ Provides context for install/uninstall operations.
+
+
+
+
+ Mapping between log levels and console output colors.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The log output.
+
+
+
+ Logs the specified trace message.
+
+ The message.
+ The arguments.
+
+
+
+ Logs the specified debug message.
+
+ The message.
+ The arguments.
+
+
+
+ Logs the specified informational message.
+
+ The message.
+ The arguments.
+
+
+
+ Logs the specified warning message.
+
+ The message.
+ The arguments.
+
+
+
+ Logs the specified error message.
+
+ The message.
+ The arguments.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Creates the log event which can be used to render layouts during installation/uninstallations.
+
+ Log event info object.
+
+
+
+ Gets or sets the installation log level.
+
+
+
+
+ Gets or sets a value indicating whether to ignore failures during installation.
+
+
+
+
+ Gets the installation parameters.
+
+
+
+
+ Gets or sets the log output.
+
+
+
+
+ Keeps logging configuration and provides simple API
+ to modify it.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Registers the specified target object under a given name.
+
+
+ Name of the target.
+
+
+ The target object.
+
+
+
+
+ Finds the target with the specified name.
+
+
+ The name of the target to be found.
+
+
+ Found target or when the target is not found.
+
+
+
+
+ Called by LogManager when one of the log configuration files changes.
+
+
+ A new instance of that represents the updated configuration.
+
+
+
+
+ Removes the specified named target.
+
+
+ Name of the target.
+
+
+
+
+ Installs target-specific objects on current system.
+
+ The installation context.
+
+ Installation typically runs with administrative permissions.
+
+
+
+
+ Uninstalls target-specific objects from current system.
+
+ The installation context.
+
+ Uninstallation typically runs with administrative permissions.
+
+
+
+
+ Closes all targets and releases any unmanaged resources.
+
+
+
+
+ Flushes any pending log messages on all appenders.
+
+ The asynchronous continuation.
+
+
+
+ Validates the configuration.
+
+
+
+
+ Gets a collection of named targets specified in the configuration.
+
+
+ A list of named targets.
+
+
+ Unnamed targets (such as those wrapped by other targets) are not returned.
+
+
+
+
+ Gets the collection of file names which should be watched for changes by NLog.
+
+
+
+
+ Gets the collection of logging rules.
+
+
+
+
+ Gets or sets the default culture info use.
+
+
+
+
+ Gets all targets.
+
+
+
+
+ Arguments for events.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The old configuration.
+ The new configuration.
+
+
+
+ Gets the old configuration.
+
+ The old configuration.
+
+
+
+ Gets the new configuration.
+
+ The new configuration.
+
+
+
+ Arguments for .
+
+
+
+
+ Initializes a new instance of the class.
+
+ Whether configuration reload has succeeded.
+ The exception during configuration reload.
+
+
+
+ Gets a value indicating whether configuration reload has succeeded.
+
+ A value of true if succeeded; otherwise, false.
+
+
+
+ Gets the exception which occurred during configuration reload.
+
+ The exception.
+
+
+
+ Represents a logging rule. An equivalent of <logger /> configuration element.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Logger name pattern. It may include the '*' wildcard at the beginning, at the end or at both ends.
+ Minimum log level needed to trigger this rule.
+ Target to be written to when the rule matches.
+
+
+
+ Initializes a new instance of the class.
+
+ Logger name pattern. It may include the '*' wildcard at the beginning, at the end or at both ends.
+ Target to be written to when the rule matches.
+ By default no logging levels are defined. You should call and to set them.
+
+
+
+ Enables logging for a particular level.
+
+ Level to be enabled.
+
+
+
+ Disables logging for a particular level.
+
+ Level to be disabled.
+
+
+
+ Returns a string representation of . Used for debugging.
+
+
+ A that represents the current .
+
+
+
+
+ Checks whether te particular log level is enabled for this rule.
+
+ Level to be checked.
+ A value of when the log level is enabled, otherwise.
+
+
+
+ Checks whether given name matches the logger name pattern.
+
+ String to be matched.
+ A value of when the name matches, otherwise.
+
+
+
+ Gets a collection of targets that should be written to when this rule matches.
+
+
+
+
+ Gets a collection of child rules to be evaluated when this rule matches.
+
+
+
+
+ Gets a collection of filters to be checked before writing to targets.
+
+
+
+
+ Gets or sets a value indicating whether to quit processing any further rule when this one matches.
+
+
+
+
+ Gets or sets logger name pattern.
+
+
+ Logger name pattern. It may include the '*' wildcard at the beginning, at the end or at both ends but not anywhere else.
+
+
+
+
+ Gets the collection of log levels enabled by this rule.
+
+
+
+
+ Factory for locating methods.
+
+ The type of the class marker attribute.
+ The type of the method marker attribute.
+
+
+
+ Scans the assembly for classes marked with
+ and methods marked with and adds them
+ to the factory.
+
+ The assembly.
+ The prefix to use for names.
+
+
+
+ Registers the type.
+
+ The type to register.
+ The item name prefix.
+
+
+
+ Clears contents of the factory.
+
+
+
+
+ Registers the definition of a single method.
+
+ The method name.
+ The method info.
+
+
+
+ Tries to retrieve method by name.
+
+ The method name.
+ The result.
+ A value of true if the method was found, false otherwise.
+
+
+
+ Retrieves method by name.
+
+ Method name.
+ MethodInfo object.
+
+
+
+ Tries to get method definition.
+
+ The method .
+ The result.
+ A value of true if the method was found, false otherwise.
+
+
+
+ Gets a collection of all registered items in the factory.
+
+
+ Sequence of key/value pairs where each key represents the name
+ of the item and value is the of
+ the item.
+
+
+
+
+ Marks the object as configuration item for NLog.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Represents simple XML element with case-insensitive attribute semantics.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The input URI.
+
+
+
+ Initializes a new instance of the class.
+
+ The reader to initialize element from.
+
+
+
+ Prevents a default instance of the class from being created.
+
+
+
+
+ Returns children elements with the specified element name.
+
+ Name of the element.
+ Children elements with the specified element name.
+
+
+
+ Gets the required attribute.
+
+ Name of the attribute.
+ Attribute value.
+ Throws if the attribute is not specified.
+
+
+
+ Gets the optional boolean attribute value.
+
+ Name of the attribute.
+ Default value to return if the attribute is not found.
+ Boolean attribute value or default.
+
+
+
+ Gets the optional attribute value.
+
+ Name of the attribute.
+ The default value.
+ Value of the attribute or default value.
+
+
+
+ Asserts that the name of the element is among specified element names.
+
+ The allowed names.
+
+
+
+ Gets the element name.
+
+
+
+
+ Gets the dictionary of attribute values.
+
+
+
+
+ Gets the collection of child elements.
+
+
+
+
+ Gets the value of the element.
+
+
+
+
+ Attribute used to mark the required parameters for targets,
+ layout targets and filters.
+
+
+
+
+ Provides simple programmatic configuration API used for trivial logging cases.
+
+
+
+
+ Configures NLog for console logging so that all messages above and including
+ the level are output to the console.
+
+
+
+
+ Configures NLog for console logging so that all messages above and including
+ the specified level are output to the console.
+
+ The minimal logging level.
+
+
+
+ Configures NLog for to log to the specified target so that all messages
+ above and including the level are output.
+
+ The target to log all messages to.
+
+
+
+ Configures NLog for to log to the specified target so that all messages
+ above and including the specified level are output.
+
+ The target to log all messages to.
+ The minimal logging level.
+
+
+
+ Configures NLog for file logging so that all messages above and including
+ the level are written to the specified file.
+
+ Log file name.
+
+
+
+ Configures NLog for file logging so that all messages above and including
+ the specified level are written to the specified file.
+
+ Log file name.
+ The minimal logging level.
+
+
+
+ Value indicating how stack trace should be captured when processing the log event.
+
+
+
+
+ Stack trace should not be captured.
+
+
+
+
+ Stack trace should be captured without source-level information.
+
+
+
+
+ Stack trace should be captured including source-level information such as line numbers.
+
+
+
+
+ Capture maximum amount of the stack trace information supported on the plaform.
+
+
+
+
+ Marks the layout or layout renderer as producing correct results regardless of the thread
+ it's running on.
+
+
+
+
+ A class for configuring NLog through an XML configuration file
+ (App.config style or App.nlog style).
+
+
+
+
+ Initializes a new instance of the class.
+
+ Configuration file to be read.
+
+
+
+ Initializes a new instance of the class.
+
+ Configuration file to be read.
+ Ignore any errors during configuration.
+
+
+
+ Initializes a new instance of the class.
+
+ containing the configuration section.
+ Name of the file that contains the element (to be used as a base for including other files).
+
+
+
+ Initializes a new instance of the class.
+
+ containing the configuration section.
+ Name of the file that contains the element (to be used as a base for including other files).
+ Ignore any errors during configuration.
+
+
+
+ Initializes a new instance of the class.
+
+ The XML element.
+ Name of the XML file.
+
+
+
+ Initializes a new instance of the class.
+
+ The XML element.
+ Name of the XML file.
+ If set to true errors will be ignored during file processing.
+
+
+
+ Re-reads the original configuration file and returns the new object.
+
+ The new object.
+
+
+
+ Initializes the configuration.
+
+ containing the configuration section.
+ Name of the file that contains the element (to be used as a base for including other files).
+ Ignore any errors during configuration.
+
+
+
+ Gets the default object by parsing
+ the application configuration file (app.exe.config).
+
+
+
+
+ Gets or sets a value indicating whether the configuration files
+ should be watched for changes and reloaded automatically when changed.
+
+
+
+
+ Gets the collection of file names which should be watched for changes by NLog.
+ This is the list of configuration files processed.
+ If the autoReload attribute is not set it returns empty collection.
+
+
+
+
+ Matches when the specified condition is met.
+
+
+ Conditions are expressed using a simple language
+ described here.
+
+
+
+
+ An abstract filter class. Provides a way to eliminate log messages
+ based on properties other than logger name and log level.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets the result of evaluating filter against given log event.
+
+ The log event.
+ Filter result.
+
+
+
+ Checks whether log event should be logged or not.
+
+ Log event.
+
+ - if the log event should be ignored
+ - if the filter doesn't want to decide
+ - if the log event should be logged
+ .
+
+
+
+ Gets or sets the action to be taken when filter matches.
+
+
+
+
+
+ Checks whether log event should be logged or not.
+
+ Log event.
+
+ - if the log event should be ignored
+ - if the filter doesn't want to decide
+ - if the log event should be logged
+ .
+
+
+
+ Gets or sets the condition expression.
+
+
+
+
+
+ Marks class as a layout renderer and assigns a name to it.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the filter.
+
+
+
+ Filter result.
+
+
+
+
+ The filter doesn't want to decide whether to log or discard the message.
+
+
+
+
+ The message should be logged.
+
+
+
+
+ The message should not be logged.
+
+
+
+
+ The message should be logged and processing should be finished.
+
+
+
+
+ The message should not be logged and processing should be finished.
+
+
+
+
+ A base class for filters that are based on comparing a value to a layout.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets or sets the layout to be used to filter log messages.
+
+ The layout.
+
+
+
+
+ Matches when the calculated layout contains the specified substring.
+ This filter is deprecated in favour of <when /> which is based on contitions.
+
+
+
+
+ Checks whether log event should be logged or not.
+
+ Log event.
+
+ - if the log event should be ignored
+ - if the filter doesn't want to decide
+ - if the log event should be logged
+ .
+
+
+
+ Gets or sets a value indicating whether to ignore case when comparing strings.
+
+
+
+
+
+ Gets or sets the substring to be matched.
+
+
+
+
+
+ Matches when the calculated layout is equal to the specified substring.
+ This filter is deprecated in favour of <when /> which is based on contitions.
+
+
+
+
+ Checks whether log event should be logged or not.
+
+ Log event.
+
+ - if the log event should be ignored
+ - if the filter doesn't want to decide
+ - if the log event should be logged
+ .
+
+
+
+ Gets or sets a value indicating whether to ignore case when comparing strings.
+
+
+
+
+
+ Gets or sets a string to compare the layout to.
+
+
+
+
+
+ Matches when the calculated layout does NOT contain the specified substring.
+ This filter is deprecated in favour of <when /> which is based on contitions.
+
+
+
+
+ Checks whether log event should be logged or not.
+
+ Log event.
+
+ - if the log event should be ignored
+ - if the filter doesn't want to decide
+ - if the log event should be logged
+ .
+
+
+
+ Gets or sets the substring to be matched.
+
+
+
+
+
+ Gets or sets a value indicating whether to ignore case when comparing strings.
+
+
+
+
+
+ Matches when the calculated layout is NOT equal to the specified substring.
+ This filter is deprecated in favour of <when /> which is based on contitions.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Checks whether log event should be logged or not.
+
+ Log event.
+
+ - if the log event should be ignored
+ - if the filter doesn't want to decide
+ - if the log event should be logged
+ .
+
+
+
+ Gets or sets a string to compare the layout to.
+
+
+
+
+
+ Gets or sets a value indicating whether to ignore case when comparing strings.
+
+
+
+
+
+ Global Diagnostics Context - used for log4net compatibility.
+
+
+
+
+ Sets the Global Diagnostics Context item to the specified value.
+
+ Item name.
+ Item value.
+
+
+
+ Gets the Global Diagnostics Context named item.
+
+ Item name.
+ The item value of string.Empty if the value is not present.
+
+
+
+ Checks whether the specified item exists in the Global Diagnostics Context.
+
+ Item name.
+ A boolean indicating whether the specified item exists in current thread GDC.
+
+
+
+ Removes the specified item from the Global Diagnostics Context.
+
+ Item name.
+
+
+
+ Clears the content of the GDC.
+
+
+
+
+ Global Diagnostics Context - a dictionary structure to hold per-application-instance values.
+
+
+
+
+ Sets the Global Diagnostics Context item to the specified value.
+
+ Item name.
+ Item value.
+
+
+
+ Gets the Global Diagnostics Context named item.
+
+ Item name.
+ The item value of string.Empty if the value is not present.
+
+
+
+ Checks whether the specified item exists in the Global Diagnostics Context.
+
+ Item name.
+ A boolean indicating whether the specified item exists in current thread GDC.
+
+
+
+ Removes the specified item from the Global Diagnostics Context.
+
+ Item name.
+
+
+
+ Clears the content of the GDC.
+
+
+
+
+ Various helper methods for accessing state of ASP application.
+
+
+
+
+ Internal configuration manager used to read .NET configuration files.
+ Just a wrapper around the BCL ConfigurationManager, but used to enable
+ unit testing.
+
+
+
+
+ Interface for the wrapper around System.Configuration.ConfigurationManager.
+
+
+
+
+ Gets the wrapper around ConfigurationManager.AppSettings.
+
+
+
+
+ Gets the wrapper around ConfigurationManager.AppSettings.
+
+
+
+
+ Provides untyped IDictionary interface on top of generic IDictionary.
+
+ The type of the key.
+ The type of the value.
+
+
+
+ Initializes a new instance of the DictionaryAdapter class.
+
+ The implementation.
+
+
+
+ Adds an element with the provided key and value to the object.
+
+ The to use as the key of the element to add.
+ The to use as the value of the element to add.
+
+
+
+ Removes all elements from the object.
+
+
+
+
+ Determines whether the object contains an element with the specified key.
+
+ The key to locate in the object.
+
+ True if the contains an element with the key; otherwise, false.
+
+
+
+
+ Returns an object for the object.
+
+
+ An object for the object.
+
+
+
+
+ Removes the element with the specified key from the object.
+
+ The key of the element to remove.
+
+
+
+ Copies the elements of the to an , starting at a particular index.
+
+ The one-dimensional that is the destination of the elements copied from . The must have zero-based indexing.
+ The zero-based index in at which copying begins.
+
+
+
+ Returns an enumerator that iterates through a collection.
+
+
+ An object that can be used to iterate through the collection.
+
+
+
+
+ Gets an object containing the values in the object.
+
+
+
+ An object containing the values in the object.
+
+
+
+
+ Gets the number of elements contained in the .
+
+
+
+ The number of elements contained in the .
+
+
+
+
+ Gets a value indicating whether access to the is synchronized (thread safe).
+
+
+ true if access to the is synchronized (thread safe); otherwise, false.
+
+
+
+
+ Gets an object that can be used to synchronize access to the .
+
+
+
+ An object that can be used to synchronize access to the .
+
+
+
+
+ Gets a value indicating whether the object has a fixed size.
+
+
+ true if the object has a fixed size; otherwise, false.
+
+
+
+
+ Gets a value indicating whether the object is read-only.
+
+
+ true if the object is read-only; otherwise, false.
+
+
+
+
+ Gets an object containing the keys of the object.
+
+
+
+ An object containing the keys of the object.
+
+
+
+
+ Gets or sets the with the specified key.
+
+ Dictionary key.
+ Value corresponding to key or null if not found
+
+
+
+ Wrapper IDictionaryEnumerator.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The wrapped.
+
+
+
+ Advances the enumerator to the next element of the collection.
+
+
+ True if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection.
+
+
+
+
+ Sets the enumerator to its initial position, which is before the first element in the collection.
+
+
+
+
+ Gets both the key and the value of the current dictionary entry.
+
+
+
+ A containing both the key and the value of the current dictionary entry.
+
+
+
+
+ Gets the key of the current dictionary entry.
+
+
+
+ The key of the current element of the enumeration.
+
+
+
+
+ Gets the value of the current dictionary entry.
+
+
+
+ The value of the current element of the enumeration.
+
+
+
+
+ Gets the current element in the collection.
+
+
+
+ The current element in the collection.
+
+
+
+
+ LINQ-like helpers (cannot use LINQ because we must work with .NET 2.0 profile).
+
+
+
+
+ Filters the given enumerable to return only items of the specified type.
+
+
+ Type of the item.
+
+
+ The enumerable.
+
+
+ Items of specified type.
+
+
+
+
+ Reverses the specified enumerable.
+
+
+ Type of enumerable item.
+
+
+ The enumerable.
+
+
+ Reversed enumerable.
+
+
+
+
+ Determines is the given predicate is met by any element of the enumerable.
+
+ Element type.
+ The enumerable.
+ The predicate.
+ True if predicate returns true for any element of the collection, false otherwise.
+
+
+
+ Converts the enumerable to list.
+
+ Type of the list element.
+ The enumerable.
+ List of elements.
+
+
+
+ Safe way to get environment variables.
+
+
+
+
+ Helper class for dealing with exceptions.
+
+
+
+
+ Determines whether the exception must be rethrown.
+
+ The exception.
+ True if the exception must be rethrown, false otherwise.
+
+
+
+ Object construction helper.
+
+
+
+
+ Adapter for to
+
+
+
+
+ Interface for fakeable the current . Not fully implemented, please methods/properties as necessary.
+
+
+
+
+ Gets or sets the base directory that the assembly resolver uses to probe for assemblies.
+
+
+
+
+ Gets or sets the name of the configuration file for an application domain.
+
+
+
+
+ Gets or sets the list of directories under the application base directory that are probed for private assemblies.
+
+
+
+
+ Gets or set the friendly name.
+
+
+
+
+ Process exit event.
+
+
+
+
+ Domain unloaded event.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The to wrap.
+
+
+
+ Gets a the current wrappered in a .
+
+
+
+
+ Gets or sets the base directory that the assembly resolver uses to probe for assemblies.
+
+
+
+
+ Gets or sets the name of the configuration file for an application domain.
+
+
+
+
+ Gets or sets the list of directories under the application base directory that are probed for private assemblies.
+
+
+
+
+ Gets or set the friendly name.
+
+
+
+
+ Process exit event.
+
+
+
+
+ Domain unloaded event.
+
+
+
+
+ Base class for optimized file appenders.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the file.
+ The create parameters.
+
+
+
+ Writes the specified bytes.
+
+ The bytes.
+
+
+
+ Flushes this instance.
+
+
+
+
+ Closes this instance.
+
+
+
+
+ Gets the file info.
+
+ The last write time.
+ Length of the file.
+ True if the operation succeeded, false otherwise.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources.
+
+ True to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Records the last write time for a file.
+
+
+
+
+ Records the last write time for a file to be specific date.
+
+ Date and time when the last write occurred.
+
+
+
+ Creates the file stream.
+
+ If set to true allow concurrent writes.
+ A object which can be used to write to the file.
+
+
+
+ Gets the name of the file.
+
+ The name of the file.
+
+
+
+ Gets the last write time.
+
+ The last write time.
+
+
+
+ Gets the open time of the file.
+
+ The open time.
+
+
+
+ Gets the file creation parameters.
+
+ The file creation parameters.
+
+
+
+ Implementation of which caches
+ file information.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the file.
+ The parameters.
+
+
+
+ Closes this instance of the appender.
+
+
+
+
+ Flushes this current appender.
+
+
+
+
+ Gets the file info.
+
+ The last write time.
+ Length of the file.
+ True if the operation succeeded, false otherwise.
+
+
+
+ Writes the specified bytes to a file.
+
+ The bytes to be written.
+
+
+
+ Factory class which creates objects.
+
+
+
+
+ Interface implemented by all factories capable of creating file appenders.
+
+
+
+
+ Opens the appender for given file name and parameters.
+
+ Name of the file.
+ Creation parameters.
+ Instance of which can be used to write to the file.
+
+
+
+ Opens the appender for given file name and parameters.
+
+ Name of the file.
+ Creation parameters.
+
+ Instance of which can be used to write to the file.
+
+
+
+
+ Interface that provides parameters for create file function.
+
+
+
+
+ Provides a multiprocess-safe atomic file appends while
+ keeping the files open.
+
+
+ On Unix you can get all the appends to be atomic, even when multiple
+ processes are trying to write to the same file, because setting the file
+ pointer to the end of the file and appending can be made one operation.
+ On Win32 we need to maintain some synchronization between processes
+ (global named mutex is used for this)
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the file.
+ The parameters.
+
+
+
+ Writes the specified bytes.
+
+ The bytes to be written.
+
+
+
+ Closes this instance.
+
+
+
+
+ Flushes this instance.
+
+
+
+
+ Gets the file info.
+
+ The last write time.
+ Length of the file.
+
+ True if the operation succeeded, false otherwise.
+
+
+
+
+ Factory class.
+
+
+
+
+ Opens the appender for given file name and parameters.
+
+ Name of the file.
+ Creation parameters.
+
+ Instance of which can be used to write to the file.
+
+
+
+
+ Multi-process and multi-host file appender which attempts
+ to get exclusive write access and retries if it's not available.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the file.
+ The parameters.
+
+
+
+ Writes the specified bytes.
+
+ The bytes.
+
+
+
+ Flushes this instance.
+
+
+
+
+ Closes this instance.
+
+
+
+
+ Gets the file info.
+
+ The last write time.
+ Length of the file.
+
+ True if the operation succeeded, false otherwise.
+
+
+
+
+ Factory class.
+
+
+
+
+ Opens the appender for given file name and parameters.
+
+ Name of the file.
+ Creation parameters.
+
+ Instance of which can be used to write to the file.
+
+
+
+
+ Optimized single-process file appender which keeps the file open for exclusive write.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the file.
+ The parameters.
+
+
+
+ Writes the specified bytes.
+
+ The bytes.
+
+
+
+ Flushes this instance.
+
+
+
+
+ Closes this instance.
+
+
+
+
+ Gets the file info.
+
+ The last write time.
+ Length of the file.
+
+ True if the operation succeeded, false otherwise.
+
+
+
+
+ Factory class.
+
+
+
+
+ Opens the appender for given file name and parameters.
+
+ Name of the file.
+ Creation parameters.
+
+ Instance of which can be used to write to the file.
+
+
+
+
+ Optimized routines to get the size and last write time of the specified file.
+
+
+
+
+ Initializes static members of the FileInfoHelper class.
+
+
+
+
+ Gets the information about a file.
+
+ Name of the file.
+ The file handle.
+ The last write time of the file.
+ Length of the file.
+ A value of true if file information was retrieved successfully, false otherwise.
+
+
+
+ Form helper methods.
+
+
+
+
+ Creates RichTextBox and docks in parentForm.
+
+ Name of RichTextBox.
+ Form to dock RichTextBox.
+ Created RichTextBox.
+
+
+
+ Finds control embedded on searchControl.
+
+ Name of the control.
+ Control in which we're searching for control.
+ A value of null if no control has been found.
+
+
+
+ Finds control of specified type embended on searchControl.
+
+ The type of the control.
+ Name of the control.
+ Control in which we're searching for control.
+
+ A value of null if no control has been found.
+
+
+
+
+ Creates a form.
+
+ Name of form.
+ Width of form.
+ Height of form.
+ Auto show form.
+ If set to true the form will be minimized.
+ If set to true the form will be created as tool window.
+ Created form.
+
+
+
+ Interface implemented by layouts and layout renderers.
+
+
+
+
+ Renders the the value of layout or layout renderer in the context of the specified log event.
+
+ The log event.
+ String representation of a layout.
+
+
+
+ Supports mocking of SMTP Client code.
+
+
+
+
+ Supports object initialization and termination.
+
+
+
+
+ Initializes this instance.
+
+ The configuration.
+
+
+
+ Closes this instance.
+
+
+
+
+ Allows components to request stack trace information to be provided in the .
+
+
+
+
+ Gets the level of stack trace information required by the implementing class.
+
+
+
+
+ Logger configuration.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The targets by level.
+
+
+
+ Gets targets for the specified level.
+
+ The level.
+ Chain of targets with attached filters.
+
+
+
+ Determines whether the specified level is enabled.
+
+ The level.
+
+ A value of true if the specified level is enabled; otherwise, false.
+
+
+
+
+ Message Box helper.
+
+
+
+
+ Shows the specified message using platform-specific message box.
+
+ The message.
+ The caption.
+
+
+
+ Watches multiple files at the same time and raises an event whenever
+ a single change is detected in any of those files.
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Stops the watching.
+
+
+
+
+ Watches the specified files for changes.
+
+ The file names.
+
+
+
+ Occurs when a change is detected in one of the monitored files.
+
+
+
+
+ Supports mocking of SMTP Client code.
+
+
+
+
+ Network sender which uses HTTP or HTTPS POST.
+
+
+
+
+ A base class for all network senders. Supports one-way sending of messages
+ over various protocols.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The network URL.
+
+
+
+ Finalizes an instance of the NetworkSender class.
+
+
+
+
+ Initializes this network sender.
+
+
+
+
+ Closes the sender and releases any unmanaged resources.
+
+ The continuation.
+
+
+
+ Flushes any pending messages and invokes a continuation.
+
+ The continuation.
+
+
+
+ Send the given text over the specified protocol.
+
+ Bytes to be sent.
+ Offset in buffer.
+ Number of bytes to send.
+ The asynchronous continuation.
+
+
+
+ Closes the sender and releases any unmanaged resources.
+
+
+
+
+ Performs sender-specific initialization.
+
+
+
+
+ Performs sender-specific close operation.
+
+ The continuation.
+
+
+
+ Performs sender-specific flush.
+
+ The continuation.
+
+
+
+ Actually sends the given text over the specified protocol.
+
+ The bytes to be sent.
+ Offset in buffer.
+ Number of bytes to send.
+ The async continuation to be invoked after the buffer has been sent.
+ To be overridden in inheriting classes.
+
+
+
+ Parses the URI into an endpoint address.
+
+ The URI to parse.
+ The address family.
+ Parsed endpoint.
+
+
+
+ Gets the address of the network endpoint.
+
+
+
+
+ Gets the last send time.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The network URL.
+
+
+
+ Actually sends the given text over the specified protocol.
+
+ The bytes to be sent.
+ Offset in buffer.
+ Number of bytes to send.
+ The async continuation to be invoked after the buffer has been sent.
+ To be overridden in inheriting classes.
+
+
+
+ Creates instances of objects for given URLs.
+
+
+
+
+ Creates a new instance of the network sender based on a network URL.
+
+
+ URL that determines the network sender to be created.
+
+
+ The maximum queue size.
+
+
+ A newly created network sender.
+
+
+
+
+ Interface for mocking socket calls.
+
+
+
+
+ Default implementation of .
+
+
+
+
+ Creates a new instance of the network sender based on a network URL:.
+
+
+ URL that determines the network sender to be created.
+
+
+ The maximum queue size.
+
+ ///
+ A newly created network sender.
+
+
+
+
+ Socket proxy for mocking Socket code.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The address family.
+ Type of the socket.
+ Type of the protocol.
+
+
+
+ Closes the wrapped socket.
+
+
+
+
+ Invokes ConnectAsync method on the wrapped socket.
+
+ The instance containing the event data.
+ Result of original method.
+
+
+
+ Invokes SendAsync method on the wrapped socket.
+
+ The instance containing the event data.
+ Result of original method.
+
+
+
+ Invokes SendToAsync method on the wrapped socket.
+
+ The instance containing the event data.
+ Result of original method.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Sends messages over a TCP network connection.
+
+
+
+
+ Initializes a new instance of the class.
+
+ URL. Must start with tcp://.
+ The address family.
+
+
+
+ Creates the socket with given parameters.
+
+ The address family.
+ Type of the socket.
+ Type of the protocol.
+ Instance of which represents the socket.
+
+
+
+ Performs sender-specific initialization.
+
+
+
+
+ Closes the socket.
+
+ The continuation.
+
+
+
+ Performs sender-specific flush.
+
+ The continuation.
+
+
+
+ Sends the specified text over the connected socket.
+
+ The bytes to be sent.
+ Offset in buffer.
+ Number of bytes to send.
+ The async continuation to be invoked after the buffer has been sent.
+ To be overridden in inheriting classes.
+
+
+
+ Facilitates mocking of class.
+
+
+
+
+ Raises the Completed event.
+
+
+
+
+ Sends messages over the network as UDP datagrams.
+
+
+
+
+ Initializes a new instance of the class.
+
+ URL. Must start with udp://.
+ The address family.
+
+
+
+ Creates the socket.
+
+ The address family.
+ Type of the socket.
+ Type of the protocol.
+ Implementation of to use.
+
+
+
+ Performs sender-specific initialization.
+
+
+
+
+ Closes the socket.
+
+ The continuation.
+
+
+
+ Sends the specified text as a UDP datagram.
+
+ The bytes to be sent.
+ Offset in buffer.
+ Number of bytes to send.
+ The async continuation to be invoked after the buffer has been sent.
+ To be overridden in inheriting classes.
+
+
+
+ Scans (breadth-first) the object graph following all the edges whose are
+ instances have attached and returns
+ all objects implementing a specified interfaces.
+
+
+
+
+ Finds the objects which have attached which are reachable
+ from any of the given root objects when traversing the object graph over public properties.
+
+ Type of the objects to return.
+ The root objects.
+ Ordered list of objects implementing T.
+
+
+
+ Parameter validation utilities.
+
+
+
+
+ Asserts that the value is not null and throws otherwise.
+
+ The value to check.
+ Name of the parameter.
+
+
+
+ Detects the platform the NLog is running on.
+
+
+
+
+ Gets the current runtime OS.
+
+
+
+
+ Gets a value indicating whether current OS is a desktop version of Windows.
+
+
+
+
+ Gets a value indicating whether current OS is Win32-based (desktop or mobile).
+
+
+
+
+ Gets a value indicating whether current OS is Unix-based.
+
+
+
+
+ Portable implementation of .
+
+
+
+
+ Gets the information about a file.
+
+ Name of the file.
+ The file handle.
+ The last write time of the file.
+ Length of the file.
+
+ A value of true if file information was retrieved successfully, false otherwise.
+
+
+
+
+ Portable implementation of .
+
+
+
+
+ Returns details about current process and thread in a portable manner.
+
+
+
+
+ Initializes static members of the ThreadIDHelper class.
+
+
+
+
+ Gets the singleton instance of PortableThreadIDHelper or
+ Win32ThreadIDHelper depending on runtime environment.
+
+ The instance.
+
+
+
+ Gets current thread ID.
+
+
+
+
+ Gets current process ID.
+
+
+
+
+ Gets current process name.
+
+
+
+
+ Gets current process name (excluding filename extension, if any).
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets the name of the process.
+
+
+
+
+ Gets current thread ID.
+
+
+
+
+
+ Gets current process ID.
+
+
+
+
+
+ Gets current process name.
+
+
+
+
+
+ Gets current process name (excluding filename extension, if any).
+
+
+
+
+
+ Reflection helpers for accessing properties.
+
+
+
+
+ Reflection helpers.
+
+
+
+
+ Gets all usable exported types from the given assembly.
+
+ Assembly to scan.
+ Usable types from the given assembly.
+ Types which cannot be loaded are skipped.
+
+
+
+ Supported operating systems.
+
+
+ If you add anything here, make sure to add the appropriate detection
+ code to
+
+
+
+
+ Any operating system.
+
+
+
+
+ Unix/Linux operating systems.
+
+
+
+
+ Windows CE.
+
+
+
+
+ Desktop versions of Windows (95,98,ME).
+
+
+
+
+ Windows NT, 2000, 2003 and future versions based on NT technology.
+
+
+
+
+ Unknown operating system.
+
+
+
+
+ Simple character tokenizer.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The text to be tokenized.
+
+
+
+ Implements a single-call guard around given continuation function.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The asynchronous continuation.
+
+
+
+ Continuation function which implements the single-call guard.
+
+ The exception.
+
+
+
+ Provides helpers to sort log events and associated continuations.
+
+
+
+
+ Performs bucket sort (group by) on an array of items and returns a dictionary for easy traversal of the result set.
+
+ The type of the value.
+ The type of the key.
+ The inputs.
+ The key selector function.
+
+ Dictonary where keys are unique input keys, and values are lists of .
+
+
+
+
+ Key selector delegate.
+
+ The type of the value.
+ The type of the key.
+ Value to extract key information from.
+ Key selected from log event.
+
+
+
+ Utilities for dealing with values.
+
+
+
+
+ Represents target with a chain of filters which determine
+ whether logging should happen.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The target.
+ The filter chain.
+
+
+
+ Gets the stack trace usage.
+
+ A value that determines stack trace handling.
+
+
+
+ Gets the target.
+
+ The target.
+
+
+
+ Gets the filter chain.
+
+ The filter chain.
+
+
+
+ Gets or sets the next item in the chain.
+
+ The next item in the chain.
+
+
+
+ Helper for dealing with thread-local storage.
+
+
+
+
+ Allocates the data slot for storing thread-local information.
+
+ Allocated slot key.
+
+
+
+ Gets the data for a slot in thread-local storage.
+
+ Type of the data.
+ The slot to get data for.
+
+ Slot data (will create T if null).
+
+
+
+
+ Wraps with a timeout.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The asynchronous continuation.
+ The timeout.
+
+
+
+ Continuation function which implements the timeout logic.
+
+ The exception.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ URL Encoding helper.
+
+
+
+
+ Win32-optimized implementation of .
+
+
+
+
+ Gets the information about a file.
+
+ Name of the file.
+ The file handle.
+ The last write time of the file.
+ Length of the file.
+
+ A value of true if file information was retrieved successfully, false otherwise.
+
+
+
+
+ Win32-optimized implementation of .
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets current thread ID.
+
+
+
+
+
+ Gets current process ID.
+
+
+
+
+
+ Gets current process name.
+
+
+
+
+
+ Gets current process name (excluding filename extension, if any).
+
+
+
+
+
+ Designates a property of the class as an ambient property.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Ambient property name.
+
+
+
+ ASP Application variable.
+
+
+
+
+ Render environmental information related to logging events.
+
+
+
+
+ Returns a that represents this instance.
+
+
+ A that represents this instance.
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Renders the the value of layout renderer in the context of the specified log event.
+
+ The log event.
+ String representation of a layout renderer.
+
+
+
+ Initializes this instance.
+
+ The configuration.
+
+
+
+ Closes this instance.
+
+
+
+
+ Initializes this instance.
+
+ The configuration.
+
+
+
+ Closes this instance.
+
+
+
+
+ Renders the specified environmental information and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Initializes the layout renderer.
+
+
+
+
+ Closes the layout renderer.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources.
+
+ True to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Gets the logging configuration this target is part of.
+
+
+
+
+ Renders the specified ASP Application variable and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the ASP Application variable name.
+
+
+
+
+
+ ASP Request variable.
+
+
+
+
+ Renders the specified ASP Request variable and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the item name. The QueryString, Form, Cookies, or ServerVariables collection variables having the specified name are rendered.
+
+
+
+
+
+ Gets or sets the QueryString variable to be rendered.
+
+
+
+
+
+ Gets or sets the form variable to be rendered.
+
+
+
+
+
+ Gets or sets the cookie to be rendered.
+
+
+
+
+
+ Gets or sets the ServerVariables item to be rendered.
+
+
+
+
+
+ ASP Session variable.
+
+
+
+
+ Renders the specified ASP Session variable and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the session variable name.
+
+
+
+
+
+ Assembly version.
+
+
+
+
+ Renders assembly version and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ The current application domain's base directory.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the application base directory and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the name of the file to be Path.Combine()'d with with the base directory.
+
+
+
+
+
+ Gets or sets the name of the directory to be Path.Combine()'d with with the base directory.
+
+
+
+
+
+ The call site (class name, method name and source information).
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the call site and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets a value indicating whether to render the class name.
+
+
+
+
+
+ Gets or sets a value indicating whether to render the method name.
+
+
+
+
+
+ Gets or sets a value indicating whether the method name will be cleaned up if it is detected as an anonymous delegate.
+
+
+
+
+
+ Gets or sets the number of frames to skip.
+
+
+
+
+ Gets or sets a value indicating whether to render the source file name and line number.
+
+
+
+
+
+ Gets or sets a value indicating whether to include source file path.
+
+
+
+
+
+ Gets the level of stack trace information required by the implementing class.
+
+
+
+
+ A counter value (increases on each layout rendering).
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the specified counter value and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the initial value of the counter.
+
+
+
+
+
+ Gets or sets the value to be added to the counter after each layout rendering.
+
+
+
+
+
+ Gets or sets the name of the sequence. Different named sequences can have individual values.
+
+
+
+
+
+ Current date and time.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the current date and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the culture used for rendering.
+
+
+
+
+
+ Gets or sets the date format. Can be any argument accepted by DateTime.ToString(format).
+
+
+
+
+
+ Gets or sets a value indicating whether to output UTC time instead of local time.
+
+
+
+
+
+ The environment variable.
+
+
+
+
+ Renders the specified environment variable and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the name of the environment variable.
+
+
+
+
+
+ Log event context data.
+
+
+
+
+ Renders the specified log event context item and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the name of the item.
+
+
+
+
+
+ Log event context data.
+
+
+
+
+ Renders the specified log event context item and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the name of the item.
+
+
+
+
+
+ Exception information provided through
+ a call to one of the Logger.*Exception() methods.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the specified exception information and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the format of the output. Must be a comma-separated list of exception
+ properties: Message, Type, ShortType, ToString, Method, StackTrace.
+ This parameter value is case-insensitive.
+
+
+
+
+
+ Gets or sets the format of the output of inner exceptions. Must be a comma-separated list of exception
+ properties: Message, Type, ShortType, ToString, Method, StackTrace.
+ This parameter value is case-insensitive.
+
+
+
+
+
+ Gets or sets the separator used to concatenate parts specified in the Format.
+
+
+
+
+
+ Gets or sets the maximum number of inner exceptions to include in the output.
+ By default inner exceptions are not enabled for compatibility with NLog 1.0.
+
+
+
+
+
+ Gets or sets the separator between inner exceptions.
+
+
+
+
+
+ Renders contents of the specified file.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the contents of the specified file and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the name of the file.
+
+
+
+
+
+ Gets or sets the encoding used in the file.
+
+ The encoding.
+
+
+
+
+ The information about the garbage collector.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the selected process information.
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the property to retrieve.
+
+
+
+
+
+ Gets or sets the property of System.GC to retrieve.
+
+
+
+
+ Total memory allocated.
+
+
+
+
+ Total memory allocated (perform full garbage collection first).
+
+
+
+
+ Gets the number of Gen0 collections.
+
+
+
+
+ Gets the number of Gen1 collections.
+
+
+
+
+ Gets the number of Gen2 collections.
+
+
+
+
+ Maximum generation number supported by GC.
+
+
+
+
+ Global Diagnostics Context item. Provided for compatibility with log4net.
+
+
+
+
+ Renders the specified Global Diagnostics Context item and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the name of the item.
+
+
+
+
+
+ Globally-unique identifier (GUID).
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders a newly generated GUID string and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the GUID format as accepted by Guid.ToString() method.
+
+
+
+
+
+ Thread identity information (name and authentication information).
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the specified identity information and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the separator to be used when concatenating
+ parts of identity information.
+
+
+
+
+
+ Gets or sets a value indicating whether to render Thread.CurrentPrincipal.Identity.Name.
+
+
+
+
+
+ Gets or sets a value indicating whether to render Thread.CurrentPrincipal.Identity.AuthenticationType.
+
+
+
+
+
+ Gets or sets a value indicating whether to render Thread.CurrentPrincipal.Identity.IsAuthenticated.
+
+
+
+
+
+ Installation parameter (passed to InstallNLogConfig).
+
+
+
+
+ Renders the specified installation parameter and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the name of the parameter.
+
+
+
+
+
+ Marks class as a layout renderer and assigns a format string to it.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the layout renderer.
+
+
+
+ The log level.
+
+
+
+
+ Renders the current log level and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ A string literal.
+
+
+ This is used to escape '${' sequence
+ as ;${literal:text=${}'
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The literal text value.
+ This is used by the layout compiler.
+
+
+
+ Renders the specified string literal and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the literal text.
+
+
+
+
+
+ XML event description compatible with log4j, Chainsaw and NLogViewer.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the XML logging event and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets a value indicating whether to include NLog-specific extensions to log4j schema.
+
+
+
+
+
+ Gets or sets a value indicating whether the XML should use spaces for indentation.
+
+
+
+
+
+ Gets or sets the AppInfo field. By default it's the friendly name of the current AppDomain.
+
+
+
+
+
+ Gets or sets a value indicating whether to include call site (class and method name) in the information sent over the network.
+
+
+
+
+
+ Gets or sets a value indicating whether to include source info (file name and line number) in the information sent over the network.
+
+
+
+
+
+ Gets or sets a value indicating whether to include contents of the dictionary.
+
+
+
+
+
+ Gets or sets a value indicating whether to include contents of the stack.
+
+
+
+
+
+ Gets or sets the NDC item separator.
+
+
+
+
+
+ Gets the level of stack trace information required by the implementing class.
+
+
+
+
+ The logger name.
+
+
+
+
+ Renders the logger name and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets a value indicating whether to render short logger name (the part after the trailing dot character).
+
+
+
+
+
+ The date and time in a long, sortable format yyyy-MM-dd HH:mm:ss.mmm.
+
+
+
+
+ Renders the date in the long format (yyyy-MM-dd HH:mm:ss.mmm) and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets a value indicating whether to output UTC time instead of local time.
+
+
+
+
+
+ The machine name that the process is running on.
+
+
+
+
+ Initializes the layout renderer.
+
+
+
+
+ Renders the machine name and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Mapped Diagnostic Context item. Provided for compatibility with log4net.
+
+
+
+
+ Renders the specified MDC item and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the name of the item.
+
+
+
+
+
+ The formatted log message.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the log message including any positional parameters and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets a value indicating whether to log exception along with message.
+
+
+
+
+
+ Gets or sets the string that separates message from the exception.
+
+
+
+
+
+ Nested Diagnostic Context item. Provided for compatibility with log4net.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the specified Nested Diagnostics Context item and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the number of top stack frames to be rendered.
+
+
+
+
+
+ Gets or sets the number of bottom stack frames to be rendered.
+
+
+
+
+
+ Gets or sets the separator to be used for concatenating nested diagnostics context output.
+
+
+
+
+
+ A newline literal.
+
+
+
+
+ Renders the specified string literal and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ The directory where NLog.dll is located.
+
+
+
+
+ Initializes static members of the NLogDirLayoutRenderer class.
+
+
+
+
+ Renders the directory where NLog is located and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the name of the file to be Path.Combine()'d with the directory name.
+
+
+
+
+
+ Gets or sets the name of the directory to be Path.Combine()'d with the directory name.
+
+
+
+
+
+ The performance counter.
+
+
+
+
+ Initializes the layout renderer.
+
+
+
+
+ Closes the layout renderer.
+
+
+
+
+ Renders the specified environment variable and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the name of the counter category.
+
+
+
+
+
+ Gets or sets the name of the performance counter.
+
+
+
+
+
+ Gets or sets the name of the performance counter instance (e.g. this.Global_).
+
+
+
+
+
+ Gets or sets the name of the machine to read the performance counter from.
+
+
+
+
+
+ The identifier of the current process.
+
+
+
+
+ Renders the current process ID.
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ The information about the running process.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes the layout renderer.
+
+
+
+
+ Closes the layout renderer.
+
+
+
+
+ Renders the selected process information.
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the property to retrieve.
+
+
+
+
+
+ Property of System.Diagnostics.Process to retrieve.
+
+
+
+
+ Base Priority.
+
+
+
+
+ Exit Code.
+
+
+
+
+ Exit Time.
+
+
+
+
+ Process Handle.
+
+
+
+
+ Handle Count.
+
+
+
+
+ Whether process has exited.
+
+
+
+
+ Process ID.
+
+
+
+
+ Machine name.
+
+
+
+
+ Handle of the main window.
+
+
+
+
+ Title of the main window.
+
+
+
+
+ Maximum Working Set.
+
+
+
+
+ Minimum Working Set.
+
+
+
+
+ Non-paged System Memory Size.
+
+
+
+
+ Non-paged System Memory Size (64-bit).
+
+
+
+
+ Paged Memory Size.
+
+
+
+
+ Paged Memory Size (64-bit)..
+
+
+
+
+ Paged System Memory Size.
+
+
+
+
+ Paged System Memory Size (64-bit).
+
+
+
+
+ Peak Paged Memory Size.
+
+
+
+
+ Peak Paged Memory Size (64-bit).
+
+
+
+
+ Peak Vitual Memory Size.
+
+
+
+
+ Peak Virtual Memory Size (64-bit)..
+
+
+
+
+ Peak Working Set Size.
+
+
+
+
+ Peak Working Set Size (64-bit).
+
+
+
+
+ Whether priority boost is enabled.
+
+
+
+
+ Priority Class.
+
+
+
+
+ Private Memory Size.
+
+
+
+
+ Private Memory Size (64-bit).
+
+
+
+
+ Privileged Processor Time.
+
+
+
+
+ Process Name.
+
+
+
+
+ Whether process is responding.
+
+
+
+
+ Session ID.
+
+
+
+
+ Process Start Time.
+
+
+
+
+ Total Processor Time.
+
+
+
+
+ User Processor Time.
+
+
+
+
+ Virtual Memory Size.
+
+
+
+
+ Virtual Memory Size (64-bit).
+
+
+
+
+ Working Set Size.
+
+
+
+
+ Working Set Size (64-bit).
+
+
+
+
+ The name of the current process.
+
+
+
+
+ Renders the current process name (optionally with a full path).
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets a value indicating whether to write the full path to the process executable.
+
+
+
+
+
+ The process time in format HH:mm:ss.mmm.
+
+
+
+
+ Renders the current process running time and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ High precision timer, based on the value returned from QueryPerformanceCounter() optionally converted to seconds.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes the layout renderer.
+
+
+
+
+ Renders the ticks value of current time and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets a value indicating whether to normalize the result by subtracting
+ it from the result of the first call (so that it's effectively zero-based).
+
+
+
+
+
+ Gets or sets a value indicating whether to output the difference between the result
+ of QueryPerformanceCounter and the previous one.
+
+
+
+
+
+ Gets or sets a value indicating whether to convert the result to seconds by dividing
+ by the result of QueryPerformanceFrequency().
+
+
+
+
+
+ Gets or sets the number of decimal digits to be included in output.
+
+
+
+
+
+ Gets or sets a value indicating whether to align decimal point (emit non-significant zeros).
+
+
+
+
+
+ A value from the Registry.
+
+
+
+
+ Reads the specified registry key and value and appends it to
+ the passed .
+
+ The to append the rendered data to.
+ Logging event. Ignored.
+
+
+
+ Gets or sets the registry value name.
+
+
+
+
+
+ Gets or sets the value to be output when the specified registry key or value is not found.
+
+
+
+
+
+ Gets or sets the registry key.
+
+
+ Must have one of the forms:
+
+
HKLM\Key\Full\Name
+
HKEY_LOCAL_MACHINE\Key\Full\Name
+
HKCU\Key\Full\Name
+
HKEY_CURRENT_USER\Key\Full\Name
+
+
+
+
+
+
+ The short date in a sortable format yyyy-MM-dd.
+
+
+
+
+ Renders the current short date string (yyyy-MM-dd) and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets a value indicating whether to output UTC time instead of local time.
+
+
+
+
+
+ System special folder path (includes My Documents, My Music, Program Files, Desktop, and more).
+
+
+
+
+ Renders the directory where NLog is located and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the system special folder to use.
+
+
+ Full list of options is available at MSDN.
+ The most common ones are:
+
+
ApplicationData - roaming application data for current user.
+
CommonApplicationData - application data for all users.
+
MyDocuments - My Documents
+
DesktopDirectory - Desktop directory
+
LocalApplicationData - non roaming application data
+
Personal - user profile directory
+
System - System directory
+
+
+
+
+
+
+ Gets or sets the name of the file to be Path.Combine()'d with the directory name.
+
+
+
+
+
+ Gets or sets the name of the directory to be Path.Combine()'d with the directory name.
+
+
+
+
+
+ Format of the ${stacktrace} layout renderer output.
+
+
+
+
+ Raw format (multiline - as returned by StackFrame.ToString() method).
+
+
+
+
+ Flat format (class and method names displayed in a single line).
+
+
+
+
+ Detailed flat format (method signatures displayed in a single line).
+
+
+
+
+ Stack trace renderer.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the call site and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the output format of the stack trace.
+
+
+
+
+
+ Gets or sets the number of top stack frames to be rendered.
+
+
+
+
+
+ Gets or sets the stack frame separator string.
+
+
+
+
+
+ Gets the level of stack trace information required by the implementing class.
+
+
+
+
+
+ A temporary directory.
+
+
+
+
+ Renders the directory where NLog is located and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets the name of the file to be Path.Combine()'d with the directory name.
+
+
+
+
+
+ Gets or sets the name of the directory to be Path.Combine()'d with the directory name.
+
+
+
+
+
+ The identifier of the current thread.
+
+
+
+
+ Renders the current thread identifier and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ The name of the current thread.
+
+
+
+
+ Renders the current thread name and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ The Ticks value of current date and time.
+
+
+
+
+ Renders the ticks value of current time and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ The time in a 24-hour, sortable format HH:mm:ss.mmm.
+
+
+
+
+ Renders time in the 24-h format (HH:mm:ss.mmm) and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets a value indicating whether to output UTC time instead of local time.
+
+
+
+
+
+ Thread Windows identity information (username).
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the current thread windows identity information and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Gets or sets a value indicating whether domain name should be included.
+
+
+
+
+
+ Gets or sets a value indicating whether username should be included.
+
+
+
+
+
+ Applies caching to another layout output.
+
+
+ The value of the inner layout will be rendered only once and reused subsequently.
+
+
+
+
+ Decodes text "encrypted" with ROT-13.
+
+
+ See http://en.wikipedia.org/wiki/ROT13.
+
+
+
+
+ Renders the inner message, processes it and appends it to the specified .
+
+ The to append the rendered data to.
+ Logging event.
+
+
+
+ Transforms the output of another layout.
+
+ Output to be transform.
+ Transformed text.
+
+
+
+ Renders the inner layout contents.
+
+ The log event.
+ Contents of inner layout.
+
+
+
+ Gets or sets the wrapped layout.
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes the layout renderer.
+
+
+
+
+ Closes the layout renderer.
+
+
+
+
+ Transforms the output of another layout.
+
+ Output to be transform.
+ Transformed text.
+
+
+
+ Renders the inner layout contents.
+
+ The log event.
+ Contents of inner layout.
+
+
+
+ Gets or sets a value indicating whether this is enabled.
+
+
+
+
+
+ Filters characters not allowed in the file names by replacing them with safe character.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Post-processes the rendered message.
+
+ The text to be post-processed.
+ Padded and trimmed string.
+
+
+
+ Gets or sets a value indicating whether to modify the output of this renderer so it can be used as a part of file path
+ (illegal characters are replaced with '_').
+
+
+
+
+
+ Escapes output of another layout using JSON rules.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Post-processes the rendered message.
+
+ The text to be post-processed.
+ JSON-encoded string.
+
+
+
+ Gets or sets a value indicating whether to apply JSON encoding.
+
+
+
+
+
+ Converts the result of another layout output to lower case.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Post-processes the rendered message.
+
+ The text to be post-processed.
+ Padded and trimmed string.
+
+
+
+ Gets or sets a value indicating whether lower case conversion should be applied.
+
+ A value of true if lower case conversion should be applied; otherwise, false.
+
+
+
+
+ Gets or sets the culture used for rendering.
+
+
+
+
+
+ Only outputs the inner layout when exception has been defined for log message.
+
+
+
+
+ Transforms the output of another layout.
+
+ Output to be transform.
+ Transformed text.
+
+
+
+ Renders the inner layout contents.
+
+ The log event.
+
+ Contents of inner layout.
+
+
+
+
+ Applies padding to another layout output.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Transforms the output of another layout.
+
+ Output to be transform.
+ Transformed text.
+
+
+
+ Gets or sets the number of characters to pad the output to.
+
+
+ Positive padding values cause left padding, negative values
+ cause right padding to the desired width.
+
+
+
+
+
+ Gets or sets the padding character.
+
+
+
+
+
+ Gets or sets a value indicating whether to trim the
+ rendered text to the absolute value of the padding length.
+
+
+
+
+
+ Replaces a string in the output of another layout with another string.
+
+
+
+
+ Initializes the layout renderer.
+
+
+
+
+ Post-processes the rendered message.
+
+ The text to be post-processed.
+ Post-processed text.
+
+
+
+ Gets or sets the text to search for.
+
+ The text search for.
+
+
+
+
+ Gets or sets a value indicating whether regular expressions should be used.
+
+ A value of true if regular expressions should be used otherwise, false.
+
+
+
+
+ Gets or sets the replacement string.
+
+ The replacement string.
+
+
+
+
+ Gets or sets a value indicating whether to ignore case.
+
+ A value of true if case should be ignored when searching; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether to search for whole words.
+
+ A value of true if whole words should be searched for; otherwise, false.
+
+
+
+
+ Decodes text "encrypted" with ROT-13.
+
+
+ See http://en.wikipedia.org/wiki/ROT13.
+
+
+
+
+ Encodes/Decodes ROT-13-encoded string.
+
+ The string to be encoded/decoded.
+ Encoded/Decoded text.
+
+
+
+ Transforms the output of another layout.
+
+ Output to be transform.
+ Transformed text.
+
+
+
+ Gets or sets the layout to be wrapped.
+
+ The layout to be wrapped.
+ This variable is for backwards compatibility
+
+
+
+
+ Trims the whitespace from the result of another layout renderer.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Post-processes the rendered message.
+
+ The text to be post-processed.
+ Trimmed string.
+
+
+
+ Gets or sets a value indicating whether lower case conversion should be applied.
+
+ A value of true if lower case conversion should be applied; otherwise, false.
+
+
+
+
+ Converts the result of another layout output to upper case.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Post-processes the rendered message.
+
+ The text to be post-processed.
+ Padded and trimmed string.
+
+
+
+ Gets or sets a value indicating whether upper case conversion should be applied.
+
+ A value of true if upper case conversion should be applied otherwise, false.
+
+
+
+
+ Gets or sets the culture used for rendering.
+
+
+
+
+
+ Encodes the result of another layout output for use with URLs.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Transforms the output of another layout.
+
+ Output to be transform.
+ Transformed text.
+
+
+
+ Gets or sets a value indicating whether spaces should be translated to '+' or '%20'.
+
+ A value of true if space should be translated to '+'; otherwise, false.
+
+
+
+
+ Outputs alternative layout when the inner layout produces empty result.
+
+
+
+
+ Transforms the output of another layout.
+
+ Output to be transform.
+ Transformed text.
+
+
+
+ Renders the inner layout contents.
+
+ The log event.
+
+ Contents of inner layout.
+
+
+
+
+ Gets or sets the layout to be rendered when original layout produced empty result.
+
+
+
+
+
+ Only outputs the inner layout when the specified condition has been met.
+
+
+
+
+ Transforms the output of another layout.
+
+ Output to be transform.
+ Transformed text.
+
+
+
+ Renders the inner layout contents.
+
+ The log event.
+
+ Contents of inner layout.
+
+
+
+
+ Gets or sets the condition that must be met for the inner layout to be printed.
+
+
+
+
+
+ Converts the result of another layout output to be XML-compliant.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Post-processes the rendered message.
+
+ The text to be post-processed.
+ Padded and trimmed string.
+
+
+
+ Gets or sets a value indicating whether to apply XML encoding.
+
+
+
+
+
+ A column in the CSV.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The name of the column.
+ The layout of the column.
+
+
+
+ Gets or sets the name of the column.
+
+
+
+
+
+ Gets or sets the layout of the column.
+
+
+
+
+
+ Specifies allowed column delimiters.
+
+
+
+
+ Automatically detect from regional settings.
+
+
+
+
+ Comma (ASCII 44).
+
+
+
+
+ Semicolon (ASCII 59).
+
+
+
+
+ Tab character (ASCII 9).
+
+
+
+
+ Pipe character (ASCII 124).
+
+
+
+
+ Space character (ASCII 32).
+
+
+
+
+ Custom string, specified by the CustomDelimiter.
+
+
+
+
+ A specialized layout that renders CSV-formatted events.
+
+
+
+
+ A specialized layout that supports header and footer.
+
+
+
+
+ Abstract interface that layouts must implement.
+
+
+
+
+ Converts a given text to a .
+
+ Text to be converted.
+ object represented by the text.
+
+
+
+ Implicitly converts the specified string to a .
+
+ The layout string.
+ Instance of .
+
+
+
+ Implicitly converts the specified string to a .
+
+ The layout string.
+ The NLog factories to use when resolving layout renderers.
+ Instance of .
+
+
+
+ Precalculates the layout for the specified log event and stores the result
+ in per-log event cache.
+
+ The log event.
+
+ Calling this method enables you to store the log event in a buffer
+ and/or potentially evaluate it in another thread even though the
+ layout may contain thread-dependent renderer.
+
+
+
+
+ Renders the event info in layout.
+
+ The event info.
+ String representing log event.
+
+
+
+ Initializes this instance.
+
+ The configuration.
+
+
+
+ Closes this instance.
+
+
+
+
+ Initializes this instance.
+
+ The configuration.
+
+
+
+ Closes this instance.
+
+
+
+
+ Initializes the layout.
+
+
+
+
+ Closes the layout.
+
+
+
+
+ Renders the layout for the specified logging event by invoking layout renderers.
+
+ The logging event.
+ The rendered layout.
+
+
+
+ Gets a value indicating whether this layout is thread-agnostic (can be rendered on any thread).
+
+
+ Layout is thread-agnostic if it has been marked with [ThreadAgnostic] attribute and all its children are
+ like that as well.
+ Thread-agnostic layouts only use contents of for its output.
+
+
+
+
+ Gets the logging configuration this target is part of.
+
+
+
+
+ Renders the layout for the specified logging event by invoking layout renderers.
+
+ The logging event.
+ The rendered layout.
+
+
+
+ Gets or sets the body layout (can be repeated multiple times).
+
+
+
+
+
+ Gets or sets the header layout.
+
+
+
+
+
+ Gets or sets the footer layout.
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes the layout.
+
+
+
+
+ Formats the log event for write.
+
+ The log event to be formatted.
+ A string representation of the log event.
+
+
+
+ Gets the array of parameters to be passed.
+
+
+
+
+
+ Gets or sets a value indicating whether CVS should include header.
+
+ A value of true if CVS should include header; otherwise, false.
+
+
+
+
+ Gets or sets the column delimiter.
+
+
+
+
+
+ Gets or sets the quoting mode.
+
+
+
+
+
+ Gets or sets the quote Character.
+
+
+
+
+
+ Gets or sets the custom column delimiter value (valid when ColumnDelimiter is set to 'Custom').
+
+
+
+
+
+ Header for CSV layout.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The parent.
+
+
+
+ Renders the layout for the specified logging event by invoking layout renderers.
+
+ The logging event.
+ The rendered layout.
+
+
+
+ Specifies allowes CSV quoting modes.
+
+
+
+
+ Quote all column.
+
+
+
+
+ Quote nothing.
+
+
+
+
+ Quote only whose values contain the quote symbol or
+ the separator.
+
+
+
+
+ Marks class as a layout renderer and assigns a format string to it.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Layout name.
+
+
+
+ Parses layout strings.
+
+
+
+
+ A specialized layout that renders Log4j-compatible XML events.
+
+
+ This layout is not meant to be used explicitly. Instead you can use ${log4jxmlevent} layout renderer.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Renders the layout for the specified logging event by invoking layout renderers.
+
+ The logging event.
+ The rendered layout.
+
+
+
+ Gets the instance that renders log events.
+
+
+
+
+ Represents a string with embedded placeholders that can render contextual information.
+
+
+ This layout is not meant to be used explicitly. Instead you can just use a string containing layout
+ renderers everywhere the layout is required.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The layout string to parse.
+
+
+
+ Initializes a new instance of the class.
+
+ The layout string to parse.
+ The NLog factories to use when creating references to layout renderers.
+
+
+
+ Converts a text to a simple layout.
+
+ Text to be converted.
+ A object.
+
+
+
+ Escapes the passed text so that it can
+ be used literally in all places where
+ layout is normally expected without being
+ treated as layout.
+
+ The text to be escaped.
+ The escaped text.
+
+ Escaping is done by replacing all occurences of
+ '${' with '${literal:text=${}'
+
+
+
+
+ Evaluates the specified text by expadinging all layout renderers.
+
+ The text to be evaluated.
+ Log event to be used for evaluation.
+ The input text with all occurences of ${} replaced with
+ values provided by the appropriate layout renderers.
+
+
+
+ Evaluates the specified text by expadinging all layout renderers
+ in new context.
+
+ The text to be evaluated.
+ The input text with all occurences of ${} replaced with
+ values provided by the appropriate layout renderers.
+
+
+
+ Returns a that represents the current object.
+
+
+ A that represents the current object.
+
+
+
+
+ Renders the layout for the specified logging event by invoking layout renderers
+ that make up the event.
+
+ The logging event.
+ The rendered layout.
+
+
+
+ Gets or sets the layout text.
+
+
+
+
+
+ Gets a collection of objects that make up this layout.
+
+
+
+
+ Represents the logging event.
+
+
+
+
+ Gets the date of the first log event created.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Log level.
+ Logger name.
+ Log message including parameter placeholders.
+
+
+
+ Initializes a new instance of the class.
+
+ Log level.
+ Logger name.
+ An IFormatProvider that supplies culture-specific formatting information.
+ Log message including parameter placeholders.
+ Parameter array.
+
+
+
+ Initializes a new instance of the class.
+
+ Log level.
+ Logger name.
+ An IFormatProvider that supplies culture-specific formatting information.
+ Log message including parameter placeholders.
+ Parameter array.
+ Exception information.
+
+
+
+ Creates the null event.
+
+ Null log event.
+
+
+
+ Creates the log event.
+
+ The log level.
+ Name of the logger.
+ The message.
+ Instance of .
+
+
+
+ Creates the log event.
+
+ The log level.
+ Name of the logger.
+ The format provider.
+ The message.
+ The parameters.
+ Instance of .
+
+
+
+ Creates the log event.
+
+ The log level.
+ Name of the logger.
+ The format provider.
+ The message.
+ Instance of .
+
+
+
+ Creates the log event.
+
+ The log level.
+ Name of the logger.
+ The message.
+ The exception.
+ Instance of .
+
+
+
+ Creates from this by attaching the specified asynchronous continuation.
+
+ The asynchronous continuation.
+ Instance of with attached continuation.
+
+
+
+ Returns a string representation of this log event.
+
+ String representation of the log event.
+
+
+
+ Sets the stack trace for the event info.
+
+ The stack trace.
+ Index of the first user stack frame within the stack trace.
+
+
+
+ Gets the unique identifier of log event which is automatically generated
+ and monotonously increasing.
+
+
+
+
+ Gets or sets the timestamp of the logging event.
+
+
+
+
+ Gets or sets the level of the logging event.
+
+
+
+
+ Gets a value indicating whether stack trace has been set for this event.
+
+
+
+
+ Gets the stack frame of the method that did the logging.
+
+
+
+
+ Gets the number index of the stack frame that represents the user
+ code (not the NLog code).
+
+
+
+
+ Gets the entire stack trace.
+
+
+
+
+ Gets or sets the exception information.
+
+
+
+
+ Gets or sets the logger name.
+
+
+
+
+ Gets the logger short name.
+
+
+
+
+ Gets or sets the log message including any parameter placeholders.
+
+
+
+
+ Gets or sets the parameter values or null if no parameters have been specified.
+
+
+
+
+ Gets or sets the format provider that was provided while logging or
+ when no formatProvider was specified.
+
+
+
+
+ Gets the formatted message.
+
+
+
+
+ Gets the dictionary of per-event context properties.
+
+
+
+
+ Gets the dictionary of per-event context properties.
+
+
+
+
+ Creates and manages instances of objects.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The config.
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Creates a logger that discards all log messages.
+
+ Null logger instance.
+
+
+
+ Gets the logger named after the currently-being-initialized class.
+
+ The logger.
+ This is a slow-running method.
+ Make sure you're not doing this in a loop.
+
+
+
+ Gets the logger named after the currently-being-initialized class.
+
+ The type of the logger to create. The type must inherit from NLog.Logger.
+ The logger.
+ This is a slow-running method.
+ Make sure you're not doing this in a loop.
+
+
+
+ Gets the specified named logger.
+
+ Name of the logger.
+ The logger reference. Multiple calls to GetLogger with the same argument aren't guaranteed to return the same logger reference.
+
+
+
+ Gets the specified named logger.
+
+ Name of the logger.
+ The type of the logger to create. The type must inherit from NLog.Logger.
+ The logger reference. Multiple calls to GetLogger with the
+ same argument aren't guaranteed to return the same logger reference.
+
+
+
+ Loops through all loggers previously returned by GetLogger
+ and recalculates their target and filter list. Useful after modifying the configuration programmatically
+ to ensure that all loggers have been properly configured.
+
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+ Maximum time to allow for the flush. Any messages after that time will be discarded.
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+ Maximum time to allow for the flush. Any messages after that time will be discarded.
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+ The asynchronous continuation.
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+ The asynchronous continuation.
+ Maximum time to allow for the flush. Any messages after that time will be discarded.
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+ The asynchronous continuation.
+ Maximum time to allow for the flush. Any messages after that time will be discarded.
+
+
+ Decreases the log enable counter and if it reaches -1
+ the logs are disabled.
+ Logging is enabled if the number of calls is greater
+ than or equal to calls.
+ An object that iplements IDisposable whose Dispose() method
+ reenables logging. To be used with C# using () statement.
+
+
+ Increases the log enable counter and if it reaches 0 the logs are disabled.
+ Logging is enabled if the number of calls is greater
+ than or equal to calls.
+
+
+
+ Returns if logging is currently enabled.
+
+ A value of if logging is currently enabled,
+ otherwise.
+ Logging is enabled if the number of calls is greater
+ than or equal to calls.
+
+
+
+ Releases unmanaged and - optionally - managed resources.
+
+ True to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Occurs when logging changes.
+
+
+
+
+ Occurs when logging gets reloaded.
+
+
+
+
+ Gets the current .
+
+
+
+
+ Gets or sets a value indicating whether exceptions should be thrown.
+
+ A value of true if exceptiosn should be thrown; otherwise, false.
+ By default exceptions
+ are not thrown under any circumstances.
+
+
+
+
+ Gets or sets the current logging configuration.
+
+
+
+
+ Gets or sets the global log threshold. Log events below this threshold are not logged.
+
+
+
+
+ Logger cache key.
+
+
+
+
+ Serves as a hash function for a particular type.
+
+
+ A hash code for the current .
+
+
+
+
+ Determines if two objects are equal in value.
+
+ Other object to compare to.
+ True if objects are equal, false otherwise.
+
+
+
+ Enables logging in implementation.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The factory.
+
+
+
+ Enables logging.
+
+
+
+
+ Specialized LogFactory that can return instances of custom logger types.
+
+ The type of the logger to be returned. Must inherit from .
+
+
+
+ Gets the logger.
+
+ The logger name.
+ An instance of .
+
+
+
+ Gets the logger named after the currently-being-initialized class.
+
+ The logger.
+ This is a slow-running method.
+ Make sure you're not doing this in a loop.
+
+
+
+ Provides logging interface and utility functions.
+
+
+ Auto-generated Logger members for binary compatibility with NLog 1.0.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets a value indicating whether logging is enabled for the specified level.
+
+ Log level to be checked.
+ A value of if logging is enabled for the specified level, otherwise it returns .
+
+
+
+ Writes the specified diagnostic message.
+
+ Log event.
+
+
+
+ Writes the specified diagnostic message.
+
+ The name of the type that wraps Logger.
+ Log event.
+
+
+
+ Writes the diagnostic message at the specified level using the specified format provider and format parameters.
+
+
+ Writes the diagnostic message at the specified level.
+
+ Type of the value.
+ The log level.
+ The value to be written.
+
+
+
+ Writes the diagnostic message at the specified level.
+
+ Type of the value.
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ The value to be written.
+
+
+
+ Writes the diagnostic message at the specified level.
+
+ The log level.
+ A function returning message to be written. Function is not evaluated if logging is not enabled.
+
+
+
+ Writes the diagnostic message and exception at the specified level.
+
+ The log level.
+ A to be written.
+ An exception to be logged.
+
+
+
+ Writes the diagnostic message at the specified level using the specified parameters and formatting them with the supplied format provider.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing format items.
+ Arguments to format.
+
+
+
+ Writes the diagnostic message at the specified level.
+
+ The log level.
+ Log message.
+
+
+
+ Writes the diagnostic message at the specified level using the specified parameters.
+
+ The log level.
+ A containing format items.
+ Arguments to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified parameter and formatting it with the supplied format provider.
+
+ The type of the argument.
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified parameter.
+
+ The type of the argument.
+ The log level.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified arguments formatting it with the supplied format provider.
+
+ The type of the first argument.
+ The type of the second argument.
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified parameters.
+
+ The type of the first argument.
+ The type of the second argument.
+ The log level.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified arguments formatting it with the supplied format provider.
+
+ The type of the first argument.
+ The type of the second argument.
+ The type of the third argument.
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+ The third argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified parameters.
+
+ The type of the first argument.
+ The type of the second argument.
+ The type of the third argument.
+ The log level.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+ The third argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified format provider and format parameters.
+
+
+ Writes the diagnostic message at the Trace level.
+
+ Type of the value.
+ The value to be written.
+
+
+
+ Writes the diagnostic message at the Trace level.
+
+ Type of the value.
+ An IFormatProvider that supplies culture-specific formatting information.
+ The value to be written.
+
+
+
+ Writes the diagnostic message at the Trace level.
+
+ A function returning message to be written. Function is not evaluated if logging is not enabled.
+
+
+
+ Writes the diagnostic message and exception at the Trace level.
+
+ A to be written.
+ An exception to be logged.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified parameters and formatting them with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing format items.
+ Arguments to format.
+
+
+
+ Writes the diagnostic message at the Trace level.
+
+ Log message.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified parameters.
+
+ A containing format items.
+ Arguments to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified parameter and formatting it with the supplied format provider.
+
+ The type of the argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified parameter.
+
+ The type of the argument.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified arguments formatting it with the supplied format provider.
+
+ The type of the first argument.
+ The type of the second argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified parameters.
+
+ The type of the first argument.
+ The type of the second argument.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified arguments formatting it with the supplied format provider.
+
+ The type of the first argument.
+ The type of the second argument.
+ The type of the third argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+ The third argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified parameters.
+
+ The type of the first argument.
+ The type of the second argument.
+ The type of the third argument.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+ The third argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified format provider and format parameters.
+
+
+ Writes the diagnostic message at the Debug level.
+
+ Type of the value.
+ The value to be written.
+
+
+
+ Writes the diagnostic message at the Debug level.
+
+ Type of the value.
+ An IFormatProvider that supplies culture-specific formatting information.
+ The value to be written.
+
+
+
+ Writes the diagnostic message at the Debug level.
+
+ A function returning message to be written. Function is not evaluated if logging is not enabled.
+
+
+
+ Writes the diagnostic message and exception at the Debug level.
+
+ A to be written.
+ An exception to be logged.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified parameters and formatting them with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing format items.
+ Arguments to format.
+
+
+
+ Writes the diagnostic message at the Debug level.
+
+ Log message.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified parameters.
+
+ A containing format items.
+ Arguments to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified parameter and formatting it with the supplied format provider.
+
+ The type of the argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified parameter.
+
+ The type of the argument.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified arguments formatting it with the supplied format provider.
+
+ The type of the first argument.
+ The type of the second argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified parameters.
+
+ The type of the first argument.
+ The type of the second argument.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified arguments formatting it with the supplied format provider.
+
+ The type of the first argument.
+ The type of the second argument.
+ The type of the third argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+ The third argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified parameters.
+
+ The type of the first argument.
+ The type of the second argument.
+ The type of the third argument.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+ The third argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified format provider and format parameters.
+
+
+ Writes the diagnostic message at the Info level.
+
+ Type of the value.
+ The value to be written.
+
+
+
+ Writes the diagnostic message at the Info level.
+
+ Type of the value.
+ An IFormatProvider that supplies culture-specific formatting information.
+ The value to be written.
+
+
+
+ Writes the diagnostic message at the Info level.
+
+ A function returning message to be written. Function is not evaluated if logging is not enabled.
+
+
+
+ Writes the diagnostic message and exception at the Info level.
+
+ A to be written.
+ An exception to be logged.
+
+
+
+ Writes the diagnostic message at the Info level using the specified parameters and formatting them with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing format items.
+ Arguments to format.
+
+
+
+ Writes the diagnostic message at the Info level.
+
+ Log message.
+
+
+
+ Writes the diagnostic message at the Info level using the specified parameters.
+
+ A containing format items.
+ Arguments to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified parameter and formatting it with the supplied format provider.
+
+ The type of the argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified parameter.
+
+ The type of the argument.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified arguments formatting it with the supplied format provider.
+
+ The type of the first argument.
+ The type of the second argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified parameters.
+
+ The type of the first argument.
+ The type of the second argument.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified arguments formatting it with the supplied format provider.
+
+ The type of the first argument.
+ The type of the second argument.
+ The type of the third argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+ The third argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified parameters.
+
+ The type of the first argument.
+ The type of the second argument.
+ The type of the third argument.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+ The third argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified format provider and format parameters.
+
+
+ Writes the diagnostic message at the Warn level.
+
+ Type of the value.
+ The value to be written.
+
+
+
+ Writes the diagnostic message at the Warn level.
+
+ Type of the value.
+ An IFormatProvider that supplies culture-specific formatting information.
+ The value to be written.
+
+
+
+ Writes the diagnostic message at the Warn level.
+
+ A function returning message to be written. Function is not evaluated if logging is not enabled.
+
+
+
+ Writes the diagnostic message and exception at the Warn level.
+
+ A to be written.
+ An exception to be logged.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified parameters and formatting them with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing format items.
+ Arguments to format.
+
+
+
+ Writes the diagnostic message at the Warn level.
+
+ Log message.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified parameters.
+
+ A containing format items.
+ Arguments to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified parameter and formatting it with the supplied format provider.
+
+ The type of the argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified parameter.
+
+ The type of the argument.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified arguments formatting it with the supplied format provider.
+
+ The type of the first argument.
+ The type of the second argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified parameters.
+
+ The type of the first argument.
+ The type of the second argument.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified arguments formatting it with the supplied format provider.
+
+ The type of the first argument.
+ The type of the second argument.
+ The type of the third argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+ The third argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified parameters.
+
+ The type of the first argument.
+ The type of the second argument.
+ The type of the third argument.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+ The third argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified format provider and format parameters.
+
+
+ Writes the diagnostic message at the Error level.
+
+ Type of the value.
+ The value to be written.
+
+
+
+ Writes the diagnostic message at the Error level.
+
+ Type of the value.
+ An IFormatProvider that supplies culture-specific formatting information.
+ The value to be written.
+
+
+
+ Writes the diagnostic message at the Error level.
+
+ A function returning message to be written. Function is not evaluated if logging is not enabled.
+
+
+
+ Writes the diagnostic message and exception at the Error level.
+
+ A to be written.
+ An exception to be logged.
+
+
+
+ Writes the diagnostic message at the Error level using the specified parameters and formatting them with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing format items.
+ Arguments to format.
+
+
+
+ Writes the diagnostic message at the Error level.
+
+ Log message.
+
+
+
+ Writes the diagnostic message at the Error level using the specified parameters.
+
+ A containing format items.
+ Arguments to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified parameter and formatting it with the supplied format provider.
+
+ The type of the argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified parameter.
+
+ The type of the argument.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified arguments formatting it with the supplied format provider.
+
+ The type of the first argument.
+ The type of the second argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified parameters.
+
+ The type of the first argument.
+ The type of the second argument.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified arguments formatting it with the supplied format provider.
+
+ The type of the first argument.
+ The type of the second argument.
+ The type of the third argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+ The third argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified parameters.
+
+ The type of the first argument.
+ The type of the second argument.
+ The type of the third argument.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+ The third argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified format provider and format parameters.
+
+
+ Writes the diagnostic message at the Fatal level.
+
+ Type of the value.
+ The value to be written.
+
+
+
+ Writes the diagnostic message at the Fatal level.
+
+ Type of the value.
+ An IFormatProvider that supplies culture-specific formatting information.
+ The value to be written.
+
+
+
+ Writes the diagnostic message at the Fatal level.
+
+ A function returning message to be written. Function is not evaluated if logging is not enabled.
+
+
+
+ Writes the diagnostic message and exception at the Fatal level.
+
+ A to be written.
+ An exception to be logged.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified parameters and formatting them with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing format items.
+ Arguments to format.
+
+
+
+ Writes the diagnostic message at the Fatal level.
+
+ Log message.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified parameters.
+
+ A containing format items.
+ Arguments to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified parameter and formatting it with the supplied format provider.
+
+ The type of the argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified parameter.
+
+ The type of the argument.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified arguments formatting it with the supplied format provider.
+
+ The type of the first argument.
+ The type of the second argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified parameters.
+
+ The type of the first argument.
+ The type of the second argument.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified arguments formatting it with the supplied format provider.
+
+ The type of the first argument.
+ The type of the second argument.
+ The type of the third argument.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+ The third argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified parameters.
+
+ The type of the first argument.
+ The type of the second argument.
+ The type of the third argument.
+ A containing one format item.
+ The first argument to format.
+ The second argument to format.
+ The third argument to format.
+
+
+
+ Writes the diagnostic message at the specified level.
+
+ The log level.
+ A to be written.
+
+
+
+ Writes the diagnostic message at the specified level.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A to be written.
+
+
+
+ Writes the diagnostic message at the specified level using the specified parameters.
+
+ The log level.
+ A containing format items.
+ First argument to format.
+ Second argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified parameters.
+
+ The log level.
+ A containing format items.
+ First argument to format.
+ Second argument to format.
+ Third argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter.
+
+ The log level.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter.
+
+ The log level.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter.
+
+ The log level.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter.
+
+ The log level.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter.
+
+ The log level.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter.
+
+ The log level.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter.
+
+ The log level.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter.
+
+ The log level.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter.
+
+ The log level.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter.
+
+ The log level.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter.
+
+ The log level.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter.
+
+ The log level.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ The log level.
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the specified level using the specified value as a parameter.
+
+ The log level.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Trace level.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified parameters.
+
+ A containing format items.
+ First argument to format.
+ Second argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified parameters.
+
+ A containing format items.
+ First argument to format.
+ Second argument to format.
+ Third argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Trace level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Debug level.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified parameters.
+
+ A containing format items.
+ First argument to format.
+ Second argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified parameters.
+
+ A containing format items.
+ First argument to format.
+ Second argument to format.
+ Third argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Debug level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Info level.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Info level using the specified parameters.
+
+ A containing format items.
+ First argument to format.
+ Second argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified parameters.
+
+ A containing format items.
+ First argument to format.
+ Second argument to format.
+ Third argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Info level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Warn level.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified parameters.
+
+ A containing format items.
+ First argument to format.
+ Second argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified parameters.
+
+ A containing format items.
+ First argument to format.
+ Second argument to format.
+ Third argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Warn level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Error level.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Error level using the specified parameters.
+
+ A containing format items.
+ First argument to format.
+ Second argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified parameters.
+
+ A containing format items.
+ First argument to format.
+ Second argument to format.
+ Third argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Error level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level.
+
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Fatal level.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A to be written.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified parameters.
+
+ A containing format items.
+ First argument to format.
+ Second argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified parameters.
+
+ A containing format items.
+ First argument to format.
+ Second argument to format.
+ Third argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter and formatting it with the supplied format provider.
+
+ An IFormatProvider that supplies culture-specific formatting information.
+ A containing one format item.
+ The argument to format.
+
+
+
+ Writes the diagnostic message at the Fatal level using the specified value as a parameter.
+
+ A containing one format item.
+ The argument to format.
+
+
+
+ Occurs when logger configuration changes.
+
+
+
+
+ Gets the name of the logger.
+
+
+
+
+ Gets the factory that created this logger.
+
+
+
+
+ Gets a value indicating whether logging is enabled for the Trace level.
+
+ A value of if logging is enabled for the Trace level, otherwise it returns .
+
+
+
+ Gets a value indicating whether logging is enabled for the Debug level.
+
+ A value of if logging is enabled for the Debug level, otherwise it returns .
+
+
+
+ Gets a value indicating whether logging is enabled for the Info level.
+
+ A value of if logging is enabled for the Info level, otherwise it returns .
+
+
+
+ Gets a value indicating whether logging is enabled for the Warn level.
+
+ A value of if logging is enabled for the Warn level, otherwise it returns .
+
+
+
+ Gets a value indicating whether logging is enabled for the Error level.
+
+ A value of if logging is enabled for the Error level, otherwise it returns .
+
+
+
+ Gets a value indicating whether logging is enabled for the Fatal level.
+
+ A value of if logging is enabled for the Fatal level, otherwise it returns .
+
+
+
+ Implementation of logging engine.
+
+
+
+
+ Gets the filter result.
+
+ The filter chain.
+ The log event.
+ The result of the filter.
+
+
+
+ Defines available log levels.
+
+
+
+
+ Trace log level.
+
+
+
+
+ Debug log level.
+
+
+
+
+ Info log level.
+
+
+
+
+ Warn log level.
+
+
+
+
+ Error log level.
+
+
+
+
+ Fatal log level.
+
+
+
+
+ Off log level.
+
+
+
+
+ Initializes a new instance of .
+
+ The log level name.
+ The log level ordinal number.
+
+
+
+ Compares two objects
+ and returns a value indicating whether
+ the first one is equal to the second one.
+
+ The first level.
+ The second level.
+ The value of level1.Ordinal == level2.Ordinal.
+
+
+
+ Compares two objects
+ and returns a value indicating whether
+ the first one is not equal to the second one.
+
+ The first level.
+ The second level.
+ The value of level1.Ordinal != level2.Ordinal.
+
+
+
+ Compares two objects
+ and returns a value indicating whether
+ the first one is greater than the second one.
+
+ The first level.
+ The second level.
+ The value of level1.Ordinal > level2.Ordinal.
+
+
+
+ Compares two objects
+ and returns a value indicating whether
+ the first one is greater than or equal to the second one.
+
+ The first level.
+ The second level.
+ The value of level1.Ordinal >= level2.Ordinal.
+
+
+
+ Compares two objects
+ and returns a value indicating whether
+ the first one is less than the second one.
+
+ The first level.
+ The second level.
+ The value of level1.Ordinal < level2.Ordinal.
+
+
+
+ Compares two objects
+ and returns a value indicating whether
+ the first one is less than or equal to the second one.
+
+ The first level.
+ The second level.
+ The value of level1.Ordinal <= level2.Ordinal.
+
+
+
+ Gets the that corresponds to the specified ordinal.
+
+ The ordinal.
+ The instance. For 0 it returns , 1 gives and so on.
+
+
+
+ Returns the that corresponds to the supplied .
+
+ The texual representation of the log level.
+ The enumeration value.
+
+
+
+ Returns a string representation of the log level.
+
+ Log level name.
+
+
+
+ Returns a hash code for this instance.
+
+
+ A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+
+
+
+
+ Determines whether the specified is equal to this instance.
+
+ The to compare with this instance.
+
+ Value of true if the specified is equal to this instance; otherwise, false.
+
+
+ The parameter is null.
+
+
+
+
+ Compares the level to the other object.
+
+
+ The object object.
+
+
+ A value less than zero when this logger's is
+ less than the other logger's ordinal, 0 when they are equal and
+ greater than zero when this ordinal is greater than the
+ other ordinal.
+
+
+
+
+ Gets the name of the log level.
+
+
+
+
+ Gets the ordinal of the log level.
+
+
+
+
+ Creates and manages instances of objects.
+
+
+
+
+ Initializes static members of the LogManager class.
+
+
+
+
+ Prevents a default instance of the LogManager class from being created.
+
+
+
+
+ Gets the logger named after the currently-being-initialized class.
+
+ The logger.
+ This is a slow-running method.
+ Make sure you're not doing this in a loop.
+
+
+
+ Gets the logger named after the currently-being-initialized class.
+
+ The logger class. The class must inherit from .
+ The logger.
+ This is a slow-running method.
+ Make sure you're not doing this in a loop.
+
+
+
+ Creates a logger that discards all log messages.
+
+ Null logger which discards all log messages.
+
+
+
+ Gets the specified named logger.
+
+ Name of the logger.
+ The logger reference. Multiple calls to GetLogger with the same argument aren't guaranteed to return the same logger reference.
+
+
+
+ Gets the specified named logger.
+
+ Name of the logger.
+ The logger class. The class must inherit from .
+ The logger reference. Multiple calls to GetLogger with the same argument aren't guaranteed to return the same logger reference.
+
+
+
+ Loops through all loggers previously returned by GetLogger.
+ and recalculates their target and filter list. Useful after modifying the configuration programmatically
+ to ensure that all loggers have been properly configured.
+
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+ Maximum time to allow for the flush. Any messages after that time will be discarded.
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+ Maximum time to allow for the flush. Any messages after that time will be discarded.
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+ The asynchronous continuation.
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+ The asynchronous continuation.
+ Maximum time to allow for the flush. Any messages after that time will be discarded.
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+ The asynchronous continuation.
+ Maximum time to allow for the flush. Any messages after that time will be discarded.
+
+
+ Decreases the log enable counter and if it reaches -1
+ the logs are disabled.
+ Logging is enabled if the number of calls is greater
+ than or equal to calls.
+ An object that iplements IDisposable whose Dispose() method
+ reenables logging. To be used with C# using () statement.
+
+
+ Increases the log enable counter and if it reaches 0 the logs are disabled.
+ Logging is enabled if the number of calls is greater
+ than or equal to calls.
+
+
+
+ Returns if logging is currently enabled.
+
+ A value of if logging is currently enabled,
+ otherwise.
+ Logging is enabled if the number of calls is greater
+ than or equal to calls.
+
+
+
+ Dispose all targets, and shutdown logging.
+
+
+
+
+ Occurs when logging changes.
+
+
+
+
+ Occurs when logging gets reloaded.
+
+
+
+
+ Gets or sets a value indicating whether NLog should throw exceptions.
+ By default exceptions are not thrown under any circumstances.
+
+
+
+
+ Gets or sets the current logging configuration.
+
+
+
+
+ Gets or sets the global log threshold. Log events below this threshold are not logged.
+
+
+
+
+ Gets or sets the default culture to use.
+
+
+
+
+ Delegate used to the the culture to use.
+
+
+
+
+
+ Returns a log message. Used to defer calculation of
+ the log message until it's actually needed.
+
+ Log message.
+
+
+
+ Service contract for Log Receiver client.
+
+
+
+
+ Begins processing of log messages.
+
+ The events.
+ The callback.
+ Asynchronous state.
+
+ IAsyncResult value which can be passed to .
+
+
+
+
+ Ends asynchronous processing of log messages.
+
+ The result.
+
+
+
+ Service contract for Log Receiver server.
+
+
+
+
+ Processes the log messages.
+
+ The events.
+
+
+
+ Implementation of which forwards received logs through or a given .
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The log factory.
+
+
+
+ Processes the log messages.
+
+ The events to process.
+
+
+
+ Processes the log messages.
+
+ The log events.
+
+
+
+ Internal configuration of Log Receiver Service contracts.
+
+
+
+
+ Wire format for NLog Event.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Converts the to .
+
+ The object this is part of..
+ The logger name prefix to prepend in front of the logger name.
+ Converted .
+
+
+
+ Gets or sets the client-generated identifier of the event.
+
+
+
+
+ Gets or sets the ordinal of the log level.
+
+
+
+
+ Gets or sets the logger ordinal (index into .
+
+ The logger ordinal.
+
+
+
+ Gets or sets the time delta (in ticks) between the time of the event and base time.
+
+
+
+
+ Gets or sets the message string index.
+
+
+
+
+ Gets or sets the collection of layout values.
+
+
+
+
+ Gets the collection of indexes into array for each layout value.
+
+
+
+
+ Wire format for NLog event package.
+
+
+
+
+ Converts the events to sequence of objects suitable for routing through NLog.
+
+ The logger name prefix to prepend in front of each logger name.
+
+ Sequence of objects.
+
+
+
+
+ Converts the events to sequence of objects suitable for routing through NLog.
+
+
+ Sequence of objects.
+
+
+
+
+ Gets or sets the name of the client.
+
+ The name of the client.
+
+
+
+ Gets or sets the base time (UTC ticks) for all events in the package.
+
+ The base time UTC.
+
+
+
+ Gets or sets the collection of layout names which are shared among all events.
+
+ The layout names.
+
+
+
+ Gets or sets the collection of logger names.
+
+ The logger names.
+
+
+
+ Gets or sets the list of events.
+
+ The events.
+
+
+
+ List of strings annotated for more terse serialization.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Log Receiver Client using WCF.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the endpoint configuration.
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the endpoint configuration.
+ The remote address.
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the endpoint configuration.
+ The remote address.
+
+
+
+ Initializes a new instance of the class.
+
+ The binding.
+ The remote address.
+
+
+
+ Opens the client asynchronously.
+
+
+
+
+ Opens the client asynchronously.
+
+ User-specific state.
+
+
+
+ Closes the client asynchronously.
+
+
+
+
+ Closes the client asynchronously.
+
+ User-specific state.
+
+
+
+ Processes the log messages asynchronously.
+
+ The events to send.
+
+
+
+ Processes the log messages asynchronously.
+
+ The events to send.
+ User-specific state.
+
+
+
+ Begins processing of log messages.
+
+ The events to send.
+ The callback.
+ Asynchronous state.
+
+ IAsyncResult value which can be passed to .
+
+
+
+
+ Ends asynchronous processing of log messages.
+
+ The result.
+
+
+
+ Occurs when the log message processing has completed.
+
+
+
+
+ Occurs when Open operation has completed.
+
+
+
+
+ Occurs when Close operation has completed.
+
+
+
+
+ Mapped Diagnostics Context - a thread-local structure that keeps a dictionary
+ of strings and provides methods to output them in layouts.
+ Mostly for compatibility with log4net.
+
+
+
+
+ Sets the current thread MDC item to the specified value.
+
+ Item name.
+ Item value.
+
+
+
+ Gets the current thread MDC named item.
+
+ Item name.
+ The item value of string.Empty if the value is not present.
+
+
+
+ Checks whether the specified item exists in current thread MDC.
+
+ Item name.
+ A boolean indicating whether the specified item exists in current thread MDC.
+
+
+
+ Removes the specified item from current thread MDC.
+
+ Item name.
+
+
+
+ Clears the content of current thread MDC.
+
+
+
+
+ Mapped Diagnostics Context - used for log4net compatibility.
+
+
+
+
+ Sets the current thread MDC item to the specified value.
+
+ Item name.
+ Item value.
+
+
+
+ Gets the current thread MDC named item.
+
+ Item name.
+ The item value of string.Empty if the value is not present.
+
+
+
+ Checks whether the specified item exists in current thread MDC.
+
+ Item name.
+ A boolean indicating whether the specified item exists in current thread MDC.
+
+
+
+ Removes the specified item from current thread MDC.
+
+ Item name.
+
+
+
+ Clears the content of current thread MDC.
+
+
+
+
+ Nested Diagnostics Context - for log4net compatibility.
+
+
+
+
+ Pushes the specified text on current thread NDC.
+
+ The text to be pushed.
+ An instance of the object that implements IDisposable that returns the stack to the previous level when IDisposable.Dispose() is called. To be used with C# using() statement.
+
+
+
+ Pops the top message off the NDC stack.
+
+ The top message which is no longer on the stack.
+
+
+
+ Clears current thread NDC stack.
+
+
+
+
+ Gets all messages on the stack.
+
+ Array of strings on the stack.
+
+
+
+ Gets the top NDC message but doesn't remove it.
+
+ The top message. .
+
+
+
+ Nested Diagnostics Context - a thread-local structure that keeps a stack
+ of strings and provides methods to output them in layouts
+ Mostly for compatibility with log4net.
+
+
+
+
+ Pushes the specified text on current thread NDC.
+
+ The text to be pushed.
+ An instance of the object that implements IDisposable that returns the stack to the previous level when IDisposable.Dispose() is called. To be used with C# using() statement.
+
+
+
+ Pops the top message off the NDC stack.
+
+ The top message which is no longer on the stack.
+
+
+
+ Clears current thread NDC stack.
+
+
+
+
+ Gets all messages on the stack.
+
+ Array of strings on the stack.
+
+
+
+ Gets the top NDC message but doesn't remove it.
+
+ The top message. .
+
+
+
+ Resets the stack to the original count during .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The stack.
+ The previous count.
+
+
+
+ Reverts the stack to original item count.
+
+
+
+
+ Exception thrown during NLog configuration.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The inner exception.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+
+ The parameter is null.
+
+
+ The class name is null or is zero (0).
+
+
+
+
+ Exception thrown during log event processing.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+
+
+
+ Initializes a new instance of the class.
+
+ The message.
+ The inner exception.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+
+ The parameter is null.
+
+
+ The class name is null or is zero (0).
+
+
+
+
+ TraceListener which routes all messages through NLog.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ When overridden in a derived class, writes the specified message to the listener you create in the derived class.
+
+ A message to write.
+
+
+
+ When overridden in a derived class, writes a message to the listener you create in the derived class, followed by a line terminator.
+
+ A message to write.
+
+
+
+ When overridden in a derived class, closes the output stream so it no longer receives tracing or debugging output.
+
+
+
+
+ Emits an error message.
+
+ A message to emit.
+
+
+
+ Emits an error message and a detailed error message.
+
+ A message to emit.
+ A detailed message to emit.
+
+
+
+ Flushes the output buffer.
+
+
+
+
+ Writes trace information, a data object and event information to the listener specific output.
+
+ A object that contains the current process ID, thread ID, and stack trace information.
+ A name used to identify the output, typically the name of the application that generated the trace event.
+ One of the values specifying the type of event that has caused the trace.
+ A numeric identifier for the event.
+ The trace data to emit.
+
+
+
+ Writes trace information, an array of data objects and event information to the listener specific output.
+
+ A object that contains the current process ID, thread ID, and stack trace information.
+ A name used to identify the output, typically the name of the application that generated the trace event.
+ One of the values specifying the type of event that has caused the trace.
+ A numeric identifier for the event.
+ An array of objects to emit as data.
+
+
+
+ Writes trace and event information to the listener specific output.
+
+ A object that contains the current process ID, thread ID, and stack trace information.
+ A name used to identify the output, typically the name of the application that generated the trace event.
+ One of the values specifying the type of event that has caused the trace.
+ A numeric identifier for the event.
+
+
+
+ Writes trace information, a formatted array of objects and event information to the listener specific output.
+
+ A object that contains the current process ID, thread ID, and stack trace information.
+ A name used to identify the output, typically the name of the application that generated the trace event.
+ One of the values specifying the type of event that has caused the trace.
+ A numeric identifier for the event.
+ A format string that contains zero or more format items, which correspond to objects in the array.
+ An object array containing zero or more objects to format.
+
+
+
+ Writes trace information, a message, and event information to the listener specific output.
+
+ A object that contains the current process ID, thread ID, and stack trace information.
+ A name used to identify the output, typically the name of the application that generated the trace event.
+ One of the values specifying the type of event that has caused the trace.
+ A numeric identifier for the event.
+ A message to write.
+
+
+
+ Writes trace information, a message, a related activity identity and event information to the listener specific output.
+
+ A object that contains the current process ID, thread ID, and stack trace information.
+ A name used to identify the output, typically the name of the application that generated the trace event.
+ A numeric identifier for the event.
+ A message to write.
+ A object identifying a related activity.
+
+
+
+ Gets the custom attributes supported by the trace listener.
+
+
+ A string array naming the custom attributes supported by the trace listener, or null if there are no custom attributes.
+
+
+
+
+ Translates the event type to level from .
+
+ Type of the event.
+ Translated log level.
+
+
+
+ Gets or sets the log factory to use when outputting messages (null - use LogManager).
+
+
+
+
+ Gets or sets the default log level.
+
+
+
+
+ Gets or sets the log which should be always used regardless of source level.
+
+
+
+
+ Gets a value indicating whether the trace listener is thread safe.
+
+
+ true if the trace listener is thread safe; otherwise, false. The default is false.
+
+
+
+ Gets or sets a value indicating whether to use auto logger name detected from the stack trace.
+
+
+
+
+ Specifies the way archive numbering is performed.
+
+
+
+
+ Sequence style numbering. The most recent archive has the highest number.
+
+
+
+
+ Rolling style numbering (the most recent is always #0 then #1, ..., #N.
+
+
+
+
+ Date style numbering. Archives will be stamped with the prior period (Year, Month, Day, Hour, Minute) datetime.
+
+
+
+
+ Outputs log messages through the ASP Response object.
+
+ Documentation on NLog Wiki
+
+
+
+ Represents target that supports string formatting using layouts.
+
+
+
+
+ Represents logging target.
+
+
+
+
+ Initializes this instance.
+
+ The configuration.
+
+
+
+ Closes this instance.
+
+
+
+
+ Closes the target.
+
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+ The asynchronous continuation.
+
+
+
+ Calls the on each volatile layout
+ used by this target.
+
+
+ The log event.
+
+
+
+
+ Returns a that represents this instance.
+
+
+ A that represents this instance.
+
+
+
+
+ Writes the log to the target.
+
+ Log event to write.
+
+
+
+ Writes the array of log events.
+
+ The log events.
+
+
+
+ Initializes this instance.
+
+ The configuration.
+
+
+
+ Closes this instance.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources.
+
+ True to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Initializes the target. Can be used by inheriting classes
+ to initialize logging.
+
+
+
+
+ Closes the target and releases any unmanaged resources.
+
+
+
+
+ Flush any pending log messages asynchronously (in case of asynchronous targets).
+
+ The asynchronous continuation.
+
+
+
+ Writes logging event to the log target.
+ classes.
+
+
+ Logging event to be written out.
+
+
+
+
+ Writes log event to the log target. Must be overridden in inheriting
+ classes.
+
+ Log event to be written out.
+
+
+
+ Writes an array of logging events to the log target. By default it iterates on all
+ events and passes them to "Write" method. Inheriting classes can use this method to
+ optimize batch writes.
+
+ Logging events to be written out.
+
+
+
+ Gets or sets the name of the target.
+
+
+
+
+
+ Gets the object which can be used to synchronize asynchronous operations that must rely on the .
+
+
+
+
+ Gets the logging configuration this target is part of.
+
+
+
+
+ Gets a value indicating whether the target has been initialized.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ The default value of the layout is: ${longdate}|${level:uppercase=true}|${logger}|${message}
+
+
+
+
+ Gets or sets the layout used to format log messages.
+
+
+
+
+
+ Outputs the rendered logging event through the OutputDebugString() Win32 API.
+
+ The logging event.
+
+
+
+ Gets or sets a value indicating whether to add <!-- --> comments around all written texts.
+
+
+
+
+
+ Sends log messages to the remote instance of Chainsaw application from log4j.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+ NOTE: If your receiver application is ever likely to be off-line, don't use TCP protocol
+ or you'll get TCP timeouts and your application will crawl.
+ Either switch to UDP transport or use AsyncWrapper target
+ so that your application threads will not be blocked by the timing-out connection attempts.
+
+
+
+
+
+ Sends log messages to the remote instance of NLog Viewer.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+ NOTE: If your receiver application is ever likely to be off-line, don't use TCP protocol
+ or you'll get TCP timeouts and your application will crawl.
+ Either switch to UDP transport or use AsyncWrapper target
+ so that your application threads will not be blocked by the timing-out connection attempts.
+
+
+
+
+
+ Sends log messages over the network.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+ To print the results, use any application that's able to receive messages over
+ TCP or UDP. NetCat is
+ a simple but very powerful command-line tool that can be used for that. This image
+ demonstrates the NetCat tool receiving log messages from Network target.
+
+
+
+ NOTE: If your receiver application is ever likely to be off-line, don't use TCP protocol
+ or you'll get TCP timeouts and your application will be very slow.
+ Either switch to UDP transport or use AsyncWrapper target
+ so that your application threads will not be blocked by the timing-out connection attempts.
+
+
+ There are two specialized versions of the Network target: Chainsaw
+ and NLogViewer which write to instances of Chainsaw log4j viewer
+ or NLogViewer application respectively.
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ The default value of the layout is: ${longdate}|${level:uppercase=true}|${logger}|${message}
+
+
+
+
+ Flush any pending log messages asynchronously (in case of asynchronous targets).
+
+ The asynchronous continuation.
+
+
+
+ Closes the target.
+
+
+
+
+ Sends the
+ rendered logging event over the network optionally concatenating it with a newline character.
+
+ The logging event.
+
+
+
+ Gets the bytes to be written.
+
+ Log event.
+ Byte array.
+
+
+
+ Gets or sets the network address.
+
+
+ The network address can be:
+
+
tcp://host:port - TCP (auto select IPv4/IPv6) (not supported on Windows Phone 7.0)
+
tcp4://host:port - force TCP/IPv4 (not supported on Windows Phone 7.0)
+
tcp6://host:port - force TCP/IPv6 (not supported on Windows Phone 7.0)
+
udp://host:port - UDP (auto select IPv4/IPv6, not supported on Silverlight and on Windows Phone 7.0)
+
udp4://host:port - force UDP/IPv4 (not supported on Silverlight and on Windows Phone 7.0)
+
udp6://host:port - force UDP/IPv6 (not supported on Silverlight and on Windows Phone 7.0)
+
http://host:port/pageName - HTTP using POST verb
+
https://host:port/pageName - HTTPS using POST verb
+
+ For SOAP-based webservice support over HTTP use WebService target.
+
+
+
+
+
+ Gets or sets a value indicating whether to keep connection open whenever possible.
+
+
+
+
+
+ Gets or sets a value indicating whether to append newline at the end of log message.
+
+
+
+
+
+ Gets or sets the maximum message size in bytes.
+
+
+
+
+
+ Gets or sets the size of the connection cache (number of connections which are kept alive).
+
+
+
+
+
+ Gets or sets the maximum queue size.
+
+
+
+
+ Gets or sets the action that should be taken if the message is larger than
+ maxMessageSize.
+
+
+
+
+
+ Gets or sets the encoding to be used.
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ The default value of the layout is: ${longdate}|${level:uppercase=true}|${logger}|${message}
+
+
+
+
+ Gets or sets a value indicating whether to include NLog-specific extensions to log4j schema.
+
+
+
+
+
+ Gets or sets the AppInfo field. By default it's the friendly name of the current AppDomain.
+
+
+
+
+
+ Gets or sets a value indicating whether to include call site (class and method name) in the information sent over the network.
+
+
+
+
+
+ Gets or sets a value indicating whether to include source info (file name and line number) in the information sent over the network.
+
+
+
+
+
+ Gets or sets a value indicating whether to include dictionary contents.
+
+
+
+
+
+ Gets or sets a value indicating whether to include stack contents.
+
+
+
+
+
+ Gets or sets the NDC item separator.
+
+
+
+
+
+ Gets the collection of parameters. Each parameter contains a mapping
+ between NLog layout and a named parameter.
+
+
+
+
+
+ Gets the layout renderer which produces Log4j-compatible XML events.
+
+
+
+
+ Gets or sets the instance of that is used to format log messages.
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Writes log messages to the console with customizable coloring.
+
+ Documentation on NLog Wiki
+
+
+
+ Represents target that supports string formatting using layouts.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ The default value of the layout is: ${longdate}|${level:uppercase=true}|${logger}|${message}
+
+
+
+
+ Gets or sets the text to be rendered.
+
+
+
+
+
+ Gets or sets the footer.
+
+
+
+
+
+ Gets or sets the header.
+
+
+
+
+
+ Gets or sets the layout with header and footer.
+
+ The layout with header and footer.
+
+
+
+ Initializes a new instance of the class.
+
+
+ The default value of the layout is: ${longdate}|${level:uppercase=true}|${logger}|${message}
+
+
+
+
+ Initializes the target.
+
+
+
+
+ Closes the target and releases any unmanaged resources.
+
+
+
+
+ Writes the specified log event to the console highlighting entries
+ and words based on a set of defined rules.
+
+ Log event.
+
+
+
+ Gets or sets a value indicating whether the error stream (stderr) should be used instead of the output stream (stdout).
+
+
+
+
+
+ Gets or sets a value indicating whether to use default row highlighting rules.
+
+
+ The default rules are:
+
+
+
Condition
+
Foreground Color
+
Background Color
+
+
+
level == LogLevel.Fatal
+
Red
+
NoChange
+
+
+
level == LogLevel.Error
+
Yellow
+
NoChange
+
+
+
level == LogLevel.Warn
+
Magenta
+
NoChange
+
+
+
level == LogLevel.Info
+
White
+
NoChange
+
+
+
level == LogLevel.Debug
+
Gray
+
NoChange
+
+
+
level == LogLevel.Trace
+
DarkGray
+
NoChange
+
+
+
+
+
+
+
+ Gets the row highlighting rules.
+
+
+
+
+
+ Gets the word highlighting rules.
+
+
+
+
+
+ Color pair (foreground and background).
+
+
+
+
+ Colored console output color.
+
+
+ Note that this enumeration is defined to be binary compatible with
+ .NET 2.0 System.ConsoleColor + some additions
+
+
+
+
+ Black Color (#000000).
+
+
+
+
+ Dark blue Color (#000080).
+
+
+
+
+ Dark green Color (#008000).
+
+
+
+
+ Dark Cyan Color (#008080).
+
+
+
+
+ Dark Red Color (#800000).
+
+
+
+
+ Dark Magenta Color (#800080).
+
+
+
+
+ Dark Yellow Color (#808000).
+
+
+
+
+ Gray Color (#C0C0C0).
+
+
+
+
+ Dark Gray Color (#808080).
+
+
+
+
+ Blue Color (#0000FF).
+
+
+
+
+ Green Color (#00FF00).
+
+
+
+
+ Cyan Color (#00FFFF).
+
+
+
+
+ Red Color (#FF0000).
+
+
+
+
+ Magenta Color (#FF00FF).
+
+
+
+
+ Yellow Color (#FFFF00).
+
+
+
+
+ White Color (#FFFFFF).
+
+
+
+
+ Don't change the color.
+
+
+
+
+ The row-highlighting condition.
+
+
+
+
+ Initializes static members of the ConsoleRowHighlightingRule class.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The condition.
+ Color of the foreground.
+ Color of the background.
+
+
+
+ Checks whether the specified log event matches the condition (if any).
+
+
+ Log event.
+
+
+ A value of if the condition is not defined or
+ if it matches, otherwise.
+
+
+
+
+ Gets the default highlighting rule. Doesn't change the color.
+
+
+
+
+ Gets or sets the condition that must be met in order to set the specified foreground and background color.
+
+
+
+
+
+ Gets or sets the foreground color.
+
+
+
+
+
+ Gets or sets the background color.
+
+
+
+
+
+ Writes log messages to the console.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+
+
+
+ Initializes the target.
+
+
+
+
+ Closes the target and releases any unmanaged resources.
+
+
+
+
+ Writes the specified logging event to the Console.Out or
+ Console.Error depending on the value of the Error flag.
+
+ The logging event.
+
+ Note that the Error option is not supported on .NET Compact Framework.
+
+
+
+
+ Gets or sets a value indicating whether to send the log messages to the standard error instead of the standard output.
+
+
+
+
+
+ Highlighting rule for Win32 colorful console.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The text to be matched..
+ Color of the foreground.
+ Color of the background.
+
+
+
+ Gets or sets the regular expression to be matched. You must specify either text or regex.
+
+
+
+
+
+ Gets or sets the text to be matched. You must specify either text or regex.
+
+
+
+
+
+ Gets or sets a value indicating whether to match whole words only.
+
+
+
+
+
+ Gets or sets a value indicating whether to ignore case when comparing texts.
+
+
+
+
+
+ Gets the compiled regular expression that matches either Text or Regex property.
+
+
+
+
+ Gets or sets the foreground color.
+
+
+
+
+
+ Gets or sets the background color.
+
+
+
+
+
+ Information about database command + parameters.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets or sets the type of the command.
+
+ The type of the command.
+
+
+
+
+ Gets or sets the connection string to run the command against. If not provided, connection string from the target is used.
+
+
+
+
+
+ Gets or sets the command text.
+
+
+
+
+
+ Gets or sets a value indicating whether to ignore failures.
+
+
+
+
+
+ Gets the collection of parameters. Each parameter contains a mapping
+ between NLog layout and a database named or positional parameter.
+
+
+
+
+
+ Represents a parameter to a Database target.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the parameter.
+ The parameter layout.
+
+
+
+ Gets or sets the database parameter name.
+
+
+
+
+
+ Gets or sets the layout that should be use to calcuate the value for the parameter.
+
+
+
+
+
+ Gets or sets the database parameter size.
+
+
+
+
+
+ Gets or sets the database parameter precision.
+
+
+
+
+
+ Gets or sets the database parameter scale.
+
+
+
+
+
+ Writes log messages to the database using an ADO.NET provider.
+
+ Documentation on NLog Wiki
+
+
+ The configuration is dependent on the database type, because
+ there are differnet methods of specifying connection string, SQL
+ command and command parameters.
+
+ MS SQL Server using System.Data.SqlClient:
+
+ Oracle using System.Data.OracleClient:
+
+ Oracle using System.Data.OleDBClient:
+
+ To set up the log target programmatically use code like this (an equivalent of MSSQL configuration):
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Performs installation which requires administrative permissions.
+
+ The installation context.
+
+
+
+ Performs uninstallation which requires administrative permissions.
+
+ The installation context.
+
+
+
+ Determines whether the item is installed.
+
+ The installation context.
+
+ Value indicating whether the item is installed or null if it is not possible to determine.
+
+
+
+
+ Initializes the target. Can be used by inheriting classes
+ to initialize logging.
+
+
+
+
+ Closes the target and releases any unmanaged resources.
+
+
+
+
+ Writes the specified logging event to the database. It creates
+ a new database command, prepares parameters for it by calculating
+ layouts and executes the command.
+
+ The logging event.
+
+
+
+ Writes an array of logging events to the log target. By default it iterates on all
+ events and passes them to "Write" method. Inheriting classes can use this method to
+ optimize batch writes.
+
+ Logging events to be written out.
+
+
+
+ Gets or sets the name of the database provider.
+
+
+
+ The parameter name should be a provider invariant name as registered in machine.config or app.config. Common values are:
+
+
+
System.Data.SqlClient - SQL Sever Client
+
System.Data.SqlServerCe.3.5 - SQL Sever Compact 3.5
+
System.Data.OracleClient - Oracle Client from Microsoft (deprecated in .NET Framework 4)
+
Oracle.DataAccess.Client - ODP.NET provider from Oracle
+
System.Data.SQLite - System.Data.SQLite driver for SQLite
+
Npgsql - Npgsql driver for PostgreSQL
+
MySql.Data.MySqlClient - MySQL Connector/Net
+
+ (Note that provider invariant names are not supported on .NET Compact Framework).
+
+ Alternatively the parameter value can be be a fully qualified name of the provider
+ connection type (class implementing ) or one of the following tokens:
+
+
+
sqlserver, mssql, microsoft or msde - SQL Server Data Provider
+
oledb - OLEDB Data Provider
+
odbc - ODBC Data Provider
+
+
+
+
+
+
+ Gets or sets the name of the connection string (as specified in <connectionStrings> configuration section.
+
+
+
+
+
+ Gets or sets the connection string. When provided, it overrides the values
+ specified in DBHost, DBUserName, DBPassword, DBDatabase.
+
+
+
+
+
+ Gets or sets the connection string using for installation and uninstallation. If not provided, regular ConnectionString is being used.
+
+
+
+
+
+ Gets the installation DDL commands.
+
+
+
+
+
+ Gets the uninstallation DDL commands.
+
+
+
+
+
+ Gets or sets a value indicating whether to keep the
+ database connection open between the log events.
+
+
+
+
+
+ Gets or sets a value indicating whether to use database transactions.
+ Some data providers require this.
+
+
+
+
+
+ Gets or sets the database host name. If the ConnectionString is not provided
+ this value will be used to construct the "Server=" part of the
+ connection string.
+
+
+
+
+
+ Gets or sets the database user name. If the ConnectionString is not provided
+ this value will be used to construct the "User ID=" part of the
+ connection string.
+
+
+
+
+
+ Gets or sets the database password. If the ConnectionString is not provided
+ this value will be used to construct the "Password=" part of the
+ connection string.
+
+
+
+
+
+ Gets or sets the database name. If the ConnectionString is not provided
+ this value will be used to construct the "Database=" part of the
+ connection string.
+
+
+
+
+
+ Gets or sets the text of the SQL command to be run on each log level.
+
+
+ Typically this is a SQL INSERT statement or a stored procedure call.
+ It should use the database-specific parameters (marked as @parameter
+ for SQL server or :parameter for Oracle, other data providers
+ have their own notation) and not the layout renderers,
+ because the latter is prone to SQL injection attacks.
+ The layout renderers should be specified as <parameter /> elements instead.
+
+
+
+
+
+ Gets the collection of parameters. Each parameter contains a mapping
+ between NLog layout and a database named or positional parameter.
+
+
+
+
+
+ Writes log messages to the attached managed debugger.
+
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+
+
+
+ Initializes the target.
+
+
+
+
+ Closes the target and releases any unmanaged resources.
+
+
+
+
+ Writes the specified logging event to the attached debugger.
+
+ The logging event.
+
+
+
+ Mock target - useful for testing.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ The default value of the layout is: ${longdate}|${level:uppercase=true}|${logger}|${message}
+
+
+
+
+ Increases the number of messages.
+
+ The logging event.
+
+
+
+ Gets the number of times this target has been called.
+
+
+
+
+
+ Gets the last message rendered by this target.
+
+
+
+
+
+ Writes log message to the Event Log.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Performs installation which requires administrative permissions.
+
+ The installation context.
+
+
+
+ Performs uninstallation which requires administrative permissions.
+
+ The installation context.
+
+
+
+ Determines whether the item is installed.
+
+ The installation context.
+
+ Value indicating whether the item is installed or null if it is not possible to determine.
+
+
+
+
+ Initializes the target.
+
+
+
+
+ Writes the specified logging event to the event log.
+
+ The logging event.
+
+
+
+ Gets or sets the name of the machine on which Event Log service is running.
+
+
+
+
+
+ Gets or sets the layout that renders event ID.
+
+
+
+
+
+ Gets or sets the layout that renders event Category.
+
+
+
+
+
+ Gets or sets the value to be used as the event Source.
+
+
+ By default this is the friendly name of the current AppDomain.
+
+
+
+
+
+ Gets or sets the name of the Event Log to write to. This can be System, Application or
+ any user-defined name.
+
+
+
+
+
+ Modes of archiving files based on time.
+
+
+
+
+ Don't archive based on time.
+
+
+
+
+ Archive every year.
+
+
+
+
+ Archive every month.
+
+
+
+
+ Archive daily.
+
+
+
+
+ Archive every hour.
+
+
+
+
+ Archive every minute.
+
+
+
+
+ Writes log messages to one or more files.
+
+ Documentation on NLog Wiki
+
+
+
+ Initializes a new instance of the class.
+
+
+ The default value of the layout is: ${longdate}|${level:uppercase=true}|${logger}|${message}
+
+
+
+
+ Removes records of initialized files that have not been
+ accessed in the last two days.
+
+
+ Files are marked 'initialized' for the purpose of writing footers when the logging finishes.
+
+
+
+
+ Removes records of initialized files that have not been
+ accessed after the specified date.
+
+ The cleanup threshold.
+
+ Files are marked 'initialized' for the purpose of writing footers when the logging finishes.
+
+
+
+
+ Flushes all pending file operations.
+
+ The asynchronous continuation.
+
+ The timeout parameter is ignored, because file APIs don't provide
+ the needed functionality.
+
+
+
+
+ Initializes file logging by creating data structures that
+ enable efficient multi-file logging.
+
+
+
+
+ Closes the file(s) opened for writing.
+
+
+
+
+ Writes the specified logging event to a file specified in the FileName
+ parameter.
+
+ The logging event.
+
+
+
+ Writes the specified array of logging events to a file specified in the FileName
+ parameter.
+
+ An array of objects.
+
+ This function makes use of the fact that the events are batched by sorting
+ the requests by filename. This optimizes the number of open/close calls
+ and can help improve performance.
+
+
+
+
+ Formats the log event for write.
+
+ The log event to be formatted.
+ A string representation of the log event.
+
+
+
+ Gets the bytes to be written to the file.
+
+ Log event.
+ Array of bytes that are ready to be written.
+
+
+
+ Modifies the specified byte array before it gets sent to a file.
+
+ The byte array.
+ The modified byte array. The function can do the modification in-place.
+
+
+
+ Gets or sets the name of the file to write to.
+
+
+ This FileName string is a layout which may include instances of layout renderers.
+ This lets you use a single target to write to multiple files.
+
+
+ The following value makes NLog write logging events to files based on the log level in the directory where
+ the application runs.
+ ${basedir}/${level}.log
+ All Debug messages will go to Debug.log, all Info messages will go to Info.log and so on.
+ You can combine as many of the layout renderers as you want to produce an arbitrary log file name.
+
+
+
+
+
+ Gets or sets a value indicating whether to create directories if they don't exist.
+
+
+ Setting this to false may improve performance a bit, but you'll receive an error
+ when attempting to write to a directory that's not present.
+
+
+
+
+
+ Gets or sets a value indicating whether to delete old log file on startup.
+
+
+ This option works only when the "FileName" parameter denotes a single file.
+
+
+
+
+
+ Gets or sets a value indicating whether to replace file contents on each write instead of appending log message at the end.
+
+
+
+
+
+ Gets or sets a value indicating whether to keep log file open instead of opening and closing it on each logging event.
+
+
+ Setting this property to True helps improve performance.
+
+
+
+
+
+ Gets or sets a value indicating whether to enable log file(s) to be deleted.
+
+
+
+
+
+ Gets or sets a value specifying the date format to use when archving files.
+
+
+ This option works only when the "ArchiveNumbering" parameter is set to Date.
+
+
+
+
+
+ Gets or sets the file attributes (Windows only).
+
+
+
+
+
+ Gets or sets the line ending mode.
+
+
+
+
+
+ Gets or sets a value indicating whether to automatically flush the file buffers after each log message.
+
+
+
+
+
+ Gets or sets the number of files to be kept open. Setting this to a higher value may improve performance
+ in a situation where a single File target is writing to many files
+ (such as splitting by level or by logger).
+
+
+ The files are managed on a LRU (least recently used) basis, which flushes
+ the files that have not been used for the longest period of time should the
+ cache become full. As a rule of thumb, you shouldn't set this parameter to
+ a very high value. A number like 10-15 shouldn't be exceeded, because you'd
+ be keeping a large number of files open which consumes system resources.
+
+
+
+
+
+ Gets or sets the maximum number of seconds that files are kept open. If this number is negative the files are
+ not automatically closed after a period of inactivity.
+
+
+
+
+
+ Gets or sets the log file buffer size in bytes.
+
+
+
+
+
+ Gets or sets the file encoding.
+
+
+
+
+
+ Gets or sets a value indicating whether concurrent writes to the log file by multiple processes on the same host.
+
+
+ This makes multi-process logging possible. NLog uses a special technique
+ that lets it keep the files open for writing.
+
+
+
+
+
+ Gets or sets a value indicating whether concurrent writes to the log file by multiple processes on different network hosts.
+
+
+ This effectively prevents files from being kept open.
+
+
+
+
+
+ Gets or sets the number of times the write is appended on the file before NLog
+ discards the log message.
+
+
+
+
+
+ Gets or sets the delay in milliseconds to wait before attempting to write to the file again.
+
+
+ The actual delay is a random value between 0 and the value specified
+ in this parameter. On each failed attempt the delay base is doubled
+ up to times.
+
+
+ Assuming that ConcurrentWriteAttemptDelay is 10 the time to wait will be:
+ a random value between 0 and 10 milliseconds - 1st attempt
+ a random value between 0 and 20 milliseconds - 2nd attempt
+ a random value between 0 and 40 milliseconds - 3rd attempt
+ a random value between 0 and 80 milliseconds - 4th attempt
+ ...
+ and so on.
+
+
+
+
+
+ Gets or sets the size in bytes above which log files will be automatically archived.
+
+
+ Caution: Enabling this option can considerably slow down your file
+ logging in multi-process scenarios. If only one process is going to
+ be writing to the file, consider setting ConcurrentWrites
+ to false for maximum performance.
+
+
+
+
+
+ Gets or sets a value indicating whether to automatically archive log files every time the specified time passes.
+
+
+ Files are moved to the archive as part of the write operation if the current period of time changes. For example
+ if the current hour changes from 10 to 11, the first write that will occur
+ on or after 11:00 will trigger the archiving.
+
+ Caution: Enabling this option can considerably slow down your file
+ logging in multi-process scenarios. If only one process is going to
+ be writing to the file, consider setting ConcurrentWrites
+ to false for maximum performance.
+
+
+
+
+
+
+ Gets or sets the name of the file to be used for an archive.
+
+
+ It may contain a special placeholder {#####}
+ that will be replaced with a sequence of numbers depending on
+ the archiving strategy. The number of hash characters used determines
+ the number of numerical digits to be used for numbering files.
+
+
+
+
+
+ Gets or sets the maximum number of archive files that should be kept.
+
+
+
+
+
+ Gets ors set a value indicating whether a managed file stream is forced, instead of used the native implementation.
+
+
+
+
+ Gets or sets the way file archives are numbered.
+
+
+
+
+
+ Gets the characters that are appended after each line.
+
+
+
+
+ Logs text to Windows.Forms.Control.Text property control of specified Name.
+
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ The result is:
+
+
+
+ To set up the log target programmatically similar to above use code like this:
+
+ ,
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ The default value of the layout is: ${longdate}|${level:uppercase=true}|${logger}|${message}
+
+
+
+
+ Log message to control.
+
+
+ The logging event.
+
+
+
+
+ Gets or sets the name of control to which NLog will log write log text.
+
+
+
+
+
+ Gets or sets a value indicating whether log text should be appended to the text of the control instead of overwriting it.
+
+
+
+
+ Gets or sets the name of the Form on which the control is located.
+
+
+
+
+
+ Gets or sets whether new log entry are added to the start or the end of the control
+
+
+
+
+ Line ending mode.
+
+
+
+
+ Insert platform-dependent end-of-line sequence after each line.
+
+
+
+
+ Insert CR LF sequence (ASCII 13, ASCII 10) after each line.
+
+
+
+
+ Insert CR character (ASCII 13) after each line.
+
+
+
+
+ Insert LF character (ASCII 10) after each line.
+
+
+
+
+ Don't insert any line ending.
+
+
+
+
+ Sends log messages to a NLog Receiver Service (using WCF or Web Services).
+
+ Documentation on NLog Wiki
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Called when log events are being sent (test hook).
+
+ The events.
+ The async continuations.
+ True if events should be sent, false to stop processing them.
+
+
+
+ Writes logging event to the log target. Must be overridden in inheriting
+ classes.
+
+ Logging event to be written out.
+
+
+
+ Writes an array of logging events to the log target. By default it iterates on all
+ events and passes them to "Append" method. Inheriting classes can use this method to
+ optimize batch writes.
+
+ Logging events to be written out.
+
+
+
+ Creating a new instance of WcfLogReceiverClient
+
+ Inheritors can override this method and provide their own
+ service configuration - binding and endpoint address
+
+
+
+
+
+ Gets or sets the endpoint address.
+
+ The endpoint address.
+
+
+
+
+ Gets or sets the name of the endpoint configuration in WCF configuration file.
+
+ The name of the endpoint configuration.
+
+
+
+
+ Gets or sets a value indicating whether to use binary message encoding.
+
+
+
+
+
+ Gets or sets the client ID.
+
+ The client ID.
+
+
+
+
+ Gets the list of parameters.
+
+ The parameters.
+
+
+
+
+ Gets or sets a value indicating whether to include per-event properties in the payload sent to the server.
+
+
+
+
+
+ Sends log messages by email using SMTP protocol.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+ Mail target works best when used with BufferingWrapper target
+ which lets you send multiple log messages in single mail
+
+
+ To set up the buffered mail target in the configuration file,
+ use the following syntax:
+
+
+
+ To set up the buffered mail target programmatically use code like this:
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ The default value of the layout is: ${longdate}|${level:uppercase=true}|${logger}|${message}
+
+
+
+
+ Renders the logging event message and adds it to the internal ArrayList of log messages.
+
+ The logging event.
+
+
+
+ Renders an array logging events.
+
+ Array of logging events.
+
+
+
+ Gets or sets sender's email address (e.g. joe@domain.com).
+
+
+
+
+
+ Gets or sets recipients' email addresses separated by semicolons (e.g. john@domain.com;jane@domain.com).
+
+
+
+
+
+ Gets or sets CC email addresses separated by semicolons (e.g. john@domain.com;jane@domain.com).
+
+
+
+
+
+ Gets or sets BCC email addresses separated by semicolons (e.g. john@domain.com;jane@domain.com).
+
+
+
+
+
+ Gets or sets a value indicating whether to add new lines between log entries.
+
+ A value of true if new lines should be added; otherwise, false.
+
+
+
+
+ Gets or sets the mail subject.
+
+
+
+
+
+ Gets or sets mail message body (repeated for each log message send in one mail).
+
+ Alias for the Layout property.
+
+
+
+
+ Gets or sets encoding to be used for sending e-mail.
+
+
+
+
+
+ Gets or sets a value indicating whether to send message as HTML instead of plain text.
+
+
+
+
+
+ Gets or sets SMTP Server to be used for sending.
+
+
+
+
+
+ Gets or sets SMTP Authentication mode.
+
+
+
+
+
+ Gets or sets the username used to connect to SMTP server (used when SmtpAuthentication is set to "basic").
+
+
+
+
+
+ Gets or sets the password used to authenticate against SMTP server (used when SmtpAuthentication is set to "basic").
+
+
+
+
+
+ Gets or sets a value indicating whether SSL (secure sockets layer) should be used when communicating with SMTP server.
+
+
+
+
+
+ Gets or sets the port number that SMTP Server is listening on.
+
+
+
+
+
+ Gets or sets a value indicating whether the default Settings from System.Net.MailSettings should be used.
+
+
+
+
+
+ Gets or sets the priority used for sending mails.
+
+
+
+
+ Gets or sets a value indicating whether NewLine characters in the body should be replaced with tags.
+
+ Only happens when is set to true.
+
+
+
+ Writes log messages to an ArrayList in memory for programmatic retrieval.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ The default value of the layout is: ${longdate}|${level:uppercase=true}|${logger}|${message}
+
+
+
+
+ Renders the logging event message and adds it to the internal ArrayList of log messages.
+
+ The logging event.
+
+
+
+ Gets the list of logs gathered in the .
+
+
+
+
+ Pops up log messages as message boxes.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ The result is a message box:
+
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ The default value of the layout is: ${longdate}|${level:uppercase=true}|${logger}|${message}
+
+
+
+
+ Displays the message box with the log message and caption specified in the Caption
+ parameter.
+
+ The logging event.
+
+
+
+ Displays the message box with the array of rendered logs messages and caption specified in the Caption
+ parameter.
+
+ The array of logging events.
+
+
+
+ Gets or sets the message box title.
+
+
+
+
+
+ A parameter to MethodCall.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The layout to use for parameter value.
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the parameter.
+ The layout.
+
+
+
+ Initializes a new instance of the class.
+
+ The name of the parameter.
+ The layout.
+ The type of the parameter.
+
+
+
+ Gets or sets the name of the parameter.
+
+
+
+
+
+ Gets or sets the type of the parameter.
+
+
+
+
+
+ Gets or sets the layout that should be use to calcuate the value for the parameter.
+
+
+
+
+
+ Calls the specified static method on each log message and passes contextual parameters to it.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+
+
+
+ The base class for all targets which call methods (local or remote).
+ Manages parameters and type coercion.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Prepares an array of parameters to be passed based on the logging event and calls DoInvoke().
+
+
+ The logging event.
+
+
+
+
+ Calls the target method. Must be implemented in concrete classes.
+
+ Method call parameters.
+ The continuation.
+
+
+
+ Calls the target method. Must be implemented in concrete classes.
+
+ Method call parameters.
+
+
+
+ Gets the array of parameters to be passed.
+
+
+
+
+
+ Initializes the target.
+
+
+
+
+ Calls the specified Method.
+
+ Method parameters.
+
+
+
+ Gets or sets the class name.
+
+
+
+
+
+ Gets or sets the method name. The method must be public and static.
+
+
+
+
+
+ Action that should be taken if the message overflows.
+
+
+
+
+ Report an error.
+
+
+
+
+ Split the message into smaller pieces.
+
+
+
+
+ Discard the entire message.
+
+
+
+
+ Represents a parameter to a NLogViewer target.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets or sets viewer parameter name.
+
+
+
+
+
+ Gets or sets the layout that should be use to calcuate the value for the parameter.
+
+
+
+
+
+ Discards log messages. Used mainly for debugging and benchmarking.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+
+
+
+ Does nothing. Optionally it calculates the layout text but
+ discards the results.
+
+ The logging event.
+
+
+
+ Gets or sets a value indicating whether to perform layout calculation.
+
+
+
+
+
+ Outputs log messages through the OutputDebugString() Win32 API.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+
+
+
+ Outputs the rendered logging event through the OutputDebugString() Win32 API.
+
+ The logging event.
+
+
+
+ Increments specified performance counter on each write.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+
+ TODO:
+ 1. Unable to create a category allowing multiple counter instances (.Net 2.0 API only, probably)
+ 2. Is there any way of adding new counters without deleting the whole category?
+ 3. There should be some mechanism of resetting the counter (e.g every day starts from 0), or auto-switching to
+ another counter instance (with dynamic creation of new instance). This could be done with layouts.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Performs installation which requires administrative permissions.
+
+ The installation context.
+
+
+
+ Performs uninstallation which requires administrative permissions.
+
+ The installation context.
+
+
+
+ Determines whether the item is installed.
+
+ The installation context.
+
+ Value indicating whether the item is installed or null if it is not possible to determine.
+
+
+
+
+ Increments the configured performance counter.
+
+ Log event.
+
+
+
+ Closes the target and releases any unmanaged resources.
+
+
+
+
+ Ensures that the performance counter has been initialized.
+
+ True if the performance counter is operational, false otherwise.
+
+
+
+ Gets or sets a value indicating whether performance counter should be automatically created.
+
+
+
+
+
+ Gets or sets the name of the performance counter category.
+
+
+
+
+
+ Gets or sets the name of the performance counter.
+
+
+
+
+
+ Gets or sets the performance counter instance name.
+
+
+
+
+
+ Gets or sets the counter help text.
+
+
+
+
+
+ Gets or sets the performance counter type.
+
+
+
+
+
+ The row-coloring condition.
+
+
+
+
+ Initializes static members of the RichTextBoxRowColoringRule class.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The condition.
+ Color of the foregroung text.
+ Color of the background text.
+ The font style.
+
+
+
+ Initializes a new instance of the class.
+
+ The condition.
+ Color of the text.
+ Color of the background.
+
+
+
+ Checks whether the specified log event matches the condition (if any).
+
+
+ Log event.
+
+
+ A value of if the condition is not defined or
+ if it matches, otherwise.
+
+
+
+
+ Gets the default highlighting rule. Doesn't change the color.
+
+
+
+
+
+ Gets or sets the condition that must be met in order to set the specified font color.
+
+
+
+
+
+ Gets or sets the font color.
+
+
+ Names are identical with KnownColor enum extended with Empty value which means that background color won't be changed.
+
+
+
+
+
+ Gets or sets the background color.
+
+
+ Names are identical with KnownColor enum extended with Empty value which means that background color won't be changed.
+
+
+
+
+
+ Gets or sets the font style of matched text.
+
+
+ Possible values are the same as in FontStyle enum in System.Drawing
+
+
+
+
+
+ Log text a Rich Text Box control in an existing or new form.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ The result is:
+
+ To set up the target with coloring rules in the configuration file,
+ use the following syntax:
+
+
+
+
+
+ The result is:
+
+ To set up the log target programmatically similar to above use code like this:
+
+
+ ,
+
+
+ for RowColoring,
+
+
+ for WordColoring
+
+
+
+
+ Initializes static members of the RichTextBoxTarget class.
+
+
+ The default value of the layout is: ${longdate}|${level:uppercase=true}|${logger}|${message}
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ The default value of the layout is: ${longdate}|${level:uppercase=true}|${logger}|${message}
+
+
+
+
+ Initializes the target. Can be used by inheriting classes
+ to initialize logging.
+
+
+
+
+ Closes the target and releases any unmanaged resources.
+
+
+
+
+ Log message to RichTextBox.
+
+ The logging event.
+
+
+
+ Gets the default set of row coloring rules which applies when is set to true.
+
+
+
+
+ Gets or sets the Name of RichTextBox to which Nlog will write.
+
+
+
+
+
+ Gets or sets the name of the Form on which the control is located.
+ If there is no open form of a specified name than NLog will create a new one.
+
+
+
+
+
+ Gets or sets a value indicating whether to use default coloring rules.
+
+
+
+
+
+ Gets the row coloring rules.
+
+
+
+
+
+ Gets the word highlighting rules.
+
+
+
+
+
+ Gets or sets a value indicating whether the created window will be a tool window.
+
+
+ This parameter is ignored when logging to existing form control.
+ Tool windows have thin border, and do not show up in the task bar.
+
+
+
+
+
+ Gets or sets a value indicating whether the created form will be initially minimized.
+
+
+ This parameter is ignored when logging to existing form control.
+
+
+
+
+
+ Gets or sets the initial width of the form with rich text box.
+
+
+ This parameter is ignored when logging to existing form control.
+
+
+
+
+
+ Gets or sets the initial height of the form with rich text box.
+
+
+ This parameter is ignored when logging to existing form control.
+
+
+
+
+
+ Gets or sets a value indicating whether scroll bar will be moved automatically to show most recent log entries.
+
+
+
+
+
+ Gets or sets the maximum number of lines the rich text box will store (or 0 to disable this feature).
+
+
+ After exceeding the maximum number, first line will be deleted.
+
+
+
+
+
+ Gets or sets the form to log to.
+
+
+
+
+ Gets or sets the rich text box to log to.
+
+
+
+
+ Highlighting rule for Win32 colorful console.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The text to be matched..
+ Color of the text.
+ Color of the background.
+
+
+
+ Initializes a new instance of the class.
+
+ The text to be matched..
+ Color of the text.
+ Color of the background.
+ The font style.
+
+
+
+ Gets or sets the regular expression to be matched. You must specify either text or regex.
+
+
+
+
+
+ Gets or sets the text to be matched. You must specify either text or regex.
+
+
+
+
+
+ Gets or sets a value indicating whether to match whole words only.
+
+
+
+
+
+ Gets or sets a value indicating whether to ignore case when comparing texts.
+
+
+
+
+
+ Gets or sets the font style of matched text.
+ Possible values are the same as in FontStyle enum in System.Drawing.
+
+
+
+
+
+ Gets the compiled regular expression that matches either Text or Regex property.
+
+
+
+
+ Gets or sets the font color.
+ Names are identical with KnownColor enum extended with Empty value which means that font color won't be changed.
+
+
+
+
+
+ Gets or sets the background color.
+ Names are identical with KnownColor enum extended with Empty value which means that background color won't be changed.
+
+
+
+
+
+ SMTP authentication modes.
+
+
+
+
+ No authentication.
+
+
+
+
+ Basic - username and password.
+
+
+
+
+ NTLM Authentication.
+
+
+
+
+ Marks class as a logging target and assigns a name to it.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the target.
+
+
+
+ Gets or sets a value indicating whether to the target is a wrapper target (used to generate the target summary documentation page).
+
+
+
+
+ Gets or sets a value indicating whether to the target is a compound target (used to generate the target summary documentation page).
+
+
+
+
+ Sends log messages through System.Diagnostics.Trace.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
+
+
+
+ Writes the specified logging event to the facility.
+ If the log level is greater than or equal to it uses the
+ method, otherwise it uses
+ method.
+
+ The logging event.
+
+
+
+ Web service protocol.
+
+
+
+
+ Use SOAP 1.1 Protocol.
+
+
+
+
+ Use SOAP 1.2 Protocol.
+
+
+
+
+ Use HTTP POST Protocol.
+
+
+
+
+ Use HTTP GET Protocol.
+
+
+
+
+ Calls the specified web service on each log message.
+
+ Documentation on NLog Wiki
+
+ The web service must implement a method that accepts a number of string parameters.
+
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ This assumes just one target and a single rule. More configuration
+ options are described here.
+
+
+ To set up the log target programmatically use code like this:
+
+
+
The example web service that works with this example is shown below
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Calls the target method. Must be implemented in concrete classes.
+
+ Method call parameters.
+
+
+
+ Invokes the web service method.
+
+ Parameters to be passed.
+ The continuation.
+
+
+
+ Gets or sets the web service URL.
+
+
+
+
+
+ Gets or sets the Web service method name.
+
+
+
+
+
+ Gets or sets the Web service namespace.
+
+
+
+
+
+ Gets or sets the protocol to be used when calling web service.
+
+
+
+
+
+ Gets or sets the encoding.
+
+
+
+
+
+ Win32 file attributes.
+
+
+ For more information see http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/fs/createfile.asp.
+
+
+
+
+ Read-only file.
+
+
+
+
+ Hidden file.
+
+
+
+
+ System file.
+
+
+
+
+ File should be archived.
+
+
+
+
+ Device file.
+
+
+
+
+ Normal file.
+
+
+
+
+ File is temporary (should be kept in cache and not
+ written to disk if possible).
+
+
+
+
+ Sparse file.
+
+
+
+
+ Reparse point.
+
+
+
+
+ Compress file contents.
+
+
+
+
+ File should not be indexed by the content indexing service.
+
+
+
+
+ Encrypted file.
+
+
+
+
+ The system writes through any intermediate cache and goes directly to disk.
+
+
+
+
+ The system opens a file with no system caching.
+
+
+
+
+ Delete file after it is closed.
+
+
+
+
+ A file is accessed according to POSIX rules.
+
+
+
+
+ Asynchronous request queue.
+
+
+
+
+ Initializes a new instance of the AsyncRequestQueue class.
+
+ Request limit.
+ The overflow action.
+
+
+
+ Enqueues another item. If the queue is overflown the appropriate
+ action is taken as specified by .
+
+ The log event info.
+
+
+
+ Dequeues a maximum of count items from the queue
+ and adds returns the list containing them.
+
+ Maximum number of items to be dequeued.
+ The array of log events.
+
+
+
+ Clears the queue.
+
+
+
+
+ Gets or sets the request limit.
+
+
+
+
+ Gets or sets the action to be taken when there's no more room in
+ the queue and another request is enqueued.
+
+
+
+
+ Gets the number of requests currently in the queue.
+
+
+
+
+ Provides asynchronous, buffered execution of target writes.
+
+ Documentation on NLog Wiki
+
+
+ Asynchronous target wrapper allows the logger code to execute more quickly, by queueing
+ messages and processing them in a separate thread. You should wrap targets
+ that spend a non-trivial amount of time in their Write() method with asynchronous
+ target to speed up logging.
+
+
+ Because asynchronous logging is quite a common scenario, NLog supports a
+ shorthand notation for wrapping all targets with AsyncWrapper. Just add async="true" to
+ the <targets/> element in the configuration file.
+
+
+
+ ... your targets go here ...
+
+ ]]>
+
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ The above examples assume just one target and a single rule. See below for
+ a programmatic configuration that's equivalent to the above config file:
+
+
+
+
+
+
+ Base class for targets wrap other (single) targets.
+
+
+
+
+ Returns the text representation of the object. Used for diagnostics.
+
+ A string that describes the target.
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+ The asynchronous continuation.
+
+
+
+ Writes logging event to the log target. Must be overridden in inheriting
+ classes.
+
+ Logging event to be written out.
+
+
+
+ Gets or sets the target that is wrapped by this target.
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The wrapped target.
+
+
+
+ Initializes a new instance of the class.
+
+ The wrapped target.
+ Maximum number of requests in the queue.
+ The action to be taken when the queue overflows.
+
+
+
+ Waits for the lazy writer thread to finish writing messages.
+
+ The asynchronous continuation.
+
+
+
+ Initializes the target by starting the lazy writer timer.
+
+
+
+
+ Shuts down the lazy writer timer.
+
+
+
+
+ Starts the lazy writer thread which periodically writes
+ queued log messages.
+
+
+
+
+ Starts the lazy writer thread.
+
+
+
+
+ Adds the log event to asynchronous queue to be processed by
+ the lazy writer thread.
+
+ The log event.
+
+ The is called
+ to ensure that the log event can be processed in another thread.
+
+
+
+
+ Gets or sets the number of log events that should be processed in a batch
+ by the lazy writer thread.
+
+
+
+
+
+ Gets or sets the time in milliseconds to sleep between batches.
+
+
+
+
+
+ Gets or sets the action to be taken when the lazy writer thread request queue count
+ exceeds the set limit.
+
+
+
+
+
+ Gets or sets the limit on the number of requests in the lazy writer thread request queue.
+
+
+
+
+
+ Gets the queue of lazy writer thread requests.
+
+
+
+
+ The action to be taken when the queue overflows.
+
+
+
+
+ Grow the queue.
+
+
+
+
+ Discard the overflowing item.
+
+
+
+
+ Block until there's more room in the queue.
+
+
+
+
+ Causes a flush after each write on a wrapped target.
+
+ Documentation on NLog Wiki
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ The above examples assume just one target and a single rule. See below for
+ a programmatic configuration that's equivalent to the above config file:
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ The default value of the layout is: ${longdate}|${level:uppercase=true}|${logger}|${message}
+
+
+
+
+ Initializes a new instance of the class.
+
+ The wrapped target.
+
+
+
+ Forwards the call to the .Write()
+ and calls on it.
+
+ Logging event to be written out.
+
+
+
+ A target that buffers log events and sends them in batches to the wrapped target.
+
+ Documentation on NLog Wiki
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The wrapped target.
+
+
+
+ Initializes a new instance of the class.
+
+ The wrapped target.
+ Size of the buffer.
+
+
+
+ Initializes a new instance of the class.
+
+ The wrapped target.
+ Size of the buffer.
+ The flush timeout.
+
+
+
+ Flushes pending events in the buffer (if any).
+
+ The asynchronous continuation.
+
+
+
+ Initializes the target.
+
+
+
+
+ Closes the target by flushing pending events in the buffer (if any).
+
+
+
+
+ Adds the specified log event to the buffer and flushes
+ the buffer in case the buffer gets full.
+
+ The log event.
+
+
+
+ Gets or sets the number of log events to be buffered.
+
+
+
+
+
+ Gets or sets the timeout (in milliseconds) after which the contents of buffer will be flushed
+ if there's no write in the specified period of time. Use -1 to disable timed flushes.
+
+
+
+
+
+ Gets or sets a value indicating whether to use sliding timeout.
+
+
+ This value determines how the inactivity period is determined. If sliding timeout is enabled,
+ the inactivity timer is reset after each write, if it is disabled - inactivity timer will
+ count from the first event written to the buffer.
+
+
+
+
+
+ A base class for targets which wrap other (multiple) targets
+ and provide various forms of target routing.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The targets.
+
+
+
+ Returns the text representation of the object. Used for diagnostics.
+
+ A string that describes the target.
+
+
+
+ Writes logging event to the log target.
+
+ Logging event to be written out.
+
+
+
+ Flush any pending log messages for all wrapped targets.
+
+ The asynchronous continuation.
+
+
+
+ Gets the collection of targets managed by this compound target.
+
+
+
+
+ Provides fallback-on-error.
+
+ Documentation on NLog Wiki
+
+
This example causes the messages to be written to server1,
+ and if it fails, messages go to server2.
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ The above examples assume just one target and a single rule. See below for
+ a programmatic configuration that's equivalent to the above config file:
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The targets.
+
+
+
+ Forwards the log event to the sub-targets until one of them succeeds.
+
+ The log event.
+
+ The method remembers the last-known-successful target
+ and starts the iteration from it.
+ If is set, the method
+ resets the target to the first target
+ stored in .
+
+
+
+
+ Gets or sets a value indicating whether to return to the first target after any successful write.
+
+
+
+
+
+ Filtering rule for .
+
+
+
+
+ Initializes a new instance of the FilteringRule class.
+
+
+
+
+ Initializes a new instance of the FilteringRule class.
+
+ Condition to be tested against all events.
+ Filter to apply to all log events when the first condition matches any of them.
+
+
+
+ Gets or sets the condition to be tested.
+
+
+
+
+
+ Gets or sets the resulting filter to be applied when the condition matches.
+
+
+
+
+
+ Filters log entries based on a condition.
+
+ Documentation on NLog Wiki
+
+
This example causes the messages not contains the string '1' to be ignored.
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ The above examples assume just one target and a single rule. See below for
+ a programmatic configuration that's equivalent to the above config file:
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The wrapped target.
+ The condition.
+
+
+
+ Checks the condition against the passed log event.
+ If the condition is met, the log event is forwarded to
+ the wrapped target.
+
+ Log event.
+
+
+
+ Gets or sets the condition expression. Log events who meet this condition will be forwarded
+ to the wrapped target.
+
+
+
+
+
+ Impersonates another user for the duration of the write.
+
+ Documentation on NLog Wiki
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The wrapped target.
+
+
+
+ Initializes the impersonation context.
+
+
+
+
+ Closes the impersonation context.
+
+
+
+
+ Changes the security context, forwards the call to the .Write()
+ and switches the context back to original.
+
+ The log event.
+
+
+
+ Changes the security context, forwards the call to the .Write()
+ and switches the context back to original.
+
+ Log events.
+
+
+
+ Flush any pending log messages (in case of asynchronous targets).
+
+ The asynchronous continuation.
+
+
+
+ Gets or sets username to change context to.
+
+
+
+
+
+ Gets or sets the user account password.
+
+
+
+
+
+ Gets or sets Windows domain name to change context to.
+
+
+
+
+
+ Gets or sets the Logon Type.
+
+
+
+
+
+ Gets or sets the type of the logon provider.
+
+
+
+
+
+ Gets or sets the required impersonation level.
+
+
+
+
+
+ Gets or sets a value indicating whether to revert to the credentials of the process instead of impersonating another user.
+
+
+
+
+
+ Helper class which reverts the given
+ to its original value as part of .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The windows impersonation context.
+
+
+
+ Reverts the impersonation context.
+
+
+
+
+ Logon provider.
+
+
+
+
+ Use the standard logon provider for the system.
+
+
+ The default security provider is negotiate, unless you pass NULL for the domain name and the user name
+ is not in UPN format. In this case, the default provider is NTLM.
+ NOTE: Windows 2000/NT: The default security provider is NTLM.
+
+
+
+
+ Filters buffered log entries based on a set of conditions that are evaluated on a group of events.
+
+ Documentation on NLog Wiki
+
+ PostFilteringWrapper must be used with some type of buffering target or wrapper, such as
+ AsyncTargetWrapper, BufferingWrapper or ASPNetBufferingWrapper.
+
+
+
+ This example works like this. If there are no Warn,Error or Fatal messages in the buffer
+ only Info messages are written to the file, but if there are any warnings or errors,
+ the output includes detailed trace (levels >= Debug). You can plug in a different type
+ of buffering wrapper (such as ASPNetBufferingWrapper) to achieve different
+ functionality.
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ The above examples assume just one target and a single rule. See below for
+ a programmatic configuration that's equivalent to the above config file:
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Evaluates all filtering rules to find the first one that matches.
+ The matching rule determines the filtering condition to be applied
+ to all items in a buffer. If no condition matches, default filter
+ is applied to the array of log events.
+
+ Array of log events to be post-filtered.
+
+
+
+ Gets or sets the default filter to be applied when no specific rule matches.
+
+
+
+
+
+ Gets the collection of filtering rules. The rules are processed top-down
+ and the first rule that matches determines the filtering condition to
+ be applied to log events.
+
+
+
+
+
+ Sends log messages to a randomly selected target.
+
+ Documentation on NLog Wiki
+
+
This example causes the messages to be written to either file1.txt or file2.txt
+ chosen randomly on a per-message basis.
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ The above examples assume just one target and a single rule. See below for
+ a programmatic configuration that's equivalent to the above config file:
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The targets.
+
+
+
+ Forwards the log event to one of the sub-targets.
+ The sub-target is randomly chosen.
+
+ The log event.
+
+
+
+ Repeats each log event the specified number of times.
+
+ Documentation on NLog Wiki
+
+
This example causes each log message to be repeated 3 times.
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ The above examples assume just one target and a single rule. See below for
+ a programmatic configuration that's equivalent to the above config file:
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The wrapped target.
+ The repeat count.
+
+
+
+ Forwards the log message to the by calling the method times.
+
+ The log event.
+
+
+
+ Gets or sets the number of times to repeat each log message.
+
+
+
+
+
+ Retries in case of write error.
+
+ Documentation on NLog Wiki
+
+
This example causes each write attempt to be repeated 3 times,
+ sleeping 1 second between attempts if first one fails.
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ The above examples assume just one target and a single rule. See below for
+ a programmatic configuration that's equivalent to the above config file:
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The wrapped target.
+ The retry count.
+ The retry delay milliseconds.
+
+
+
+ Writes the specified log event to the wrapped target, retrying and pausing in case of an error.
+
+ The log event.
+
+
+
+ Gets or sets the number of retries that should be attempted on the wrapped target in case of a failure.
+
+
+
+
+
+ Gets or sets the time to wait between retries in milliseconds.
+
+
+
+
+
+ Distributes log events to targets in a round-robin fashion.
+
+ Documentation on NLog Wiki
+
+
This example causes the messages to be written to either file1.txt or file2.txt.
+ Each odd message is written to file2.txt, each even message goes to file1.txt.
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ The above examples assume just one target and a single rule. See below for
+ a programmatic configuration that's equivalent to the above config file:
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The targets.
+
+
+
+ Forwards the write to one of the targets from
+ the collection.
+
+ The log event.
+
+ The writes are routed in a round-robin fashion.
+ The first log event goes to the first target, the second
+ one goes to the second target and so on looping to the
+ first target when there are no more targets available.
+ In general request N goes to Targets[N % Targets.Count].
+
+
+
+
+ Impersonation level.
+
+
+
+
+ Anonymous Level.
+
+
+
+
+ Identification Level.
+
+
+
+
+ Impersonation Level.
+
+
+
+
+ Delegation Level.
+
+
+
+
+ Logon type.
+
+
+
+
+ Interactive Logon.
+
+
+ This logon type is intended for users who will be interactively using the computer, such as a user being logged on
+ by a terminal server, remote shell, or similar process.
+ This logon type has the additional expense of caching logon information for disconnected operations;
+ therefore, it is inappropriate for some client/server applications,
+ such as a mail server.
+
+
+
+
+ Network Logon.
+
+
+ This logon type is intended for high performance servers to authenticate plaintext passwords.
+ The LogonUser function does not cache credentials for this logon type.
+
+
+
+
+ Batch Logon.
+
+
+ This logon type is intended for batch servers, where processes may be executing on behalf of a user without
+ their direct intervention. This type is also for higher performance servers that process many plaintext
+ authentication attempts at a time, such as mail or Web servers.
+ The LogonUser function does not cache credentials for this logon type.
+
+
+
+
+ Logon as a Service.
+
+
+ Indicates a service-type logon. The account provided must have the service privilege enabled.
+
+
+
+
+ Network Clear Text Logon.
+
+
+ This logon type preserves the name and password in the authentication package, which allows the server to make
+ connections to other network servers while impersonating the client. A server can accept plaintext credentials
+ from a client, call LogonUser, verify that the user can access the system across the network, and still
+ communicate with other servers.
+ NOTE: Windows NT: This value is not supported.
+
+
+
+
+ New Network Credentials.
+
+
+ This logon type allows the caller to clone its current token and specify new credentials for outbound connections.
+ The new logon session has the same local identifier but uses different credentials for other network connections.
+ NOTE: This logon type is supported only by the LOGON32_PROVIDER_WINNT50 logon provider.
+ NOTE: Windows NT: This value is not supported.
+
+
+
+
+ Writes log events to all targets.
+
+ Documentation on NLog Wiki
+
+
This example causes the messages to be written to both file1.txt or file2.txt
+
+
+ To set up the target in the configuration file,
+ use the following syntax:
+
+
+
+ The above examples assume just one target and a single rule. See below for
+ a programmatic configuration that's equivalent to the above config file:
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The targets.
+
+
+
+ Forwards the specified log event to all sub-targets.
+
+ The log event.
+
+
+
+ Writes an array of logging events to the log target. By default it iterates on all
+ events and passes them to "Write" method. Inheriting classes can use this method to
+ optimize batch writes.
+
+ Logging events to be written out.
+
+
+
+ Current local time retrieved directly from DateTime.Now.
+
+
+
+
+ Defines source of current time.
+
+
+
+
+ Returns a that represents this instance.
+
+
+ A that represents this instance.
+
+
+
+
+ Gets current time.
+
+
+
+
+ Gets or sets current global time source used in all log events.
+
+
+ Default time source is .
+
+
+
+
+ Gets current local time directly from DateTime.Now.
+
+
+
+
+ Current UTC time retrieved directly from DateTime.UtcNow.
+
+
+
+
+ Gets current UTC time directly from DateTime.UtcNow.
+
+
+
+
+ Fast time source that updates current time only once per tick (15.6 milliseconds).
+
+
+
+
+ Gets raw uncached time from derived time source.
+
+
+
+
+ Gets current time cached for one system tick (15.6 milliseconds).
+
+
+
+
+ Fast local time source that is updated once per tick (15.6 milliseconds).
+
+
+
+
+ Gets uncached local time directly from DateTime.Now.
+
+
+
+
+ Fast UTC time source that is updated once per tick (15.6 milliseconds).
+
+
+
+
+ Gets uncached UTC time directly from DateTime.UtcNow.
+
+
+
+
+ Marks class as a time source and assigns a name to it.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Name of the time source.
+
+
+
diff --git a/ScheMe/bin/Newtonsoft.Json.dll b/ScheMe/bin/Newtonsoft.Json.dll
new file mode 100644
index 0000000..62079fc
Binary files /dev/null and b/ScheMe/bin/Newtonsoft.Json.dll differ
diff --git a/ScheMe/bin/Newtonsoft.Json.xml b/ScheMe/bin/Newtonsoft.Json.xml
new file mode 100644
index 0000000..18ca1e7
--- /dev/null
+++ b/ScheMe/bin/Newtonsoft.Json.xml
@@ -0,0 +1,8213 @@
+
+
+
+ Newtonsoft.Json
+
+
+
+
+ Represents a BSON Oid (object id).
+
+
+
+
+ Initializes a new instance of the class.
+
+ The Oid value.
+
+
+
+ Gets or sets the value of the Oid.
+
+ The value of the Oid.
+
+
+
+ Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
+
+
+
+
+ Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
+
+
+
+
+ Initializes a new instance of the class with the specified .
+
+
+
+
+ Reads the next JSON token from the stream.
+
+ true if the next token was read successfully; false if there are no more tokens to read.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A or a null reference if the next JSON token is null. This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Skips the children of the current token.
+
+
+
+
+ Sets the current token.
+
+ The new token.
+
+
+
+ Sets the current token and value.
+
+ The new token.
+ The value.
+
+
+
+ Sets the state based on current token type.
+
+
+
+
+ Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
+
+
+
+
+ Releases unmanaged and - optionally - managed resources
+
+ true to release both managed and unmanaged resources; false to release only unmanaged resources.
+
+
+
+ Changes the to Closed.
+
+
+
+
+ Gets the current reader state.
+
+ The current reader state.
+
+
+
+ Gets or sets a value indicating whether the underlying stream or
+ should be closed when the reader is closed.
+
+
+ true to close the underlying stream or when
+ the reader is closed; otherwise false. The default is true.
+
+
+
+
+ Gets the quotation mark character used to enclose the value of a string.
+
+
+
+
+ Get or set how time zones are handling when reading JSON.
+
+
+
+
+ Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
+
+
+
+
+ Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
+
+
+
+
+ Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a .
+
+
+
+
+ Gets the type of the current JSON token.
+
+
+
+
+ Gets the text value of the current JSON token.
+
+
+
+
+ Gets The Common Language Runtime (CLR) type for the current JSON token.
+
+
+
+
+ Gets the depth of the current token in the JSON document.
+
+ The depth of the current token in the JSON document.
+
+
+
+ Gets the path of the current JSON token.
+
+
+
+
+ Gets or sets the culture used when reading JSON. Defaults to .
+
+
+
+
+ Specifies the state of the reader.
+
+
+
+
+ The Read method has not been called.
+
+
+
+
+ The end of the file has been reached successfully.
+
+
+
+
+ Reader is at a property.
+
+
+
+
+ Reader is at the start of an object.
+
+
+
+
+ Reader is in an object.
+
+
+
+
+ Reader is at the start of an array.
+
+
+
+
+ Reader is in an array.
+
+
+
+
+ The Close method has been called.
+
+
+
+
+ Reader has just read a value.
+
+
+
+
+ Reader is at the start of a constructor.
+
+
+
+
+ Reader in a constructor.
+
+
+
+
+ An error occurred that prevents the read operation from continuing.
+
+
+
+
+ The end of the file has been reached successfully.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The stream.
+
+
+
+ Initializes a new instance of the class.
+
+ The reader.
+
+
+
+ Initializes a new instance of the class.
+
+ The stream.
+ if set to true the root object will be read as a JSON array.
+ The used when reading values from BSON.
+
+
+
+ Initializes a new instance of the class.
+
+ The reader.
+ if set to true the root object will be read as a JSON array.
+ The used when reading values from BSON.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+
+ A or a null reference if the next JSON token is null. This method will return null at the end of an array.
+
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+
+ A . This method will return null at the end of an array.
+
+
+
+
+ Reads the next JSON token from the stream.
+
+
+ true if the next token was read successfully; false if there are no more tokens to read.
+
+
+
+
+ Changes the to Closed.
+
+
+
+
+ Gets or sets a value indicating whether binary data reading should compatible with incorrect Json.NET 3.5 written binary.
+
+
+ true if binary data reading will be compatible with incorrect Json.NET 3.5 written binary; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether the root object will be read as a JSON array.
+
+
+ true if the root object will be read as a JSON array; otherwise, false.
+
+
+
+
+ Gets or sets the used when reading values from BSON.
+
+ The used when reading values from BSON.
+
+
+
+ Represents a writer that provides a fast, non-cached, forward-only way of generating JSON data.
+
+
+
+
+ Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
+
+
+
+
+ Creates an instance of the JsonWriter class.
+
+
+
+
+ Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
+
+
+
+
+ Closes this stream and the underlying stream.
+
+
+
+
+ Writes the beginning of a Json object.
+
+
+
+
+ Writes the end of a Json object.
+
+
+
+
+ Writes the beginning of a Json array.
+
+
+
+
+ Writes the end of an array.
+
+
+
+
+ Writes the start of a constructor with the given name.
+
+ The name of the constructor.
+
+
+
+ Writes the end constructor.
+
+
+
+
+ Writes the property name of a name/value pair on a JSON object.
+
+ The name of the property.
+
+
+
+ Writes the property name of a name/value pair on a JSON object.
+
+ The name of the property.
+ A flag to indicate whether the text should be escaped when it is written as a JSON property name.
+
+
+
+ Writes the end of the current Json object or array.
+
+
+
+
+ Writes the current token and its children.
+
+ The to read the token from.
+
+
+
+ Writes the current token.
+
+ The to read the token from.
+ A flag indicating whether the current token's children should be written.
+
+
+
+ Writes the specified end token.
+
+ The end token to write.
+
+
+
+ Writes indent characters.
+
+
+
+
+ Writes the JSON value delimiter.
+
+
+
+
+ Writes an indent space.
+
+
+
+
+ Writes a null value.
+
+
+
+
+ Writes an undefined value.
+
+
+
+
+ Writes raw JSON without changing the writer's state.
+
+ The raw JSON to write.
+
+
+
+ Writes raw JSON where a value is expected and updates the writer's state.
+
+ The raw JSON to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+ An error will raised if the value cannot be written as a single JSON token.
+
+ The value to write.
+
+
+
+ Writes out a comment /*...*/ containing the specified text.
+
+ Text to place inside the comment.
+
+
+
+ Writes out the given white space.
+
+ The string of white space characters.
+
+
+
+ Sets the state of the JsonWriter,
+
+ The JsonToken being written.
+ The value being written.
+
+
+
+ Gets or sets a value indicating whether the underlying stream or
+ should be closed when the writer is closed.
+
+
+ true to close the underlying stream or when
+ the writer is closed; otherwise false. The default is true.
+
+
+
+
+ Gets the top.
+
+ The top.
+
+
+
+ Gets the state of the writer.
+
+
+
+
+ Gets the path of the writer.
+
+
+
+
+ Indicates how JSON text output is formatted.
+
+
+
+
+ Get or set how dates are written to JSON text.
+
+
+
+
+ Get or set how time zones are handling when writing JSON text.
+
+
+
+
+ Get or set how strings are escaped when writing JSON text.
+
+
+
+
+ Get or set how special floating point numbers, e.g. ,
+ and ,
+ are written to JSON text.
+
+
+
+
+ Get or set how and values are formatting when writing JSON text.
+
+
+
+
+ Gets or sets the culture used when writing JSON. Defaults to .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The stream.
+
+
+
+ Initializes a new instance of the class.
+
+ The writer.
+
+
+
+ Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
+
+
+
+
+ Writes the end.
+
+ The token.
+
+
+
+ Writes out a comment /*...*/ containing the specified text.
+
+ Text to place inside the comment.
+
+
+
+ Writes the start of a constructor with the given name.
+
+ The name of the constructor.
+
+
+
+ Writes raw JSON.
+
+ The raw JSON to write.
+
+
+
+ Writes raw JSON where a value is expected and updates the writer's state.
+
+ The raw JSON to write.
+
+
+
+ Writes the beginning of a Json array.
+
+
+
+
+ Writes the beginning of a Json object.
+
+
+
+
+ Writes the property name of a name/value pair on a Json object.
+
+ The name of the property.
+
+
+
+ Closes this stream and the underlying stream.
+
+
+
+
+ Writes a value.
+ An error will raised if the value cannot be written as a single JSON token.
+
+ The value to write.
+
+
+
+ Writes a null value.
+
+
+
+
+ Writes an undefined value.
+
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value that represents a BSON object id.
+
+ The Object ID value to write.
+
+
+
+ Writes a BSON regex.
+
+ The regex pattern.
+ The regex options.
+
+
+
+ Gets or sets the used when writing values to BSON.
+ When set to no conversion will occur.
+
+ The used when writing values to BSON.
+
+
+
+ Specifies how constructors are used when initializing objects during deserialization by the .
+
+
+
+
+ First attempt to use the public default constructor, then fall back to single paramatized constructor, then the non-public default constructor.
+
+
+
+
+ Json.NET will use a non-public default constructor before falling back to a paramatized constructor.
+
+
+
+
+ Converts a binary value to and from a base 64 string value.
+
+
+
+
+ Converts an object to and from JSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Gets the of the JSON produced by the JsonConverter.
+
+ The of the JSON produced by the JsonConverter.
+
+
+
+ Gets a value indicating whether this can read JSON.
+
+ true if this can read JSON; otherwise, false.
+
+
+
+ Gets a value indicating whether this can write JSON.
+
+ true if this can write JSON; otherwise, false.
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Converts a to and from JSON and BSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Create a custom object
+
+ The object type to convert.
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Creates an object which will then be populated by the serializer.
+
+ Type of the object.
+ The created object.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Gets a value indicating whether this can write JSON.
+
+
+ true if this can write JSON; otherwise, false.
+
+
+
+
+ Converts a to and from JSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified value type.
+
+ Type of the value.
+
+ true if this instance can convert the specified value type; otherwise, false.
+
+
+
+
+ Converts a to and from JSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified value type.
+
+ Type of the value.
+
+ true if this instance can convert the specified value type; otherwise, false.
+
+
+
+
+ Provides a base class for converting a to and from JSON.
+
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Converts an Entity Framework EntityKey to and from JSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Converts an ExpandoObject to and from JSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Gets a value indicating whether this can write JSON.
+
+
+ true if this can write JSON; otherwise, false.
+
+
+
+
+ Converts a to and from the ISO 8601 date format (e.g. 2008-04-12T12:53Z).
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Gets or sets the date time styles used when converting a date to and from JSON.
+
+ The date time styles used when converting a date to and from JSON.
+
+
+
+ Gets or sets the date time format used when converting a date to and from JSON.
+
+ The date time format used when converting a date to and from JSON.
+
+
+
+ Gets or sets the culture used when converting a date to and from JSON.
+
+ The culture used when converting a date to and from JSON.
+
+
+
+ Converts a to and from a JavaScript date constructor (e.g. new Date(52231943)).
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing property value of the JSON that is being converted.
+ The calling serializer.
+ The object value.
+
+
+
+ Converts a to and from JSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Converts a to and from JSON and BSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Converts an to and from its name string value.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether the written enum text should be camel case.
+
+ true if the written enum text will be camel case; otherwise, false.
+
+
+
+ Converts a to and from a string (e.g. "1.2.3.4").
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The value.
+ The calling serializer.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing property value of the JSON that is being converted.
+ The calling serializer.
+ The object value.
+
+
+
+ Determines whether this instance can convert the specified object type.
+
+ Type of the object.
+
+ true if this instance can convert the specified object type; otherwise, false.
+
+
+
+
+ Converts XML to and from JSON.
+
+
+
+
+ Writes the JSON representation of the object.
+
+ The to write to.
+ The calling serializer.
+ The value.
+
+
+
+ Reads the JSON representation of the object.
+
+ The to read from.
+ Type of the object.
+ The existing value of object being read.
+ The calling serializer.
+ The object value.
+
+
+
+ Checks if the attributeName is a namespace attribute.
+
+ Attribute name to test.
+ The attribute name prefix if it has one, otherwise an empty string.
+ True if attribute name is for a namespace attribute, otherwise false.
+
+
+
+ Determines whether this instance can convert the specified value type.
+
+ Type of the value.
+
+ true if this instance can convert the specified value type; otherwise, false.
+
+
+
+
+ Gets or sets the name of the root element to insert when deserializing to XML if the JSON structure has produces multiple root elements.
+
+ The name of the deserialize root element.
+
+
+
+ Gets or sets a flag to indicate whether to write the Json.NET array attribute.
+ This attribute helps preserve arrays when converting the written XML back to JSON.
+
+ true if the array attibute is written to the XML; otherwise, false.
+
+
+
+ Gets or sets a value indicating whether to write the root JSON object.
+
+ true if the JSON root object is omitted; otherwise, false.
+
+
+
+ Specifies how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
+
+
+
+
+ Floating point numbers are parsed to .
+
+
+
+
+ Floating point numbers are parsed to .
+
+
+
+
+ Specifies how dates are formatted when writing JSON text.
+
+
+
+
+ Dates are written in the ISO 8601 format, e.g. "2012-03-21T05:40Z".
+
+
+
+
+ Dates are written in the Microsoft JSON format, e.g. "\/Date(1198908717056)\/".
+
+
+
+
+ Specifies how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON text.
+
+
+
+
+ Date formatted strings are not parsed to a date type and are read as strings.
+
+
+
+
+ Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to .
+
+
+
+
+ Date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed to .
+
+
+
+
+ Specifies how to treat the time value when converting between string and .
+
+
+
+
+ Treat as local time. If the object represents a Coordinated Universal Time (UTC), it is converted to the local time.
+
+
+
+
+ Treat as a UTC. If the object represents a local time, it is converted to a UTC.
+
+
+
+
+ Treat as a local time if a is being converted to a string.
+ If a string is being converted to , convert to a local time if a time zone is specified.
+
+
+
+
+ Time zone information should be preserved when converting.
+
+
+
+
+ Specifies default value handling options for the .
+
+
+
+
+
+
+
+
+ Include members where the member value is the same as the member's default value when serializing objects.
+ Included members are written to JSON. Has no effect when deserializing.
+
+
+
+
+ Ignore members where the member value is the same as the member's default value when serializing objects
+ so that is is not written to JSON.
+ This option will ignore all default values (e.g. null for objects and nullable typesl; 0 for integers,
+ decimals and floating point numbers; and false for booleans). The default value ignored can be changed by
+ placing the on the property.
+
+
+
+
+ Members with a default value but no JSON will be set to their default value when deserializing.
+
+
+
+
+ Ignore members where the member value is the same as the member's default value when serializing objects
+ and sets members to their default value when deserializing.
+
+
+
+
+ Specifies float format handling options when writing special floating point numbers, e.g. ,
+ and with .
+
+
+
+
+ Write special floating point values as strings in JSON, e.g. "NaN", "Infinity", "-Infinity".
+
+
+
+
+ Write special floating point values as symbols in JSON, e.g. NaN, Infinity, -Infinity.
+ Note that this will produce non-valid JSON.
+
+
+
+
+ Write special floating point values as the property's default value in JSON, e.g. 0.0 for a property, null for a property.
+
+
+
+
+ Specifies formatting options for the .
+
+
+
+
+ No special formatting is applied. This is the default.
+
+
+
+
+ Causes child objects to be indented according to the and settings.
+
+
+
+
+ Provides an interface to enable a class to return line and position information.
+
+
+
+
+ Gets a value indicating whether the class can return line information.
+
+
+ true if LineNumber and LinePosition can be provided; otherwise, false.
+
+
+
+
+ Gets the current line number.
+
+ The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
+
+
+
+ Gets the current line position.
+
+ The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
+
+
+
+ Instructs the how to serialize the collection.
+
+
+
+
+ Instructs the how to serialize the object.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with the specified container Id.
+
+ The container Id.
+
+
+
+ Gets or sets the id.
+
+ The id.
+
+
+
+ Gets or sets the title.
+
+ The title.
+
+
+
+ Gets or sets the description.
+
+ The description.
+
+
+
+ Gets the collection's items converter.
+
+ The collection's items converter.
+
+
+
+ Gets or sets a value that indicates whether to preserve object references.
+
+
+ true to keep object reference; otherwise, false. The default is false.
+
+
+
+
+ Gets or sets a value that indicates whether to preserve collection's items references.
+
+
+ true to keep collection's items object references; otherwise, false. The default is false.
+
+
+
+
+ Gets or sets the reference loop handling used when serializing the collection's items.
+
+ The reference loop handling.
+
+
+
+ Gets or sets the type name handling used when serializing the collection's items.
+
+ The type name handling.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with a flag indicating whether the array can contain null items
+
+ A flag indicating whether the array can contain null items.
+
+
+
+ Initializes a new instance of the class with the specified container Id.
+
+ The container Id.
+
+
+
+ Gets or sets a value indicating whether null items are allowed in the collection.
+
+ true if null items are allowed in the collection; otherwise, false.
+
+
+
+ Instructs the to use the specified constructor when deserializing that object.
+
+
+
+
+ Provides methods for converting between common language runtime types and JSON types.
+
+
+
+
+
+
+
+ Represents JavaScript's boolean value true as a string. This field is read-only.
+
+
+
+
+ Represents JavaScript's boolean value false as a string. This field is read-only.
+
+
+
+
+ Represents JavaScript's null as a string. This field is read-only.
+
+
+
+
+ Represents JavaScript's undefined as a string. This field is read-only.
+
+
+
+
+ Represents JavaScript's positive infinity as a string. This field is read-only.
+
+
+
+
+ Represents JavaScript's negative infinity as a string. This field is read-only.
+
+
+
+
+ Represents JavaScript's NaN as a string. This field is read-only.
+
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation using the specified.
+
+ The value to convert.
+ The format the date will be converted to.
+ The time zone handling when the date is converted to a string.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation using the specified.
+
+ The value to convert.
+ The format the date will be converted to.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ The string delimiter character.
+ A JSON string representation of the .
+
+
+
+ Converts the to its JSON string representation.
+
+ The value to convert.
+ A JSON string representation of the .
+
+
+
+ Serializes the specified object to a JSON string.
+
+ The object to serialize.
+ A JSON string representation of the object.
+
+
+
+ Serializes the specified object to a JSON string.
+
+ The object to serialize.
+ Indicates how the output is formatted.
+
+ A JSON string representation of the object.
+
+
+
+
+ Serializes the specified object to a JSON string using a collection of .
+
+ The object to serialize.
+ A collection converters used while serializing.
+ A JSON string representation of the object.
+
+
+
+ Serializes the specified object to a JSON string using a collection of .
+
+ The object to serialize.
+ Indicates how the output is formatted.
+ A collection converters used while serializing.
+ A JSON string representation of the object.
+
+
+
+ Serializes the specified object to a JSON string using a collection of .
+
+ The object to serialize.
+ The used to serialize the object.
+ If this is null, default serialization settings will be is used.
+
+ A JSON string representation of the object.
+
+
+
+
+ Serializes the specified object to a JSON string using a collection of .
+
+ The object to serialize.
+ Indicates how the output is formatted.
+ The used to serialize the object.
+ If this is null, default serialization settings will be is used.
+
+ A JSON string representation of the object.
+
+
+
+
+ Serializes the specified object to a JSON string using a collection of .
+
+ The object to serialize.
+ Indicates how the output is formatted.
+ The used to serialize the object.
+ If this is null, default serialization settings will be is used.
+
+ The type of the value being serialized.
+ This parameter is used when is Auto to write out the type name if the type of the value does not match.
+ Specifing the type is optional.
+
+
+ A JSON string representation of the object.
+
+
+
+
+ Asynchronously serializes the specified object to a JSON string using a collection of .
+
+ The object to serialize.
+
+ A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object.
+
+
+
+
+ Asynchronously serializes the specified object to a JSON string using a collection of .
+
+ The object to serialize.
+ Indicates how the output is formatted.
+
+ A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object.
+
+
+
+
+ Asynchronously serializes the specified object to a JSON string using a collection of .
+
+ The object to serialize.
+ Indicates how the output is formatted.
+ The used to serialize the object.
+ If this is null, default serialization settings will be is used.
+
+ A task that represents the asynchronous serialize operation. The value of the TResult parameter contains a JSON string representation of the object.
+
+
+
+
+ Deserializes the JSON to a .NET object.
+
+ The JSON to deserialize.
+ The deserialized object from the Json string.
+
+
+
+ Deserializes the JSON to a .NET object.
+
+ The JSON to deserialize.
+
+ The used to deserialize the object.
+ If this is null, default serialization settings will be is used.
+
+ The deserialized object from the JSON string.
+
+
+
+ Deserializes the JSON to the specified .NET type.
+
+ The JSON to deserialize.
+ The of object being deserialized.
+ The deserialized object from the Json string.
+
+
+
+ Deserializes the JSON to the specified .NET type.
+
+ The type of the object to deserialize to.
+ The JSON to deserialize.
+ The deserialized object from the Json string.
+
+
+
+ Deserializes the JSON to the given anonymous type.
+
+
+ The anonymous type to deserialize to. This can't be specified
+ traditionally and must be infered from the anonymous type passed
+ as a parameter.
+
+ The JSON to deserialize.
+ The anonymous type object.
+ The deserialized anonymous type from the JSON string.
+
+
+
+ Deserializes the JSON to the given anonymous type.
+
+
+ The anonymous type to deserialize to. This can't be specified
+ traditionally and must be infered from the anonymous type passed
+ as a parameter.
+
+ The JSON to deserialize.
+ The anonymous type object.
+
+ The used to deserialize the object.
+ If this is null, default serialization settings will be is used.
+
+ The deserialized anonymous type from the JSON string.
+
+
+
+ Deserializes the JSON to the specified .NET type.
+
+ The type of the object to deserialize to.
+ The JSON to deserialize.
+ Converters to use while deserializing.
+ The deserialized object from the JSON string.
+
+
+
+ Deserializes the JSON to the specified .NET type.
+
+ The type of the object to deserialize to.
+ The object to deserialize.
+
+ The used to deserialize the object.
+ If this is null, default serialization settings will be is used.
+
+ The deserialized object from the JSON string.
+
+
+
+ Deserializes the JSON to the specified .NET type.
+
+ The JSON to deserialize.
+ The type of the object to deserialize.
+ Converters to use while deserializing.
+ The deserialized object from the JSON string.
+
+
+
+ Deserializes the JSON to the specified .NET type.
+
+ The JSON to deserialize.
+ The type of the object to deserialize to.
+
+ The used to deserialize the object.
+ If this is null, default serialization settings will be is used.
+
+ The deserialized object from the JSON string.
+
+
+
+ Asynchronously deserializes the JSON to the specified .NET type.
+
+ The type of the object to deserialize to.
+ The JSON to deserialize.
+
+ A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string.
+
+
+
+
+ Asynchronously deserializes the JSON to the specified .NET type.
+
+ The type of the object to deserialize to.
+ The JSON to deserialize.
+
+ The used to deserialize the object.
+ If this is null, default serialization settings will be is used.
+
+
+ A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string.
+
+
+
+
+ Asynchronously deserializes the JSON to the specified .NET type.
+
+ The JSON to deserialize.
+
+ A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string.
+
+
+
+
+ Asynchronously deserializes the JSON to the specified .NET type.
+
+ The JSON to deserialize.
+ The type of the object to deserialize to.
+
+ The used to deserialize the object.
+ If this is null, default serialization settings will be is used.
+
+
+ A task that represents the asynchronous deserialize operation. The value of the TResult parameter contains the deserialized object from the JSON string.
+
+
+
+
+ Populates the object with values from the JSON string.
+
+ The JSON to populate values from.
+ The target object to populate values onto.
+
+
+
+ Populates the object with values from the JSON string.
+
+ The JSON to populate values from.
+ The target object to populate values onto.
+
+ The used to deserialize the object.
+ If this is null, default serialization settings will be is used.
+
+
+
+
+ Asynchronously populates the object with values from the JSON string.
+
+ The JSON to populate values from.
+ The target object to populate values onto.
+
+ The used to deserialize the object.
+ If this is null, default serialization settings will be is used.
+
+
+ A task that represents the asynchronous populate operation.
+
+
+
+
+ Serializes the XML node to a JSON string.
+
+ The node to serialize.
+ A JSON string of the XmlNode.
+
+
+
+ Serializes the XML node to a JSON string.
+
+ The node to serialize.
+ Indicates how the output is formatted.
+ A JSON string of the XmlNode.
+
+
+
+ Serializes the XML node to a JSON string.
+
+ The node to serialize.
+ Indicates how the output is formatted.
+ Omits writing the root object.
+ A JSON string of the XmlNode.
+
+
+
+ Deserializes the XmlNode from a JSON string.
+
+ The JSON string.
+ The deserialized XmlNode
+
+
+
+ Deserializes the XmlNode from a JSON string nested in a root elment.
+
+ The JSON string.
+ The name of the root element to append when deserializing.
+ The deserialized XmlNode
+
+
+
+ Deserializes the XmlNode from a JSON string nested in a root elment.
+
+ The JSON string.
+ The name of the root element to append when deserializing.
+
+ A flag to indicate whether to write the Json.NET array attribute.
+ This attribute helps preserve arrays when converting the written XML back to JSON.
+
+ The deserialized XmlNode
+
+
+
+ Serializes the to a JSON string.
+
+ The node to convert to JSON.
+ A JSON string of the XNode.
+
+
+
+ Serializes the to a JSON string.
+
+ The node to convert to JSON.
+ Indicates how the output is formatted.
+ A JSON string of the XNode.
+
+
+
+ Serializes the to a JSON string.
+
+ The node to serialize.
+ Indicates how the output is formatted.
+ Omits writing the root object.
+ A JSON string of the XNode.
+
+
+
+ Deserializes the from a JSON string.
+
+ The JSON string.
+ The deserialized XNode
+
+
+
+ Deserializes the from a JSON string nested in a root elment.
+
+ The JSON string.
+ The name of the root element to append when deserializing.
+ The deserialized XNode
+
+
+
+ Deserializes the from a JSON string nested in a root elment.
+
+ The JSON string.
+ The name of the root element to append when deserializing.
+
+ A flag to indicate whether to write the Json.NET array attribute.
+ This attribute helps preserve arrays when converting the written XML back to JSON.
+
+ The deserialized XNode
+
+
+
+ Instructs the to use the specified when serializing the member or class.
+
+
+
+
+ Initializes a new instance of the class.
+
+ Type of the converter.
+
+
+
+ Gets the type of the converter.
+
+ The type of the converter.
+
+
+
+ Represents a collection of .
+
+
+
+
+ Instructs the how to serialize the collection.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with the specified container Id.
+
+ The container Id.
+
+
+
+ The exception thrown when an error occurs during Json serialization or deserialization.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class
+ with a specified error message.
+
+ The error message that explains the reason for the exception.
+
+
+
+ Initializes a new instance of the class
+ with a specified error message and a reference to the inner exception that is the cause of this exception.
+
+ The error message that explains the reason for the exception.
+ The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Instructs the not to serialize the public field or public read/write property value.
+
+
+
+
+ Instructs the how to serialize the object.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with the specified member serialization.
+
+ The member serialization.
+
+
+
+ Initializes a new instance of the class with the specified container Id.
+
+ The container Id.
+
+
+
+ Gets or sets the member serialization.
+
+ The member serialization.
+
+
+
+ Gets or sets a value that indicates whether the object's properties are required.
+
+
+ A value indicating whether the object's properties are required.
+
+
+
+
+ Instructs the to always serialize the member with the specified name.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class with the specified name.
+
+ Name of the property.
+
+
+
+ Gets or sets the converter used when serializing the property's collection items.
+
+ The collection's items converter.
+
+
+
+ Gets or sets the null value handling used when serializing this property.
+
+ The null value handling.
+
+
+
+ Gets or sets the default value handling used when serializing this property.
+
+ The default value handling.
+
+
+
+ Gets or sets the reference loop handling used when serializing this property.
+
+ The reference loop handling.
+
+
+
+ Gets or sets the object creation handling used when deserializing this property.
+
+ The object creation handling.
+
+
+
+ Gets or sets the type name handling used when serializing this property.
+
+ The type name handling.
+
+
+
+ Gets or sets whether this property's value is serialized as a reference.
+
+ Whether this property's value is serialized as a reference.
+
+
+
+ Gets or sets the order of serialization and deserialization of a member.
+
+ The numeric order of serialization or deserialization.
+
+
+
+ Gets or sets a value indicating whether this property is required.
+
+
+ A value indicating whether this property is required.
+
+
+
+
+ Gets or sets the name of the property.
+
+ The name of the property.
+
+
+
+ Gets or sets the the reference loop handling used when serializing the property's collection items.
+
+ The collection's items reference loop handling.
+
+
+
+ Gets or sets the the type name handling used when serializing the property's collection items.
+
+ The collection's items type name handling.
+
+
+
+ Gets or sets whether this property's collection items are serialized as a reference.
+
+ Whether this property's collection items are serialized as a reference.
+
+
+
+ The exception thrown when an error occurs while reading Json text.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class
+ with a specified error message.
+
+ The error message that explains the reason for the exception.
+
+
+
+ Initializes a new instance of the class
+ with a specified error message and a reference to the inner exception that is the cause of this exception.
+
+ The error message that explains the reason for the exception.
+ The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Gets the line number indicating where the error occurred.
+
+ The line number indicating where the error occurred.
+
+
+
+ Gets the line position indicating where the error occurred.
+
+ The line position indicating where the error occurred.
+
+
+
+ Gets the path to the JSON where the error occurred.
+
+ The path to the JSON where the error occurred.
+
+
+
+ The exception thrown when an error occurs during Json serialization or deserialization.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class
+ with a specified error message.
+
+ The error message that explains the reason for the exception.
+
+
+
+ Initializes a new instance of the class
+ with a specified error message and a reference to the inner exception that is the cause of this exception.
+
+ The error message that explains the reason for the exception.
+ The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Serializes and deserializes objects into and from the JSON format.
+ The enables you to control how objects are encoded into JSON.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Creates a new instance using the specified .
+
+ The settings to be applied to the .
+ A new instance using the specified .
+
+
+
+ Populates the JSON values onto the target object.
+
+ The that contains the JSON structure to reader values from.
+ The target object to populate values onto.
+
+
+
+ Populates the JSON values onto the target object.
+
+ The that contains the JSON structure to reader values from.
+ The target object to populate values onto.
+
+
+
+ Deserializes the Json structure contained by the specified .
+
+ The that contains the JSON structure to deserialize.
+ The being deserialized.
+
+
+
+ Deserializes the Json structure contained by the specified
+ into an instance of the specified type.
+
+ The containing the object.
+ The of object being deserialized.
+ The instance of being deserialized.
+
+
+
+ Deserializes the Json structure contained by the specified
+ into an instance of the specified type.
+
+ The containing the object.
+ The type of the object to deserialize.
+ The instance of being deserialized.
+
+
+
+ Deserializes the Json structure contained by the specified
+ into an instance of the specified type.
+
+ The containing the object.
+ The of object being deserialized.
+ The instance of being deserialized.
+
+
+
+ Serializes the specified and writes the Json structure
+ to a Stream using the specified .
+
+ The used to write the Json structure.
+ The to serialize.
+
+
+
+ Serializes the specified and writes the Json structure
+ to a Stream using the specified .
+
+ The used to write the Json structure.
+ The to serialize.
+
+ The type of the value being serialized.
+ This parameter is used when is Auto to write out the type name if the type of the value does not match.
+ Specifing the type is optional.
+
+
+
+
+ Serializes the specified and writes the Json structure
+ to a Stream using the specified .
+
+ The used to write the Json structure.
+ The to serialize.
+
+ The type of the value being serialized.
+ This parameter is used when is Auto to write out the type name if the type of the value does not match.
+ Specifing the type is optional.
+
+
+
+
+ Serializes the specified and writes the Json structure
+ to a Stream using the specified .
+
+ The used to write the Json structure.
+ The to serialize.
+
+
+
+ Occurs when the errors during serialization and deserialization.
+
+
+
+
+ Gets or sets the used by the serializer when resolving references.
+
+
+
+
+ Gets or sets the used by the serializer when resolving type names.
+
+
+
+
+ Gets or sets the used by the serializer when writing trace messages.
+
+ The trace writer.
+
+
+
+ Gets or sets how type name writing and reading is handled by the serializer.
+
+
+
+
+ Gets or sets how a type name assembly is written and resolved by the serializer.
+
+ The type name assembly format.
+
+
+
+ Gets or sets how object references are preserved by the serializer.
+
+
+
+
+ Get or set how reference loops (e.g. a class referencing itself) is handled.
+
+
+
+
+ Get or set how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
+
+
+
+
+ Get or set how null values are handled during serialization and deserialization.
+
+
+
+
+ Get or set how null default are handled during serialization and deserialization.
+
+
+
+
+ Gets or sets how objects are created during deserialization.
+
+ The object creation handling.
+
+
+
+ Gets or sets how constructors are used during deserialization.
+
+ The constructor handling.
+
+
+
+ Gets a collection that will be used during serialization.
+
+ Collection that will be used during serialization.
+
+
+
+ Gets or sets the contract resolver used by the serializer when
+ serializing .NET objects to JSON and vice versa.
+
+
+
+
+ Gets or sets the used by the serializer when invoking serialization callback methods.
+
+ The context.
+
+
+
+ Indicates how JSON text output is formatted.
+
+
+
+
+ Get or set how dates are written to JSON text.
+
+
+
+
+ Get or set how time zones are handling during serialization and deserialization.
+
+
+
+
+ Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
+
+
+
+
+ Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
+
+
+
+
+ Get or set how special floating point numbers, e.g. ,
+ and ,
+ are written as JSON text.
+
+
+
+
+ Get or set how strings are escaped when writing JSON text.
+
+
+
+
+ Get or set how and values are formatting when writing JSON text.
+
+
+
+
+ Gets or sets the culture used when reading JSON. Defaults to .
+
+
+
+
+ Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a .
+
+
+
+
+ Gets a value indicating whether there will be a check for additional JSON content after deserializing an object.
+
+
+ true if there will be a check for additional JSON content after deserializing an object; otherwise, false.
+
+
+
+
+ Specifies the settings on a object.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets or sets how reference loops (e.g. a class referencing itself) is handled.
+
+ Reference loop handling.
+
+
+
+ Gets or sets how missing members (e.g. JSON contains a property that isn't a member on the object) are handled during deserialization.
+
+ Missing member handling.
+
+
+
+ Gets or sets how objects are created during deserialization.
+
+ The object creation handling.
+
+
+
+ Gets or sets how null values are handled during serialization and deserialization.
+
+ Null value handling.
+
+
+
+ Gets or sets how null default are handled during serialization and deserialization.
+
+ The default value handling.
+
+
+
+ Gets or sets a collection that will be used during serialization.
+
+ The converters.
+
+
+
+ Gets or sets how object references are preserved by the serializer.
+
+ The preserve references handling.
+
+
+
+ Gets or sets how type name writing and reading is handled by the serializer.
+
+ The type name handling.
+
+
+
+ Gets or sets how a type name assembly is written and resolved by the serializer.
+
+ The type name assembly format.
+
+
+
+ Gets or sets how constructors are used during deserialization.
+
+ The constructor handling.
+
+
+
+ Gets or sets the contract resolver used by the serializer when
+ serializing .NET objects to JSON and vice versa.
+
+ The contract resolver.
+
+
+
+ Gets or sets the used by the serializer when resolving references.
+
+ The reference resolver.
+
+
+
+ Gets or sets the used by the serializer when writing trace messages.
+
+ The trace writer.
+
+
+
+ Gets or sets the used by the serializer when resolving type names.
+
+ The binder.
+
+
+
+ Gets or sets the error handler called during serialization and deserialization.
+
+ The error handler called during serialization and deserialization.
+
+
+
+ Gets or sets the used by the serializer when invoking serialization callback methods.
+
+ The context.
+
+
+
+ Get or set how and values are formatting when writing JSON text.
+
+
+
+
+ Gets or sets the maximum depth allowed when reading JSON. Reading past this depth will throw a .
+
+
+
+
+ Indicates how JSON text output is formatted.
+
+
+
+
+ Get or set how dates are written to JSON text.
+
+
+
+
+ Get or set how time zones are handling during serialization and deserialization.
+
+
+
+
+ Get or set how date formatted strings, e.g. "\/Date(1198908717056)\/" and "2012-03-21T05:40Z", are parsed when reading JSON.
+
+
+
+
+ Get or set how special floating point numbers, e.g. ,
+ and ,
+ are written as JSON.
+
+
+
+
+ Get or set how floating point numbers, e.g. 1.0 and 9.9, are parsed when reading JSON text.
+
+
+
+
+ Get or set how strings are escaped when writing JSON text.
+
+
+
+
+ Gets or sets the culture used when reading JSON. Defaults to .
+
+
+
+
+ Gets a value indicating whether there will be a check for additional content after deserializing an object.
+
+
+ true if there will be a check for additional content after deserializing an object; otherwise, false.
+
+
+
+
+ Represents a reader that provides fast, non-cached, forward-only access to JSON text data.
+
+
+
+
+ Initializes a new instance of the class with the specified .
+
+ The TextReader containing the XML data to read.
+
+
+
+ Reads the next JSON token from the stream.
+
+
+ true if the next token was read successfully; false if there are no more tokens to read.
+
+
+
+
+ Reads the next JSON token from the stream as a .
+
+
+ A or a null reference if the next JSON token is null. This method will return null at the end of an array.
+
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Changes the state to closed.
+
+
+
+
+ Gets a value indicating whether the class can return line information.
+
+
+ true if LineNumber and LinePosition can be provided; otherwise, false.
+
+
+
+
+ Gets the current line number.
+
+
+ The current line number or 0 if no line information is available (for example, HasLineInfo returns false).
+
+
+
+
+ Gets the current line position.
+
+
+ The current line position or 0 if no line information is available (for example, HasLineInfo returns false).
+
+
+
+
+ Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
+
+
+
+
+ Creates an instance of the JsonWriter class using the specified .
+
+ The TextWriter to write to.
+
+
+
+ Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
+
+
+
+
+ Closes this stream and the underlying stream.
+
+
+
+
+ Writes the beginning of a Json object.
+
+
+
+
+ Writes the beginning of a Json array.
+
+
+
+
+ Writes the start of a constructor with the given name.
+
+ The name of the constructor.
+
+
+
+ Writes the specified end token.
+
+ The end token to write.
+
+
+
+ Writes the property name of a name/value pair on a Json object.
+
+ The name of the property.
+
+
+
+ Writes the property name of a name/value pair on a JSON object.
+
+ The name of the property.
+ A flag to indicate whether the text should be escaped when it is written as a JSON property name.
+
+
+
+ Writes indent characters.
+
+
+
+
+ Writes the JSON value delimiter.
+
+
+
+
+ Writes an indent space.
+
+
+
+
+ Writes a value.
+ An error will raised if the value cannot be written as a single JSON token.
+
+ The value to write.
+
+
+
+ Writes a null value.
+
+
+
+
+ Writes an undefined value.
+
+
+
+
+ Writes raw JSON.
+
+ The raw JSON to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes out a comment /*...*/ containing the specified text.
+
+ Text to place inside the comment.
+
+
+
+ Writes out the given white space.
+
+ The string of white space characters.
+
+
+
+ Gets or sets how many IndentChars to write for each level in the hierarchy when is set to Formatting.Indented.
+
+
+
+
+ Gets or sets which character to use to quote attribute values.
+
+
+
+
+ Gets or sets which character to use for indenting when is set to Formatting.Indented.
+
+
+
+
+ Gets or sets a value indicating whether object names will be surrounded with quotes.
+
+
+
+
+ Specifies the type of Json token.
+
+
+
+
+ This is returned by the if a method has not been called.
+
+
+
+
+ An object start token.
+
+
+
+
+ An array start token.
+
+
+
+
+ A constructor start token.
+
+
+
+
+ An object property name.
+
+
+
+
+ A comment.
+
+
+
+
+ Raw JSON.
+
+
+
+
+ An integer.
+
+
+
+
+ A float.
+
+
+
+
+ A string.
+
+
+
+
+ A boolean.
+
+
+
+
+ A null token.
+
+
+
+
+ An undefined token.
+
+
+
+
+ An object end token.
+
+
+
+
+ An array end token.
+
+
+
+
+ A constructor end token.
+
+
+
+
+ A Date.
+
+
+
+
+ Byte data.
+
+
+
+
+ Represents a reader that provides validation.
+
+
+
+
+ Initializes a new instance of the class that
+ validates the content returned from the given .
+
+ The to read from while validating.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A .
+
+
+
+ Reads the next JSON token from the stream as a .
+
+
+ A or a null reference if the next JSON token is null.
+
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A .
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A .
+
+
+
+ Reads the next JSON token from the stream.
+
+
+ true if the next token was read successfully; false if there are no more tokens to read.
+
+
+
+
+ Sets an event handler for receiving schema validation errors.
+
+
+
+
+ Gets the text value of the current JSON token.
+
+
+
+
+
+ Gets the depth of the current token in the JSON document.
+
+ The depth of the current token in the JSON document.
+
+
+
+ Gets the path of the current JSON token.
+
+
+
+
+ Gets the quotation mark character used to enclose the value of a string.
+
+
+
+
+
+ Gets the type of the current JSON token.
+
+
+
+
+
+ Gets the Common Language Runtime (CLR) type for the current JSON token.
+
+
+
+
+
+ Gets or sets the schema.
+
+ The schema.
+
+
+
+ Gets the used to construct this .
+
+ The specified in the constructor.
+
+
+
+ The exception thrown when an error occurs while reading Json text.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class
+ with a specified error message.
+
+ The error message that explains the reason for the exception.
+
+
+
+ Initializes a new instance of the class
+ with a specified error message and a reference to the inner exception that is the cause of this exception.
+
+ The error message that explains the reason for the exception.
+ The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Gets the path to the JSON where the error occurred.
+
+ The path to the JSON where the error occurred.
+
+
+
+ Contains the LINQ to JSON extension methods.
+
+
+
+
+ Returns a collection of tokens that contains the ancestors of every token in the source collection.
+
+ The type of the objects in source, constrained to .
+ An of that contains the source collection.
+ An of that contains the ancestors of every node in the source collection.
+
+
+
+ Returns a collection of tokens that contains the descendants of every token in the source collection.
+
+ The type of the objects in source, constrained to .
+ An of that contains the source collection.
+ An of that contains the descendants of every node in the source collection.
+
+
+
+ Returns a collection of child properties of every object in the source collection.
+
+ An of that contains the source collection.
+ An of that contains the properties of every object in the source collection.
+
+
+
+ Returns a collection of child values of every object in the source collection with the given key.
+
+ An of that contains the source collection.
+ The token key.
+ An of that contains the values of every node in the source collection with the given key.
+
+
+
+ Returns a collection of child values of every object in the source collection.
+
+ An of that contains the source collection.
+ An of that contains the values of every node in the source collection.
+
+
+
+ Returns a collection of converted child values of every object in the source collection with the given key.
+
+ The type to convert the values to.
+ An of that contains the source collection.
+ The token key.
+ An that contains the converted values of every node in the source collection with the given key.
+
+
+
+ Returns a collection of converted child values of every object in the source collection.
+
+ The type to convert the values to.
+ An of that contains the source collection.
+ An that contains the converted values of every node in the source collection.
+
+
+
+ Converts the value.
+
+ The type to convert the value to.
+ A cast as a of .
+ A converted value.
+
+
+
+ Converts the value.
+
+ The source collection type.
+ The type to convert the value to.
+ A cast as a of .
+ A converted value.
+
+
+
+ Returns a collection of child tokens of every array in the source collection.
+
+ The source collection type.
+ An of that contains the source collection.
+ An of that contains the values of every node in the source collection.
+
+
+
+ Returns a collection of converted child tokens of every array in the source collection.
+
+ An of that contains the source collection.
+ The type to convert the values to.
+ The source collection type.
+ An that contains the converted values of every node in the source collection.
+
+
+
+ Returns the input typed as .
+
+ An of that contains the source collection.
+ The input typed as .
+
+
+
+ Returns the input typed as .
+
+ The source collection type.
+ An of that contains the source collection.
+ The input typed as .
+
+
+
+ Represents a collection of objects.
+
+ The type of token
+
+
+
+ Gets the with the specified key.
+
+
+
+
+
+ Represents a JSON array.
+
+
+
+
+
+
+
+ Represents a token that can contain other tokens.
+
+
+
+
+ Represents an abstract JSON token.
+
+
+
+
+ Compares the values of two tokens, including the values of all descendant tokens.
+
+ The first to compare.
+ The second to compare.
+ true if the tokens are equal; otherwise false.
+
+
+
+ Adds the specified content immediately after this token.
+
+ A content object that contains simple content or a collection of content objects to be added after this token.
+
+
+
+ Adds the specified content immediately before this token.
+
+ A content object that contains simple content or a collection of content objects to be added before this token.
+
+
+
+ Returns a collection of the ancestor tokens of this token.
+
+ A collection of the ancestor tokens of this token.
+
+
+
+ Returns a collection of the sibling tokens after this token, in document order.
+
+ A collection of the sibling tokens after this tokens, in document order.
+
+
+
+ Returns a collection of the sibling tokens before this token, in document order.
+
+ A collection of the sibling tokens before this token, in document order.
+
+
+
+ Gets the with the specified key converted to the specified type.
+
+ The type to convert the token to.
+ The token key.
+ The converted token value.
+
+
+
+ Returns a collection of the child tokens of this token, in document order.
+
+ An of containing the child tokens of this , in document order.
+
+
+
+ Returns a collection of the child tokens of this token, in document order, filtered by the specified type.
+
+ The type to filter the child tokens on.
+ A containing the child tokens of this , in document order.
+
+
+
+ Returns a collection of the child values of this token, in document order.
+
+ The type to convert the values to.
+ A containing the child values of this , in document order.
+
+
+
+ Removes this token from its parent.
+
+
+
+
+ Replaces this token with the specified token.
+
+ The value.
+
+
+
+ Writes this token to a .
+
+ A into which this method will write.
+ A collection of which will be used when writing the token.
+
+
+
+ Returns the indented JSON for this token.
+
+
+ The indented JSON for this token.
+
+
+
+
+ Returns the JSON for this token using the given formatting and converters.
+
+ Indicates how the output is formatted.
+ A collection of which will be used when writing the token.
+ The JSON for this token using the given formatting and converters.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an explicit conversion from to .
+
+ The value.
+ The result of the conversion.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Performs an implicit conversion from to .
+
+ The value to create a from.
+ The initialized with the specified value.
+
+
+
+ Creates an for this token.
+
+ An that can be used to read this token and its descendants.
+
+
+
+ Creates a from an object.
+
+ The object that will be used to create .
+ A with the value of the specified object
+
+
+
+ Creates a from an object using the specified .
+
+ The object that will be used to create .
+ The that will be used when reading the object.
+ A with the value of the specified object
+
+
+
+ Creates the specified .NET type from the .
+
+ The object type that the token will be deserialized to.
+ The new object created from the JSON value.
+
+
+
+ Creates the specified .NET type from the .
+
+ The object type that the token will be deserialized to.
+ The new object created from the JSON value.
+
+
+
+ Creates the specified .NET type from the using the specified .
+
+ The object type that the token will be deserialized to.
+ The that will be used when creating the object.
+ The new object created from the JSON value.
+
+
+
+ Creates the specified .NET type from the using the specified .
+
+ The object type that the token will be deserialized to.
+ The that will be used when creating the object.
+ The new object created from the JSON value.
+
+
+
+ Creates a from a .
+
+ An positioned at the token to read into this .
+
+ An that contains the token and its descendant tokens
+ that were read from the reader. The runtime type of the token is determined
+ by the token type of the first token encountered in the reader.
+
+
+
+
+ Load a from a string that contains JSON.
+
+ A that contains JSON.
+ A populated from the string that contains JSON.
+
+
+
+ Creates a from a .
+
+ An positioned at the token to read into this .
+
+ An that contains the token and its descendant tokens
+ that were read from the reader. The runtime type of the token is determined
+ by the token type of the first token encountered in the reader.
+
+
+
+
+ Selects the token that matches the object path.
+
+
+ The object path from the current to the
+ to be returned. This must be a string of property names or array indexes separated
+ by periods, such as Tables[0].DefaultView[0].Price in C# or
+ Tables(0).DefaultView(0).Price in Visual Basic.
+
+ The that matches the object path or a null reference if no matching token is found.
+
+
+
+ Selects the token that matches the object path.
+
+
+ The object path from the current to the
+ to be returned. This must be a string of property names or array indexes separated
+ by periods, such as Tables[0].DefaultView[0].Price in C# or
+ Tables(0).DefaultView(0).Price in Visual Basic.
+
+ A flag to indicate whether an error should be thrown if no token is found.
+ The that matches the object path.
+
+
+
+ Returns the responsible for binding operations performed on this object.
+
+ The expression tree representation of the runtime value.
+
+ The to bind this object.
+
+
+
+
+ Returns the responsible for binding operations performed on this object.
+
+ The expression tree representation of the runtime value.
+
+ The to bind this object.
+
+
+
+
+ Creates a new instance of the . All child tokens are recursively cloned.
+
+ A new instance of the .
+
+
+
+ Gets a comparer that can compare two tokens for value equality.
+
+ A that can compare two nodes for value equality.
+
+
+
+ Gets or sets the parent.
+
+ The parent.
+
+
+
+ Gets the root of this .
+
+ The root of this .
+
+
+
+ Gets the node type for this .
+
+ The type.
+
+
+
+ Gets a value indicating whether this token has childen tokens.
+
+
+ true if this token has child values; otherwise, false.
+
+
+
+
+ Gets the next sibling token of this node.
+
+ The that contains the next sibling token.
+
+
+
+ Gets the previous sibling token of this node.
+
+ The that contains the previous sibling token.
+
+
+
+ Gets the path of the JSON token.
+
+
+
+
+ Gets the with the specified key.
+
+ The with the specified key.
+
+
+
+ Get the first child token of this token.
+
+ A containing the first child token of the .
+
+
+
+ Get the last child token of this token.
+
+ A containing the last child token of the .
+
+
+
+ Raises the event.
+
+ The instance containing the event data.
+
+
+
+ Raises the event.
+
+ The instance containing the event data.
+
+
+
+ Raises the event.
+
+ The instance containing the event data.
+
+
+
+ Returns a collection of the child tokens of this token, in document order.
+
+
+ An of containing the child tokens of this , in document order.
+
+
+
+
+ Returns a collection of the child values of this token, in document order.
+
+ The type to convert the values to.
+
+ A containing the child values of this , in document order.
+
+
+
+
+ Returns a collection of the descendant tokens for this token in document order.
+
+ An containing the descendant tokens of the .
+
+
+
+ Adds the specified content as children of this .
+
+ The content to be added.
+
+
+
+ Adds the specified content as the first children of this .
+
+ The content to be added.
+
+
+
+ Creates an that can be used to add tokens to the .
+
+ An that is ready to have content written to it.
+
+
+
+ Replaces the children nodes of this token with the specified content.
+
+ The content.
+
+
+
+ Removes the child nodes from this token.
+
+
+
+
+ Occurs when the list changes or an item in the list changes.
+
+
+
+
+ Occurs before an item is added to the collection.
+
+
+
+
+ Occurs when the items list of the collection has changed, or the collection is reset.
+
+
+
+
+ Gets the container's children tokens.
+
+ The container's children tokens.
+
+
+
+ Gets a value indicating whether this token has childen tokens.
+
+
+ true if this token has child values; otherwise, false.
+
+
+
+
+ Get the first child token of this token.
+
+
+ A containing the first child token of the .
+
+
+
+
+ Get the last child token of this token.
+
+
+ A containing the last child token of the .
+
+
+
+
+ Gets the count of child JSON tokens.
+
+ The count of child JSON tokens
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class from another object.
+
+ A object to copy from.
+
+
+
+ Initializes a new instance of the class with the specified content.
+
+ The contents of the array.
+
+
+
+ Initializes a new instance of the class with the specified content.
+
+ The contents of the array.
+
+
+
+ Loads an from a .
+
+ A that will be read for the content of the .
+ A that contains the JSON that was read from the specified .
+
+
+
+ Load a from a string that contains JSON.
+
+ A that contains JSON.
+ A populated from the string that contains JSON.
+
+
+
+
+
+
+ Creates a from an object.
+
+ The object that will be used to create .
+ A with the values of the specified object
+
+
+
+ Creates a from an object.
+
+ The object that will be used to create .
+ The that will be used to read the object.
+ A with the values of the specified object
+
+
+
+ Writes this token to a .
+
+ A into which this method will write.
+ A collection of which will be used when writing the token.
+
+
+
+ Determines the index of a specific item in the .
+
+ The object to locate in the .
+
+ The index of if found in the list; otherwise, -1.
+
+
+
+
+ Inserts an item to the at the specified index.
+
+ The zero-based index at which should be inserted.
+ The object to insert into the .
+
+ is not a valid index in the .
+ The is read-only.
+
+
+
+ Removes the item at the specified index.
+
+ The zero-based index of the item to remove.
+
+ is not a valid index in the .
+ The is read-only.
+
+
+
+ Adds an item to the .
+
+ The object to add to the .
+ The is read-only.
+
+
+
+ Removes all items from the .
+
+ The is read-only.
+
+
+
+ Determines whether the contains a specific value.
+
+ The object to locate in the .
+
+ true if is found in the ; otherwise, false.
+
+
+
+
+ Removes the first occurrence of a specific object from the .
+
+ The object to remove from the .
+
+ true if was successfully removed from the ; otherwise, false. This method also returns false if is not found in the original .
+
+ The is read-only.
+
+
+
+ Gets the container's children tokens.
+
+ The container's children tokens.
+
+
+
+ Gets the node type for this .
+
+ The type.
+
+
+
+ Gets the with the specified key.
+
+ The with the specified key.
+
+
+
+ Gets or sets the at the specified index.
+
+
+
+
+
+ Represents a JSON constructor.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class from another object.
+
+ A object to copy from.
+
+
+
+ Initializes a new instance of the class with the specified name and content.
+
+ The constructor name.
+ The contents of the constructor.
+
+
+
+ Initializes a new instance of the class with the specified name and content.
+
+ The constructor name.
+ The contents of the constructor.
+
+
+
+ Initializes a new instance of the class with the specified name.
+
+ The constructor name.
+
+
+
+ Writes this token to a .
+
+ A into which this method will write.
+ A collection of which will be used when writing the token.
+
+
+
+ Loads an from a .
+
+ A that will be read for the content of the .
+ A that contains the JSON that was read from the specified .
+
+
+
+ Gets the container's children tokens.
+
+ The container's children tokens.
+
+
+
+ Gets or sets the name of this constructor.
+
+ The constructor name.
+
+
+
+ Gets the node type for this .
+
+ The type.
+
+
+
+ Gets the with the specified key.
+
+ The with the specified key.
+
+
+
+ Represents a collection of objects.
+
+ The type of token
+
+
+
+ An empty collection of objects.
+
+
+
+
+ Initializes a new instance of the struct.
+
+ The enumerable.
+
+
+
+ Returns an enumerator that iterates through the collection.
+
+
+ A that can be used to iterate through the collection.
+
+
+
+
+ Returns an enumerator that iterates through a collection.
+
+
+ An object that can be used to iterate through the collection.
+
+
+
+
+ Determines whether the specified is equal to this instance.
+
+ The to compare with this instance.
+
+ true if the specified is equal to this instance; otherwise, false.
+
+
+
+
+ Returns a hash code for this instance.
+
+
+ A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table.
+
+
+
+
+ Gets the with the specified key.
+
+
+
+
+
+ Represents a JSON object.
+
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class from another object.
+
+ A object to copy from.
+
+
+
+ Initializes a new instance of the class with the specified content.
+
+ The contents of the object.
+
+
+
+ Initializes a new instance of the class with the specified content.
+
+ The contents of the object.
+
+
+
+ Gets an of this object's properties.
+
+ An of this object's properties.
+
+
+
+ Gets a the specified name.
+
+ The property name.
+ A with the specified name or null.
+
+
+
+ Gets an of this object's property values.
+
+ An of this object's property values.
+
+
+
+ Loads an from a .
+
+ A that will be read for the content of the .
+ A that contains the JSON that was read from the specified .
+
+
+
+ Load a from a string that contains JSON.
+
+ A that contains JSON.
+ A populated from the string that contains JSON.
+
+
+
+
+
+
+ Creates a from an object.
+
+ The object that will be used to create .
+ A with the values of the specified object
+
+
+
+ Creates a from an object.
+
+ The object that will be used to create .
+ The that will be used to read the object.
+ A with the values of the specified object
+
+
+
+ Writes this token to a .
+
+ A into which this method will write.
+ A collection of which will be used when writing the token.
+
+
+
+ Gets the with the specified property name.
+
+ Name of the property.
+ The with the specified property name.
+
+
+
+ Gets the with the specified property name.
+ The exact property name will be searched for first and if no matching property is found then
+ the will be used to match a property.
+
+ Name of the property.
+ One of the enumeration values that specifies how the strings will be compared.
+ The with the specified property name.
+
+
+
+ Tries to get the with the specified property name.
+ The exact property name will be searched for first and if no matching property is found then
+ the will be used to match a property.
+
+ Name of the property.
+ The value.
+ One of the enumeration values that specifies how the strings will be compared.
+ true if a value was successfully retrieved; otherwise, false.
+
+
+
+ Adds the specified property name.
+
+ Name of the property.
+ The value.
+
+
+
+ Removes the property with the specified name.
+
+ Name of the property.
+ true if item was successfully removed; otherwise, false.
+
+
+
+ Tries the get value.
+
+ Name of the property.
+ The value.
+ true if a value was successfully retrieved; otherwise, false.
+
+
+
+ Returns an enumerator that iterates through the collection.
+
+
+ A that can be used to iterate through the collection.
+
+
+
+
+ Raises the event with the provided arguments.
+
+ Name of the property.
+
+
+
+ Raises the event with the provided arguments.
+
+ Name of the property.
+
+
+
+ Returns the properties for this instance of a component.
+
+
+ A that represents the properties for this component instance.
+
+
+
+
+ Returns the properties for this instance of a component using the attribute array as a filter.
+
+ An array of type that is used as a filter.
+
+ A that represents the filtered properties for this component instance.
+
+
+
+
+ Returns a collection of custom attributes for this instance of a component.
+
+
+ An containing the attributes for this object.
+
+
+
+
+ Returns the class name of this instance of a component.
+
+
+ The class name of the object, or null if the class does not have a name.
+
+
+
+
+ Returns the name of this instance of a component.
+
+
+ The name of the object, or null if the object does not have a name.
+
+
+
+
+ Returns a type converter for this instance of a component.
+
+
+ A that is the converter for this object, or null if there is no for this object.
+
+
+
+
+ Returns the default event for this instance of a component.
+
+
+ An that represents the default event for this object, or null if this object does not have events.
+
+
+
+
+ Returns the default property for this instance of a component.
+
+
+ A that represents the default property for this object, or null if this object does not have properties.
+
+
+
+
+ Returns an editor of the specified type for this instance of a component.
+
+ A that represents the editor for this object.
+
+ An of the specified type that is the editor for this object, or null if the editor cannot be found.
+
+
+
+
+ Returns the events for this instance of a component using the specified attribute array as a filter.
+
+ An array of type that is used as a filter.
+
+ An that represents the filtered events for this component instance.
+
+
+
+
+ Returns the events for this instance of a component.
+
+
+ An that represents the events for this component instance.
+
+
+
+
+ Returns an object that contains the property described by the specified property descriptor.
+
+ A that represents the property whose owner is to be found.
+
+ An that represents the owner of the specified property.
+
+
+
+
+ Returns the responsible for binding operations performed on this object.
+
+ The expression tree representation of the runtime value.
+
+ The to bind this object.
+
+
+
+
+ Gets the container's children tokens.
+
+ The container's children tokens.
+
+
+
+ Occurs when a property value changes.
+
+
+
+
+ Occurs when a property value is changing.
+
+
+
+
+ Gets the node type for this .
+
+ The type.
+
+
+
+ Gets the with the specified key.
+
+ The with the specified key.
+
+
+
+ Gets or sets the with the specified property name.
+
+
+
+
+
+ Represents a JSON property.
+
+
+
+
+ Initializes a new instance of the class from another object.
+
+ A object to copy from.
+
+
+
+ Initializes a new instance of the class.
+
+ The property name.
+ The property content.
+
+
+
+ Initializes a new instance of the class.
+
+ The property name.
+ The property content.
+
+
+
+ Writes this token to a .
+
+ A into which this method will write.
+ A collection of which will be used when writing the token.
+
+
+
+ Loads an from a .
+
+ A that will be read for the content of the .
+ A that contains the JSON that was read from the specified .
+
+
+
+ Gets the container's children tokens.
+
+ The container's children tokens.
+
+
+
+ Gets the property name.
+
+ The property name.
+
+
+
+ Gets or sets the property value.
+
+ The property value.
+
+
+
+ Gets the node type for this .
+
+ The type.
+
+
+
+ Represents a view of a .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The name.
+ Type of the property.
+
+
+
+ When overridden in a derived class, returns whether resetting an object changes its value.
+
+
+ true if resetting the component changes its value; otherwise, false.
+
+ The component to test for reset capability.
+
+
+
+
+ When overridden in a derived class, gets the current value of the property on a component.
+
+
+ The value of a property for a given component.
+
+ The component with the property for which to retrieve the value.
+
+
+
+
+ When overridden in a derived class, resets the value for this property of the component to the default value.
+
+ The component with the property value that is to be reset to the default value.
+
+
+
+
+ When overridden in a derived class, sets the value of the component to a different value.
+
+ The component with the property value that is to be set.
+ The new value.
+
+
+
+
+ When overridden in a derived class, determines a value indicating whether the value of this property needs to be persisted.
+
+
+ true if the property should be persisted; otherwise, false.
+
+ The component with the property to be examined for persistence.
+
+
+
+
+ When overridden in a derived class, gets the type of the component this property is bound to.
+
+
+ A that represents the type of component this property is bound to. When the or methods are invoked, the object specified might be an instance of this type.
+
+
+
+
+ When overridden in a derived class, gets a value indicating whether this property is read-only.
+
+
+ true if the property is read-only; otherwise, false.
+
+
+
+
+ When overridden in a derived class, gets the type of the property.
+
+
+ A that represents the type of the property.
+
+
+
+
+ Gets the hash code for the name of the member.
+
+
+
+ The hash code for the name of the member.
+
+
+
+
+ Represents a raw JSON string.
+
+
+
+
+ Represents a value in JSON (string, integer, date, etc).
+
+
+
+
+ Initializes a new instance of the class from another object.
+
+ A object to copy from.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Initializes a new instance of the class with the given value.
+
+ The value.
+
+
+
+ Creates a comment with the given value.
+
+ The value.
+ A comment with the given value.
+
+
+
+ Creates a string with the given value.
+
+ The value.
+ A string with the given value.
+
+
+
+ Writes this token to a .
+
+ A into which this method will write.
+ A collection of which will be used when writing the token.
+
+
+
+ Indicates whether the current object is equal to another object of the same type.
+
+
+ true if the current object is equal to the parameter; otherwise, false.
+
+ An object to compare with this object.
+
+
+
+ Determines whether the specified is equal to the current .
+
+ The to compare with the current .
+
+ true if the specified is equal to the current ; otherwise, false.
+
+
+ The parameter is null.
+
+
+
+
+ Serves as a hash function for a particular type.
+
+
+ A hash code for the current .
+
+
+
+
+ Returns a that represents this instance.
+
+
+ A that represents this instance.
+
+
+
+
+ Returns a that represents this instance.
+
+ The format.
+
+ A that represents this instance.
+
+
+
+
+ Returns a that represents this instance.
+
+ The format provider.
+
+ A that represents this instance.
+
+
+
+
+ Returns a that represents this instance.
+
+ The format.
+ The format provider.
+
+ A that represents this instance.
+
+
+
+
+ Returns the responsible for binding operations performed on this object.
+
+ The expression tree representation of the runtime value.
+
+ The to bind this object.
+
+
+
+
+ Compares the current instance with another object of the same type and returns an integer that indicates whether the current instance precedes, follows, or occurs in the same position in the sort order as the other object.
+
+ An object to compare with this instance.
+
+ A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has these meanings:
+ Value
+ Meaning
+ Less than zero
+ This instance is less than .
+ Zero
+ This instance is equal to .
+ Greater than zero
+ This instance is greater than .
+
+
+ is not the same type as this instance.
+
+
+
+
+ Gets a value indicating whether this token has childen tokens.
+
+
+ true if this token has child values; otherwise, false.
+
+
+
+
+ Gets the node type for this .
+
+ The type.
+
+
+
+ Gets or sets the underlying token value.
+
+ The underlying token value.
+
+
+
+ Initializes a new instance of the class from another object.
+
+ A object to copy from.
+
+
+
+ Initializes a new instance of the class.
+
+ The raw json.
+
+
+
+ Creates an instance of with the content of the reader's current token.
+
+ The reader.
+ An instance of with the content of the reader's current token.
+
+
+
+ Compares tokens to determine whether they are equal.
+
+
+
+
+ Determines whether the specified objects are equal.
+
+ The first object of type to compare.
+ The second object of type to compare.
+
+ true if the specified objects are equal; otherwise, false.
+
+
+
+
+ Returns a hash code for the specified object.
+
+ The for which a hash code is to be returned.
+ A hash code for the specified object.
+ The type of is a reference type and is null.
+
+
+
+ Represents a reader that provides fast, non-cached, forward-only access to serialized Json data.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The token to read from.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+
+ A or a null reference if the next JSON token is null. This method will return null at the end of an array.
+
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream as a .
+
+ A . This method will return null at the end of an array.
+
+
+
+ Reads the next JSON token from the stream.
+
+
+ true if the next token was read successfully; false if there are no more tokens to read.
+
+
+
+
+ Specifies the type of token.
+
+
+
+
+ No token type has been set.
+
+
+
+
+ A JSON object.
+
+
+
+
+ A JSON array.
+
+
+
+
+ A JSON constructor.
+
+
+
+
+ A JSON object property.
+
+
+
+
+ A comment.
+
+
+
+
+ An integer value.
+
+
+
+
+ A float value.
+
+
+
+
+ A string value.
+
+
+
+
+ A boolean value.
+
+
+
+
+ A null value.
+
+
+
+
+ An undefined value.
+
+
+
+
+ A date value.
+
+
+
+
+ A raw JSON value.
+
+
+
+
+ A collection of bytes value.
+
+
+
+
+ A Guid value.
+
+
+
+
+ A Uri value.
+
+
+
+
+ A TimeSpan value.
+
+
+
+
+ Represents a writer that provides a fast, non-cached, forward-only way of generating Json data.
+
+
+
+
+ Initializes a new instance of the class writing to the given .
+
+ The container being written to.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Flushes whatever is in the buffer to the underlying streams and also flushes the underlying stream.
+
+
+
+
+ Closes this stream and the underlying stream.
+
+
+
+
+ Writes the beginning of a Json object.
+
+
+
+
+ Writes the beginning of a Json array.
+
+
+
+
+ Writes the start of a constructor with the given name.
+
+ The name of the constructor.
+
+
+
+ Writes the end.
+
+ The token.
+
+
+
+ Writes the property name of a name/value pair on a Json object.
+
+ The name of the property.
+
+
+
+ Writes a value.
+ An error will raised if the value cannot be written as a single JSON token.
+
+ The value to write.
+
+
+
+ Writes a null value.
+
+
+
+
+ Writes an undefined value.
+
+
+
+
+ Writes raw JSON.
+
+ The raw JSON to write.
+
+
+
+ Writes out a comment /*...*/ containing the specified text.
+
+ Text to place inside the comment.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Writes a value.
+
+ The value to write.
+
+
+
+ Gets the token being writen.
+
+ The token being writen.
+
+
+
+ Specifies the member serialization options for the .
+
+
+
+
+ All public members are serialized by default. Members can be excluded using or .
+ This is the default member serialization mode.
+
+
+
+
+ Only members must be marked with or are serialized.
+ This member serialization mode can also be set by marking the class with .
+
+
+
+
+ All public and private fields are serialized. Members can be excluded using or .
+ This member serialization mode can also be set by marking the class with
+ and setting IgnoreSerializableAttribute on to false.
+
+
+
+
+ Specifies missing member handling options for the .
+
+
+
+
+ Ignore a missing member and do not attempt to deserialize it.
+
+
+
+
+ Throw a when a missing member is encountered during deserialization.
+
+
+
+
+ Specifies null value handling options for the .
+
+
+
+
+
+
+
+
+ Include null values when serializing and deserializing objects.
+
+
+
+
+ Ignore null values when serializing and deserializing objects.
+
+
+
+
+ Specifies how object creation is handled by the .
+
+
+
+
+ Reuse existing objects, create new objects when needed.
+
+
+
+
+ Only reuse existing objects.
+
+
+
+
+ Always create new objects.
+
+
+
+
+ Specifies reference handling options for the .
+ Note that references cannot be preserved when a value is set via a non-default constructor such as types that implement ISerializable.
+
+
+
+
+
+
+
+ Do not preserve references when serializing types.
+
+
+
+
+ Preserve references when serializing into a JSON object structure.
+
+
+
+
+ Preserve references when serializing into a JSON array structure.
+
+
+
+
+ Preserve references when serializing.
+
+
+
+
+ Specifies reference loop handling options for the .
+
+
+
+
+ Throw a when a loop is encountered.
+
+
+
+
+ Ignore loop references and do not serialize.
+
+
+
+
+ Serialize loop references.
+
+
+
+
+ Indicating whether a property is required.
+
+
+
+
+ The property is not required. The default state.
+
+
+
+
+ The property must be defined in JSON but can be a null value.
+
+
+
+
+ The property must be defined in JSON and cannot be a null value.
+
+
+
+
+ Contains the JSON schema extension methods.
+
+
+
+
+ Determines whether the is valid.
+
+ The source to test.
+ The schema to test with.
+
+ true if the specified is valid; otherwise, false.
+
+
+
+
+ Determines whether the is valid.
+
+ The source to test.
+ The schema to test with.
+ When this method returns, contains any error messages generated while validating.
+
+ true if the specified is valid; otherwise, false.
+
+
+
+
+ Validates the specified .
+
+ The source to test.
+ The schema to test with.
+
+
+
+ Validates the specified .
+
+ The source to test.
+ The schema to test with.
+ The validation event handler.
+
+
+
+ An in-memory representation of a JSON Schema.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Reads a from the specified .
+
+ The containing the JSON Schema to read.
+ The object representing the JSON Schema.
+
+
+
+ Reads a from the specified .
+
+ The containing the JSON Schema to read.
+ The to use when resolving schema references.
+ The object representing the JSON Schema.
+
+
+
+ Load a from a string that contains schema JSON.
+
+ A that contains JSON.
+ A populated from the string that contains JSON.
+
+
+
+ Parses the specified json.
+
+ The json.
+ The resolver.
+ A populated from the string that contains JSON.
+
+
+
+ Writes this schema to a .
+
+ A into which this method will write.
+
+
+
+ Writes this schema to a using the specified .
+
+ A into which this method will write.
+ The resolver used.
+
+
+
+ Returns a that represents the current .
+
+
+ A that represents the current .
+
+
+
+
+ Gets or sets the id.
+
+
+
+
+ Gets or sets the title.
+
+
+
+
+ Gets or sets whether the object is required.
+
+
+
+
+ Gets or sets whether the object is read only.
+
+
+
+
+ Gets or sets whether the object is visible to users.
+
+
+
+
+ Gets or sets whether the object is transient.
+
+
+
+
+ Gets or sets the description of the object.
+
+
+
+
+ Gets or sets the types of values allowed by the object.
+
+ The type.
+
+
+
+ Gets or sets the pattern.
+
+ The pattern.
+
+
+
+ Gets or sets the minimum length.
+
+ The minimum length.
+
+
+
+ Gets or sets the maximum length.
+
+ The maximum length.
+
+
+
+ Gets or sets a number that the value should be divisble by.
+
+ A number that the value should be divisble by.
+
+
+
+ Gets or sets the minimum.
+
+ The minimum.
+
+
+
+ Gets or sets the maximum.
+
+ The maximum.
+
+
+
+ Gets or sets a flag indicating whether the value can not equal the number defined by the "minimum" attribute.
+
+ A flag indicating whether the value can not equal the number defined by the "minimum" attribute.
+
+
+
+ Gets or sets a flag indicating whether the value can not equal the number defined by the "maximum" attribute.
+
+ A flag indicating whether the value can not equal the number defined by the "maximum" attribute.
+
+
+
+ Gets or sets the minimum number of items.
+
+ The minimum number of items.
+
+
+
+ Gets or sets the maximum number of items.
+
+ The maximum number of items.
+
+
+
+ Gets or sets the of items.
+
+ The of items.
+
+
+
+ Gets or sets a value indicating whether items in an array are validated using the instance at their array position from .
+
+
+ true if items are validated using their array position; otherwise, false.
+
+
+
+
+ Gets or sets the of additional items.
+
+ The of additional items.
+
+
+
+ Gets or sets a value indicating whether additional items are allowed.
+
+
+ true if additional items are allowed; otherwise, false.
+
+
+
+
+ Gets or sets whether the array items must be unique.
+
+
+
+
+ Gets or sets the of properties.
+
+ The of properties.
+
+
+
+ Gets or sets the of additional properties.
+
+ The of additional properties.
+
+
+
+ Gets or sets the pattern properties.
+
+ The pattern properties.
+
+
+
+ Gets or sets a value indicating whether additional properties are allowed.
+
+
+ true if additional properties are allowed; otherwise, false.
+
+
+
+
+ Gets or sets the required property if this property is present.
+
+ The required property if this property is present.
+
+
+
+ Gets or sets the a collection of valid enum values allowed.
+
+ A collection of valid enum values allowed.
+
+
+
+ Gets or sets disallowed types.
+
+ The disallow types.
+
+
+
+ Gets or sets the default value.
+
+ The default value.
+
+
+
+ Gets or sets the collection of that this schema extends.
+
+ The collection of that this schema extends.
+
+
+
+ Gets or sets the format.
+
+ The format.
+
+
+
+ Returns detailed information about the schema exception.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class
+ with a specified error message.
+
+ The error message that explains the reason for the exception.
+
+
+
+ Initializes a new instance of the class
+ with a specified error message and a reference to the inner exception that is the cause of this exception.
+
+ The error message that explains the reason for the exception.
+ The exception that is the cause of the current exception, or a null reference (Nothing in Visual Basic) if no inner exception is specified.
+
+
+
+ Initializes a new instance of the class.
+
+ The that holds the serialized object data about the exception being thrown.
+ The that contains contextual information about the source or destination.
+ The parameter is null.
+ The class name is null or is zero (0).
+
+
+
+ Gets the line number indicating where the error occurred.
+
+ The line number indicating where the error occurred.
+
+
+
+ Gets the line position indicating where the error occurred.
+
+ The line position indicating where the error occurred.
+
+
+
+ Gets the path to the JSON where the error occurred.
+
+ The path to the JSON where the error occurred.
+
+
+
+ Generates a from a specified .
+
+
+
+
+ Generate a from the specified type.
+
+ The type to generate a from.
+ A generated from the specified type.
+
+
+
+ Generate a from the specified type.
+
+ The type to generate a from.
+ The used to resolve schema references.
+ A generated from the specified type.
+
+
+
+ Generate a from the specified type.
+
+ The type to generate a from.
+ Specify whether the generated root will be nullable.
+ A generated from the specified type.
+
+
+
+ Generate a from the specified type.
+
+ The type to generate a from.
+ The used to resolve schema references.
+ Specify whether the generated root will be nullable.
+ A generated from the specified type.
+
+
+
+ Gets or sets how undefined schemas are handled by the serializer.
+
+
+
+
+ Gets or sets the contract resolver.
+
+ The contract resolver.
+
+
+
+ Resolves from an id.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Gets a for the specified reference.
+
+ The id.
+ A for the specified reference.
+
+
+
+ Gets or sets the loaded schemas.
+
+ The loaded schemas.
+
+
+
+ The value types allowed by the .
+
+
+
+
+ No type specified.
+
+
+
+
+ String type.
+
+
+
+
+ Float type.
+
+
+
+
+ Integer type.
+
+
+
+
+ Boolean type.
+
+
+
+
+ Object type.
+
+
+
+
+ Array type.
+
+
+
+
+ Null type.
+
+
+
+
+ Any type.
+
+
+
+
+ Specifies undefined schema Id handling options for the .
+
+
+
+
+ Do not infer a schema Id.
+
+
+
+
+ Use the .NET type name as the schema Id.
+
+
+
+
+ Use the assembly qualified .NET type name as the schema Id.
+
+
+
+
+ Returns detailed information related to the .
+
+
+
+
+ Gets the associated with the validation error.
+
+ The JsonSchemaException associated with the validation error.
+
+
+
+ Gets the path of the JSON location where the validation error occurred.
+
+ The path of the JSON location where the validation error occurred.
+
+
+
+ Gets the text description corresponding to the validation error.
+
+ The text description.
+
+
+
+ Represents the callback method that will handle JSON schema validation events and the .
+
+
+
+
+ Resolves member mappings for a type, camel casing property names.
+
+
+
+
+ Used by to resolves a for a given .
+
+
+
+
+ Used by to resolves a for a given .
+
+
+
+
+
+
+
+
+ Resolves the contract for a given type.
+
+ The type to resolve a contract for.
+ The contract for a given type.
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+ If set to true the will use a cached shared with other resolvers of the same type.
+ Sharing the cache will significantly performance because expensive reflection will only happen once but could cause unexpected
+ behavior if different instances of the resolver are suppose to produce different results. When set to false it is highly
+ recommended to reuse instances with the .
+
+
+
+
+ Resolves the contract for a given type.
+
+ The type to resolve a contract for.
+ The contract for a given type.
+
+
+
+ Gets the serializable members for the type.
+
+ The type to get serializable members for.
+ The serializable members for the type.
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates the constructor parameters.
+
+ The constructor to create properties for.
+ The type's member properties.
+ Properties for the given .
+
+
+
+ Creates a for the given .
+
+ The matching member property.
+ The constructor parameter.
+ A created for the given .
+
+
+
+ Resolves the default for the contract.
+
+ Type of the object.
+ The contract's default .
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates a for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Determines which contract type is created for the given type.
+
+ Type of the object.
+ A for the given type.
+
+
+
+ Creates properties for the given .
+
+ The type to create properties for.
+ /// The member serialization mode for the type.
+ Properties for the given .
+
+
+
+ Creates the used by the serializer to get and set values from a member.
+
+ The member.
+ The used by the serializer to get and set values from a member.
+
+
+
+ Creates a for the given .
+
+ The member's parent .
+ The member to create a for.
+ A created for the given .
+
+
+
+ Resolves the name of the property.
+
+ Name of the property.
+ Name of the property.
+
+
+
+ Gets the resolved name of the property.
+
+ Name of the property.
+ Name of the property.
+
+
+
+ Gets a value indicating whether members are being get and set using dynamic code generation.
+ This value is determined by the runtime permissions available.
+
+
+ true if using dynamic code generation; otherwise, false.
+
+
+
+
+ Gets or sets the default members search flags.
+
+ The default members search flags.
+
+
+
+ Gets or sets a value indicating whether compiler generated members should be serialized.
+
+
+ true if serialized compiler generated members; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether to ignore the interface when serializing and deserializing types.
+
+
+ true if the interface will be ignored when serializing and deserializing types; otherwise, false.
+
+
+
+
+ Gets or sets a value indicating whether to ignore the attribute when serializing and deserializing types.
+
+
+ true if the attribute will be ignored when serializing and deserializing types; otherwise, false.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Resolves the name of the property.
+
+ Name of the property.
+ The property name camel cased.
+
+
+
+ Used to resolve references when serializing and deserializing JSON by the .
+
+
+
+
+ Resolves a reference to its object.
+
+ The serialization context.
+ The reference to resolve.
+ The object that
+
+
+
+ Gets the reference for the sepecified object.
+
+ The serialization context.
+ The object to get a reference for.
+ The reference to the object.
+
+
+
+ Determines whether the specified object is referenced.
+
+ The serialization context.
+ The object to test for a reference.
+
+ true if the specified object is referenced; otherwise, false.
+
+
+
+
+ Adds a reference to the specified object.
+
+ The serialization context.
+ The reference.
+ The object to reference.
+
+
+
+ The default serialization binder used when resolving and loading classes from type names.
+
+
+
+
+ When overridden in a derived class, controls the binding of a serialized object to a type.
+
+ Specifies the name of the serialized object.
+ Specifies the name of the serialized object.
+
+ The type of the object the formatter creates a new instance of.
+
+
+
+
+ When overridden in a derived class, controls the binding of a serialized object to a type.
+
+ The type of the object the formatter creates a new instance of.
+ Specifies the name of the serialized object.
+ Specifies the name of the serialized object.
+
+
+
+ Represents a trace writer that writes to the application's instances.
+
+
+
+
+ Represents a trace writer.
+
+
+
+
+ Writes the specified trace level, message and optional exception.
+
+ The at which to write this trace.
+ The trace message.
+ The trace exception. This parameter is optional.
+
+
+
+ Gets the that will be used to filter the trace messages passed to the writer.
+ For example a filter level of Info will exclude Verbose messages and include Info,
+ Warning and Error messages.
+
+ The that will be used to filter the trace messages passed to the writer.
+
+
+
+ Writes the specified trace level, message and optional exception.
+
+ The at which to write this trace.
+ The trace message.
+ The trace exception. This parameter is optional.
+
+
+
+ Gets the that will be used to filter the trace messages passed to the writer.
+ For example a filter level of Info will exclude Verbose messages and include Info,
+ Warning and Error messages.
+
+
+ The that will be used to filter the trace messages passed to the writer.
+
+
+
+
+ Get and set values for a using dynamic methods.
+
+
+
+
+ Provides methods to get and set values.
+
+
+
+
+ Sets the value.
+
+ The target to set the value on.
+ The value to set on the target.
+
+
+
+ Gets the value.
+
+ The target to get the value from.
+ The value.
+
+
+
+ Initializes a new instance of the class.
+
+ The member info.
+
+
+
+ Sets the value.
+
+ The target to set the value on.
+ The value to set on the target.
+
+
+
+ Gets the value.
+
+ The target to get the value from.
+ The value.
+
+
+
+ Provides information surrounding an error.
+
+
+
+
+ Gets or sets the error.
+
+ The error.
+
+
+
+ Gets the original object that caused the error.
+
+ The original object that caused the error.
+
+
+
+ Gets the member that caused the error.
+
+ The member that caused the error.
+
+
+
+ Gets the path of the JSON location where the error occurred.
+
+ The path of the JSON location where the error occurred.
+
+
+
+ Gets or sets a value indicating whether this is handled.
+
+ true if handled; otherwise, false.
+
+
+
+ Provides data for the Error event.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The current object.
+ The error context.
+
+
+
+ Gets the current object the error event is being raised against.
+
+ The current object the error event is being raised against.
+
+
+
+ Gets the error context.
+
+ The error context.
+
+
+
+ Get and set values for a using dynamic methods.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The member info.
+
+
+
+ Sets the value.
+
+ The target to set the value on.
+ The value to set on the target.
+
+
+
+ Gets the value.
+
+ The target to get the value from.
+ The value.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Gets the underlying type for the contract.
+
+ The underlying type for the contract.
+
+
+
+ Gets or sets the type created during deserialization.
+
+ The type created during deserialization.
+
+
+
+ Gets or sets whether this type contract is serialized as a reference.
+
+ Whether this type contract is serialized as a reference.
+
+
+
+ Gets or sets the default for this contract.
+
+ The converter.
+
+
+
+ Gets or sets all methods called immediately after deserialization of the object.
+
+ The methods called immediately after deserialization of the object.
+
+
+
+ Gets or sets all methods called during deserialization of the object.
+
+ The methods called during deserialization of the object.
+
+
+
+ Gets or sets all methods called after serialization of the object graph.
+
+ The methods called after serialization of the object graph.
+
+
+
+ Gets or sets all methods called before serialization of the object.
+
+ The methods called before serialization of the object.
+
+
+
+ Gets or sets all method called when an error is thrown during the serialization of the object.
+
+ The methods called when an error is thrown during the serialization of the object.
+
+
+
+ Gets or sets the method called immediately after deserialization of the object.
+
+ The method called immediately after deserialization of the object.
+
+
+
+ Gets or sets the method called during deserialization of the object.
+
+ The method called during deserialization of the object.
+
+
+
+ Gets or sets the method called after serialization of the object graph.
+
+ The method called after serialization of the object graph.
+
+
+
+ Gets or sets the method called before serialization of the object.
+
+ The method called before serialization of the object.
+
+
+
+ Gets or sets the method called when an error is thrown during the serialization of the object.
+
+ The method called when an error is thrown during the serialization of the object.
+
+
+
+ Gets or sets the default creator method used to create the object.
+
+ The default creator method used to create the object.
+
+
+
+ Gets or sets a value indicating whether the default creator is non public.
+
+ true if the default object creator is non-public; otherwise, false.
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Gets or sets the default collection items .
+
+ The converter.
+
+
+
+ Gets or sets a value indicating whether the collection items preserve object references.
+
+ true if collection items preserve object references; otherwise, false.
+
+
+
+ Gets or sets the collection item reference loop handling.
+
+ The reference loop handling.
+
+
+
+ Gets or sets the collection item type name handling.
+
+ The type name handling.
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Gets the of the collection items.
+
+ The of the collection items.
+
+
+
+ Gets a value indicating whether the collection type is a multidimensional array.
+
+ true if the collection type is a multidimensional array; otherwise, false.
+
+
+
+ Handles serialization callback events.
+
+ The object that raised the callback event.
+ The streaming context.
+
+
+
+ Handles serialization error callback events.
+
+ The object that raised the callback event.
+ The streaming context.
+ The error context.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Gets or sets the property name resolver.
+
+ The property name resolver.
+
+
+
+ Gets the of the dictionary keys.
+
+ The of the dictionary keys.
+
+
+
+ Gets the of the dictionary values.
+
+ The of the dictionary values.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Gets the object's properties.
+
+ The object's properties.
+
+
+
+ Gets or sets the property name resolver.
+
+ The property name resolver.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Gets or sets the ISerializable object constructor.
+
+ The ISerializable object constructor.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Gets or sets the object member serialization.
+
+ The member object serialization.
+
+
+
+ Gets or sets a value that indicates whether the object's properties are required.
+
+
+ A value indicating whether the object's properties are required.
+
+
+
+
+ Gets the object's properties.
+
+ The object's properties.
+
+
+
+ Gets the constructor parameters required for any non-default constructor
+
+
+
+
+ Gets or sets the override constructor used to create the object.
+ This is set when a constructor is marked up using the
+ JsonConstructor attribute.
+
+ The override constructor.
+
+
+
+ Gets or sets the parametrized constructor used to create the object.
+
+ The parametrized constructor.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Maps a JSON property to a .NET member or constructor parameter.
+
+
+
+
+ Returns a that represents this instance.
+
+
+ A that represents this instance.
+
+
+
+
+ Gets or sets the name of the property.
+
+ The name of the property.
+
+
+
+ Gets or sets the type that declared this property.
+
+ The type that declared this property.
+
+
+
+ Gets or sets the order of serialization and deserialization of a member.
+
+ The numeric order of serialization or deserialization.
+
+
+
+ Gets or sets the name of the underlying member or parameter.
+
+ The name of the underlying member or parameter.
+
+
+
+ Gets the that will get and set the during serialization.
+
+ The that will get and set the during serialization.
+
+
+
+ Gets or sets the type of the property.
+
+ The type of the property.
+
+
+
+ Gets or sets the for the property.
+ If set this converter takes presidence over the contract converter for the property type.
+
+ The converter.
+
+
+
+ Gets the member converter.
+
+ The member converter.
+
+
+
+ Gets a value indicating whether this is ignored.
+
+ true if ignored; otherwise, false.
+
+
+
+ Gets a value indicating whether this is readable.
+
+ true if readable; otherwise, false.
+
+
+
+ Gets a value indicating whether this is writable.
+
+ true if writable; otherwise, false.
+
+
+
+ Gets a value indicating whether this has a member attribute.
+
+ true if has a member attribute; otherwise, false.
+
+
+
+ Gets the default value.
+
+ The default value.
+
+
+
+ Gets a value indicating whether this is required.
+
+ A value indicating whether this is required.
+
+
+
+ Gets a value indicating whether this property preserves object references.
+
+
+ true if this instance is reference; otherwise, false.
+
+
+
+
+ Gets the property null value handling.
+
+ The null value handling.
+
+
+
+ Gets the property default value handling.
+
+ The default value handling.
+
+
+
+ Gets the property reference loop handling.
+
+ The reference loop handling.
+
+
+
+ Gets the property object creation handling.
+
+ The object creation handling.
+
+
+
+ Gets or sets the type name handling.
+
+ The type name handling.
+
+
+
+ Gets or sets a predicate used to determine whether the property should be serialize.
+
+ A predicate used to determine whether the property should be serialize.
+
+
+
+ Gets or sets a predicate used to determine whether the property should be serialized.
+
+ A predicate used to determine whether the property should be serialized.
+
+
+
+ Gets or sets an action used to set whether the property has been deserialized.
+
+ An action used to set whether the property has been deserialized.
+
+
+
+ Gets or sets the converter used when serializing the property's collection items.
+
+ The collection's items converter.
+
+
+
+ Gets or sets whether this property's collection items are serialized as a reference.
+
+ Whether this property's collection items are serialized as a reference.
+
+
+
+ Gets or sets the the type name handling used when serializing the property's collection items.
+
+ The collection's items type name handling.
+
+
+
+ Gets or sets the the reference loop handling used when serializing the property's collection items.
+
+ The collection's items reference loop handling.
+
+
+
+ A collection of objects.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The type.
+
+
+
+ When implemented in a derived class, extracts the key from the specified element.
+
+ The element from which to extract the key.
+ The key for the specified element.
+
+
+
+ Adds a object.
+
+ The property to add to the collection.
+
+
+
+ Gets the closest matching object.
+ First attempts to get an exact case match of propertyName and then
+ a case insensitive match.
+
+ Name of the property.
+ A matching property if found.
+
+
+
+ Gets a property by property name.
+
+ The name of the property to get.
+ Type property name string comparison.
+ A matching property if found.
+
+
+
+ Contract details for a used by the .
+
+
+
+
+ Initializes a new instance of the class.
+
+ The underlying type for the contract.
+
+
+
+ Represents a trace writer that writes to memory. When the trace message limit is
+ reached then old trace messages will be removed as new messages are added.
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Writes the specified trace level, message and optional exception.
+
+ The at which to write this trace.
+ The trace message.
+ The trace exception. This parameter is optional.
+
+
+
+ Returns an enumeration of the most recent trace messages.
+
+ An enumeration of the most recent trace messages.
+
+
+
+ Returns a of the most recent trace messages.
+
+
+ A of the most recent trace messages.
+
+
+
+
+ Gets the that will be used to filter the trace messages passed to the writer.
+ For example a filter level of Info will exclude Verbose messages and include Info,
+ Warning and Error messages.
+
+
+ The that will be used to filter the trace messages passed to the writer.
+
+
+
+
+ Represents a method that constructs an object.
+
+ The object type to create.
+
+
+
+ When applied to a method, specifies that the method is called when an error occurs serializing an object.
+
+
+
+
+ Get and set values for a using reflection.
+
+
+
+
+ Initializes a new instance of the class.
+
+ The member info.
+
+
+
+ Sets the value.
+
+ The target to set the value on.
+ The value to set on the target.
+
+
+
+ Gets the value.
+
+ The target to get the value from.
+ The value.
+
+
+
+ Specifies how strings are escaped when writing JSON text.
+
+
+
+
+ Only control characters (e.g. newline) are escaped.
+
+
+
+
+ All non-ASCII and control characters (e.g. newline) are escaped.
+
+
+
+
+ HTML (<, >, &, ', ") and control characters (e.g. newline) are escaped.
+
+
+
+
+ Specifies type name handling options for the .
+
+
+
+
+ Do not include the .NET type name when serializing types.
+
+
+
+
+ Include the .NET type name when serializing into a JSON object structure.
+
+
+
+
+ Include the .NET type name when serializing into a JSON array structure.
+
+
+
+
+ Always include the .NET type name when serializing.
+
+
+
+
+ Include the .NET type name when the type of the object being serialized is not the same as its declared type.
+
+
+
+
+ Determines whether the collection is null or empty.
+
+ The collection.
+
+ true if the collection is null or empty; otherwise, false.
+
+
+
+
+ Adds the elements of the specified collection to the specified generic IList.
+
+ The list to add to.
+ The collection of elements to add.
+
+
+
+ Returns the index of the first occurrence in a sequence by using a specified IEqualityComparer.
+
+ The type of the elements of source.
+ A sequence in which to locate a value.
+ The object to locate in the sequence
+ An equality comparer to compare values.
+ The zero-based index of the first occurrence of value within the entire sequence, if found; otherwise, –1.
+
+
+
+ Converts the value to the specified type.
+
+ The value to convert.
+ The culture to use when converting.
+ The type to convert the value to.
+ The converted type.
+
+
+
+ Converts the value to the specified type.
+
+ The value to convert.
+ The culture to use when converting.
+ The type to convert the value to.
+ The converted value if the conversion was successful or the default value of T if it failed.
+
+ true if initialValue was converted successfully; otherwise, false.
+
+
+
+
+ Converts the value to the specified type. If the value is unable to be converted, the
+ value is checked whether it assignable to the specified type.
+
+ The value to convert.
+ The culture to use when converting.
+ The type to convert or cast the value to.
+
+ The converted type. If conversion was unsuccessful, the initial value
+ is returned if assignable to the target type.
+
+
+
+
+ Helper method for generating a MetaObject which calls a
+ specific method on Dynamic that returns a result
+
+
+
+
+ Helper method for generating a MetaObject which calls a
+ specific method on Dynamic, but uses one of the arguments for
+ the result.
+
+
+
+
+ Helper method for generating a MetaObject which calls a
+ specific method on Dynamic, but uses one of the arguments for
+ the result.
+
+
+
+
+ Returns a Restrictions object which includes our current restrictions merged
+ with a restriction limiting our type
+
+
+
+
+ Gets a dictionary of the names and values of an Enum type.
+
+
+
+
+
+ Gets a dictionary of the names and values of an Enum type.
+
+ The enum type to get names and values for.
+
+
+
+
+ Gets the type of the typed collection's items.
+
+ The type.
+ The type of the typed collection's items.
+
+
+
+ Gets the member's underlying type.
+
+ The member.
+ The underlying type of the member.
+
+
+
+ Determines whether the member is an indexed property.
+
+ The member.
+
+ true if the member is an indexed property; otherwise, false.
+
+
+
+
+ Determines whether the property is an indexed property.
+
+ The property.
+
+ true if the property is an indexed property; otherwise, false.
+
+
+
+
+ Gets the member's value on the object.
+
+ The member.
+ The target object.
+ The member's value on the object.
+
+
+
+ Sets the member's value on the target object.
+
+ The member.
+ The target.
+ The value.
+
+
+
+ Determines whether the specified MemberInfo can be read.
+
+ The MemberInfo to determine whether can be read.
+ /// if set to true then allow the member to be gotten non-publicly.
+
+ true if the specified MemberInfo can be read; otherwise, false.
+
+
+
+
+ Determines whether the specified MemberInfo can be set.
+
+ The MemberInfo to determine whether can be set.
+ if set to true then allow the member to be set non-publicly.
+ if set to true then allow the member to be set if read-only.
+
+ true if the specified MemberInfo can be set; otherwise, false.
+
+
+
+
+ Builds a string. Unlike StringBuilder this class lets you reuse it's internal buffer.
+
+
+
+
+ Determines whether the string is all white space. Empty string will return false.
+
+ The string to test whether it is all white space.
+
+ true if the string is all white space; otherwise, false.
+
+
+
+
+ Nulls an empty string.
+
+ The string.
+ Null if the string was null, otherwise the string unchanged.
+
+
+
+ Specifies the state of the .
+
+
+
+
+ An exception has been thrown, which has left the in an invalid state.
+ You may call the method to put the in the Closed state.
+ Any other method calls results in an being thrown.
+
+
+
+
+ The method has been called.
+
+
+
+
+ An object is being written.
+
+
+
+
+ A array is being written.
+
+
+
+
+ A constructor is being written.
+
+
+
+
+ A property is being written.
+
+
+
+
+ A write method has not been called.
+
+
+
+
diff --git a/ScheMe/bin/SteamWare.dll b/ScheMe/bin/SteamWare.dll
new file mode 100644
index 0000000..0ed3050
Binary files /dev/null and b/ScheMe/bin/SteamWare.dll differ
diff --git a/ScheMe/bin/SteamWare.xml b/ScheMe/bin/SteamWare.xml
new file mode 100644
index 0000000..3a28f26
--- /dev/null
+++ b/ScheMe/bin/SteamWare.xml
@@ -0,0 +1,5325 @@
+
+
+
+ SteamWare
+
+
+
+
+ Pagina base applicazioni SteamWare da cui derivare le altre
+
+
+
+
+ Iniziazlizzazione void (non fa nulla)
+
+
+
+
+ Metodo MAIN: viene eseguita al caricamento ed effettua delle routines per il controllo utente e istanzia l'oggetto memLayer
+
+
+
+
+
+
+ rimanda alla pagina di Work In Progress salvando in session un titolo ed una descrizione che al pagina wip poi mostrerà all'utente
+
+ titolo da mostrare nella pagina WIP
+ descrizione da mostrare nella pagina WIP
+
+
+
+ wrapper per log con salvataggio dell'IP del chiamante
+
+
+
+
+
+
+ wrapper per log con salvataggio dell'IP del chiamante
+
+ The testo log.
+ The tipo.
+
+
+
+
+ Base class for every user control in the application, containing some common
+ behaviour and utility methods.
+ It is not meant to be be used directly.
+
+
+
+
+ tipo id controllo con classi di base comune da cui derivare gli *.asmx
+
+
+
+
+ imposto il tipo di anagrafica del controlloS
+
+
+
+
+ nome della pagina correntemente caricata
+
+
+
+
+ memorizza la pagina precedente (ovvero la corrente ma non da page-object ma in session...
+
+
+
+
+ stringa con CDC in (...) dei cdc abilitati (da permesso gerarchicamente a discendere...)
+
+
+
+
+ stringa con elenco CDC abilitati (da permesso gerarchicamente a discendere...)
+
+
+
+
+ tabella diritti
+
+
+
+
+ tabella di tutti i cdc
+
+
+
+
+ tipo di anagrafica usata
+
+
+
+
+ importo il tipo di vista del modulo
+
+
+
+
+ elenco testuale csv dei cdc accessibili all'utente (x filtri tipo IN(...))
+
+
+
+
+ numero di righe standard x i datagrid
+
+
+
+
+ numero di righe standard x i datagrid di anagrafica
+
+
+
+
+ numero di righe standard x i datagrid lunghi
+
+
+
+
+ numero di righe standard x i datagrid medi
+
+
+
+
+ numero di righe standard x i datagrid su mezza pagina
+
+
+
+
+ numero di righe standard x i selettori popup
+
+
+
+
+ indirizzo email dell'admin applicativo cui vanno le email in caso di anomalie...
+
+
+
+
+ indirizzo email dell'applicativo da cui partono le email in caso di anomalie...
+
+
+
+
+ indirizzo server SMTP
+
+
+
+
+ elenco delle pagine "safe" ovvero da non autorizzare - da web.config
+
+
+
+
+ elenco delle pagine "common" ovvero da autorizzare ma senza bisogno diritti in anagrafica - da web.config
+
+
+
+
+ valore che determina se è possibile forzare impersonificazioen utente...
+
+
+
+
+ livello di log (1-->5)
+
+
+
+
+ dir di logging
+
+
+
+
+ MAIN: esecuzione al caricamento del modulo delle routines di controllo utente e creazione pagina
+
+
+
+
+
+
+ predisposizione dati x pagina da cache/database a seconda della disponibilità in cache o refresh (B.1.4)
+
+
+
+
+ popola gli oggetti e le labels... (B.1.6)
+
+
+
+
+ disegna la pagina: prima i controlli poi il datagrid
+
+
+
+
+ aggiunge i link x i selettori
+
+
+
+
+ sistema i vari controlli della pagina
+
+
+
+
+ aggiorna eventuali datalist e datagrid
+
+
+
+
+ sistema tutte le labels traducendo i lemmi nella lingua utente ed in inglese
+
+
+
+
+ calcola come percentuale la radio dividendo/divisore
+
+
+
+
+
+
+
+ limita una stringa al numero max di caratteri imposto
+
+
+
+
+
+
+
+ Reads data from a stream until the end is reached. The
+ data is returned as a byte array. An IOException is
+ thrown if any of the underlying IO calls fail.
+
+ The stream to read data from
+ The initial buffer length
+
+
+
+ converte una data in formato aaaammgg in stringa gg/mm/aaaa
+
+
+
+
+
+
+ converte una data in formato aaaammgg in stringa aaaa-mm-gg
+
+
+
+
+
+
+ converte una stringa in formato gg/mm/aaaa in stringa(intero data) in formato aaaammgg
+
+
+
+
+
+
+ converte una datetime in un intero tipo yyyymmddhhmmss
+
+
+
+
+
+
+ formatta la data in formato dateTime in una data formato italiano come stringa gg/mm/aaaa
+
+
+
+
+
+
+ invia un alert jscript con messaggio indicato...
+
+ messaggio dell'alert da mandare
+
+
+
+ scrive immediatamente sulla pagina web il messaggio di avanzamento...
+
+
+
+
+
+ restituisce una scringa formattata in testa e coda x essere un corretto comando javascript
+
+
+
+
+
+
+ invio email senza log
+
+
+
+
+
+
+
+
+
+ invio email con log
+
+
+
+
+
+
+
+
+
+ caricamento dati applicazione da sessione (B.1.3)
+
+
+
+
+ setup datamanagers...
+
+
+
+
+ reset update del modulo corrente
+
+
+
+
+ (ri)carica i dataset del modulo
+
+
+
+
+ verifica se tutti i dataset richiesti sono disponibili i cache
+
+
+
+
+
+ salva nella cache i dataset caricati
+
+
+
+
+ carica dalla cache i dataset necessari
+
+
+
+
+ legge i valori standard x dataset e parametri
+
+
+
+
+ leggi i parametri di configurazione standard dell'applicativo
+
+
+
+
+ genera la stringa dei cdc autorizzati dell'utente
+
+
+
+
+ legge il dataset dei CdC
+
+
+
+
+ caricamento dati user da sessione (B.1.1)
+
+
+
+
+ verifica che l'utente abbia almeno un permesso per la pagina corrente altrimenti redirect ad unauthorized
+
+
+
+
+ salva in variabile pagina il nome della pagina corrente
+
+
+
+
+ selezione delle posizioni cdc autorizzate come stringa di filtraggio su POSIZIONE LIKE, se non ce ne fossero redirige su unauthorized.aspx
+
+
+
+
+
+ risponde alla domanda se l'utente abbia permesso tipo writable (S) nel permessi2funzione
+
+
+
+
+
+ verifica la condizione booleana e formatta di conseguenza la stringa di filtraggio da accodare al filtro x CdC autorizzati
+
+ condizione
+ tipo di eguaglianza
+ nome parametro
+ valore parametro
+
+
+
+
+ crea la stringa di filtraggio x data secondo modalità tipo inizio/fine/durante...
+
+
+
+
+
+ crea la stringa di filtraggio x data secondo modalità tipo minoreUguale / uguale / maggioreUguale...
+
+
+
+
+
+ verifica la condizione booleana e formatta di conseguenza la stringa di filtraggio tipo LIKE x i campi inseriti separati da # SE valParam !=""
+
+
+
+
+
+
+
+ variabile salvata in view state x la stringa di sorting - dg 2
+
+
+
+
+ variabile salvata in view state x la stringa di sorting - dg 2
+
+
+
+
+ legge e scrive in viewState la stringa di filtraggio...
+
+
+
+
+ variabile salvata in viewstate x la direzione del sorting
+
+
+
+
+ genera la stringa filtro x i cdc autorizzati x l'user
+
+
+
+
+
+ esegue la ricerca dei cdc nelle posizioni indicate dal filtro e restituisce elenco distinct degli stessi
+
+ filtro con cui cercare i cdc (del tipo " (POSIZIONE LIKE 'T.1.2.3%') OR ... "
+ stringa di filtraggio ricostruita per l'elenco dei cdc fino a quel momento trovati
+ ultimo cdc trovato
+ cdc corrente
+
+
+
+
+ restituisce il cdc dell'utente data la sua matricola
+
+
+
+
+
+
+ restituisce l'utente AS dall'utente win
+
+
+
+
+
+
+ restituisce la descr del CdC
+
+
+
+
+
+
+ invia la stringa jscript di conferma pre-cancellazione
+
+
+
+
+
+ restituisce la stringa del path corretto per l'immagine richiesta nel formato "~/images/{0}{1}"
+
+ verrà usato x posizione {0}, tipo "view"
+ verrà usato x posizione {1}, tipo "_s.png"
+
+
+
+
+ restituisce la stringa del path corretto per l'immagine richiesta nel formato "~/images/{0}{1}"
+
+ verrà usato x posizione {0}, tipo "view"
+ verrà usato x posizione {1}, tipo "_s.png"
+ tipo del file richiesto..."
+
+
+
+
+ effettua traduzione del lemma
+
+
+
+
+
+
+ effettua traduzione in inglese del lemma
+
+
+
+
+
+
+ definisce visibilità
+
+
+
+
+
+
+ tipo di vista del modulo
+
+
+
+
+ effettua la registrazione degli eventi
+
+
+
+
+ effettua l'inserimento vero e proprio dell'evento letto dai valori in session x l'utente corrente...
+
+ evento da loggare
+ valori originali
+ nuovi valori
+ filtro associato
+
+
+
+ salva in sessione i valori indicati
+
+ dictionary dei valori vecchi
+ dictionary dei valori nuovi
+ bool su abilitazione al log dell'oggetto
+ descrizione evento da loggare
+ filtro associato all'evento
+ restituisce il numero di elementi contenuti, -1 significa nessuna differenza...
+
+
+
+ salva in sessione i valori per un oggetto che sta x essere eliminato
+
+ dictionary dei valori vecchi
+ bool su abilitazione al log dell'oggetto
+ descrizione evento da loggare
+ filtro associato all'evento
+ restituisce il numero di elementi contenuti, -1 significa nessuna differenza...
+
+
+
+ wrapper per log con salvataggio dell'IP del chiamante
+
+
+
+
+
+
+ wrapper per log con salvataggio dell'IP del chiamante
+
+ The testo log.
+ The tipo.
+
+
+
+
+ event handler generico
+
+
+
+
+ sollevo evento selezione
+
+
+
+
+ classe gestione auth
+
+
+
+
+ The ta anag dev
+
+
+
+
+ init dei table adapters
+
+
+
+
+ effettua setup dei connection strings da web.config della singola applicazione
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Singleton accesso a authProxy
+
+
+
+
+ Tenta autologin con autoriconoscimento Dominio/username by cookie
+
+
+
+
+
+
+ formatta il secret code
+
+
+
+
+
+
+
+
+
+
+ crea un nuovo record device e salva un nuovo cookie su db x il dispositivo e l'utente richiesti
+
+
+
+
+
+
+
+
+
+
+
+
+
+ rimuove device da DB e toglie il cookie
+
+ secret associata al device
+
+
+
+
+ rimuove device da DB e toglie il cookie
+
+ Nome Device
+
+
+
+
+ imuove device da DB e toglie il cookie
+
+
+
+
+
+
+
+ classe di wrap verso i TableAdapter dell'area billing
+
+
+
+
+ metodo protected di avvio della classe
+
+
+
+
+ procedura di avvio dei tableAdapter
+
+
+
+
+ effettua setup dei connection strings da web.config delal singola applicazione
+
+
+
+
+ tableAdapter documenti
+
+
+
+
+ tableAdapter documenti
+
+
+
+
+ tableAdapter documenti
+
+
+
+
+ tableAdapter documenti
+
+
+
+
+ tableAdapter documenti
+
+
+
+
+ tableAdapter documenti
+
+
+
+
+ classe singleton x la gestione dei tableadapters
+
+
+
+
+ classe con funzioni specifiche di calcolo
+
+
+
+
+ inizializzazione classe
+
+
+
+
+ elenco dei caratteri base 36: 0..9A..Z
+
+
+
+
+ converte un intero in un numero a base 36 (0..9A..Z)
+
+ num intero da convertire
+ base, max 36 (0..9A..Z)
+
+
+
+
+ converte da base di dimensione nBase a valore intero
+
+ valore in formato nBase
+ base, max 36 (0..9A..Z)
+
+
+
+
+ metodo di accesso singleton
+
+
+
+
+ classe per effettuare confronto tra valori disomogeneri per tipo e costruire diff testuali
+
+
+
+
+ valore originale
+
+
+
+
+ nuovo valore
+
+
+
+
+ dictionary dei parametri vecchi
+
+
+
+
+ dictionary dei parametri nuovi
+
+
+
+
+ inizializzazione classe
+
+
+
+
+ stringa diff dei valori originali modificati
+
+
+
+
+ stringa diff dei valori nuovi modificati
+
+
+
+
+ valorizza i diff dei valori old e new
+
+
+
+
+ calcola solo il vettore dei valori old (x delete)
+
+
+
+
+ dictionary dei parametri old
+
+
+
+
+ dictionary dei parametri new
+
+
+
+
+ oggetto statico per il confronto valori
+
+
+
+
+ classe di gestione lettura
+
+
+
+
+ esegue parsing fornendo dati ed headers
+
+
+
+
+
+
+
+ esegue parsing fornendo dati
+
+
+
+
+
+
+ esegue parsing fornendo dati come stream
+
+
+
+
+
+
+ esegue parsing fornendo dati come stream ed headers
+
+
+
+
+
+
+
+ Represents a strongly typed in-memory cache of data.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents a strongly typed in-memory cache of data.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ classe di wrap verso i TableAdapter impiegati
+
+
+
+
+ metodo protected di avvio della classe
+
+
+
+
+ procedura di avvio dei tableAdapter
+
+
+
+
+ procedura di avvio dei tableAdapter
+
+
+
+
+ effettua setup dei connection strings da web.config delal singola applicazione
+
+
+
+
+ effettua setup dei connection strings da web.config delal singola applicazione
+
+
+
+
+ setup delle tabelle vocabolario
+
+
+
+
+ prende l'oggetto tabVocabolario in ram e lo trasforma in dictionary
+
+
+
+
+
+ tableAdapter diritti
+
+
+
+
+ tableAdapter permessi
+
+
+
+
+ tableAdapter funzione
+
+
+
+
+ tableAdapter permessi2funzione
+
+
+
+
+ tableAdapter CdC
+
+
+
+
+ tableAdapter utenti
+
+
+
+
+ tableAdapter userData (user/pwd)
+
+
+
+
+ tableAdapter userDataExt (user/pwd)
+
+
+
+
+ table adapter lingue
+
+
+
+
+ table adapter vocabolario
+
+
+
+
+ table adapter versione vocabolario
+
+
+
+
+ table adapter versione anagrafica
+
+
+
+
+ table adapter Devices utente
+
+
+
+
+ oggetto vocabolario organizzato come dizionario con chiave lang#lemma e valore la traduzione
+
+
+
+
+ resetta il vocabolario rileggendo i dati...
+
+
+
+
+ crea nel db corrente il lemma richiesto e lo valorizza come "--{0}--"
+
+
+
+
+
+
+ elenco lingue ammesse da vocabolario...
+
+
+
+
+ classe singleton x la gestione dei tableadapters
+
+
+
+
+ classe di gestione dei db x creazione/update alla versione richiesta
+
+
+
+
+ oggetto connessione
+
+
+
+
+ stringa di connessione
+
+
+
+
+ dir che contiene gli script da eseguire...
+
+
+
+
+ formato del file SQL impiegato (nel senso di formato come iFormat del tipo "App_{0:0000}.sql" --> da App_0001.sql ad App_9999.sql)
+
+
+
+
+ avvio protected della classe
+
+
+
+
+ esegue gli script di sql di update dal file richiesto
+
+
+
+
+
+
+
+ Aggiorna il db eseguendo gli script dalla versione di partenza a quella di arrivo
+
+ NB: per definizione rev 0 = resetta svuotando DB, rev 1 crea tabelle iniziali, rev 2 inserisce i valori di default
+
+ nome DB di cui cercare script
+ revisione di partenza
+ revisione di arrivo
+ timeout max per ogni operazione
+
+
+
+
+ verifica se il db indicato esiste o meno...
+
+
+
+
+
+
+
+ crea il db indicato con i parametri di connessione specificati
+
+
+
+
+
+
+
+ classe gestione auth dispositivi (new 2014)
+
+
+
+
+ init dei table adapters
+
+
+
+
+ effettua setup dei connection strings da web.config delal singola applicazione
+
+
+
+
+ Initializes a new instance of the class.
+
+
+
+
+ Singleton accesso a devicesAuthProxy (static object)
+
+
+
+
+ cifra in MD5 la stringa in chiaro
+
+
+
+
+
+
+ decifra la stringa MD5 in chiaro
+
+
+
+
+
+
+ verifica una email per appartenenza ad un utente VALIDO dell'elenco
+
+
+
+
+
+
+ verifica una email + AuthKey per appartenenza ad un utente VALIDO dell'elenco
+
+
+
+
+
+
+
+ registra su DB la richiesta di reset della auth key dell'utente ed opzionalmente invia email ad admin
+
+
+ opzionale, se != "" invia email all'indirizzo dell'admin x reset
+
+
+
+ invia email ad utente con url x reset hash password
+
+ destinatario
+ hashPasswd ATTUALE (in chiaro)
+
+
+
+
+ invia email ad utente con url x enroll
+
+
+ chiave (in chiaro)
+
+
+
+ effettua enroll del device x l'utente con l'email indicata
+
+
+
+
+
+
+
+
+
+
+ restituisce nome cookie di auth (o default...)
+
+
+
+
+ genera la passphrase utente a partire dai parametri richiesti
+
+
+
+
+
+
+
+ Restituisce il numero di attivazioni rimaste x utente dato email e key
+
+
+
+
+
+
+
+ Restituisce il numero di attivazioni rimaste x utente dato email
+
+
+
+
+
+
+ cancella da session l'utente
+
+
+
+
+ restituisce la tabella diritti da session
+
+
+
+
+ tabella dei permessi utente
+
+
+
+
+ tabella dei permessi utente di tipo "WRITE" enabled
+
+
+
+
+ oggetto utente con metodi get/set
+
+
+
+
+ oggetto email con metodi get/set
+
+
+
+
+ oggetto DeviceSecret IN SESSIONE con metodi get/set
+
+
+
+
+ oggetto modulo IN SESSIONE con metodi get/set
+
+
+
+
+ restituisce i valori della riga utente da db
+
+
+
+
+ restituisce una stringa formattata con cognome e nome
+
+
+
+
+ è un boolean che indica se in session ci siano user/email e DeviceSecret (cookie) e quindi utente autenticato in precedenza...
+
+
+
+
+ conta il numero di permessi utente per la pagina attuale e restituisce true se ne trova almeno 1
+
+
+
+
+
+
+ verifica se il permesso utente per la pagina attuale sia write per almeno 1 diritto assegnato (restituisce true se ne trova almeno 1 con permessi2funzione.readwrite='S')
+
+
+
+
+
+
+ Procedura da chiamare DOPO aver messo in session i dati utente/email x caricare gli altri dati
+
+
+
+
+
+
+ carica la riga dati utente
+
+
+
+
+ Carica la tabella diritti dell'utente da db e salva in session
+
+
+
+
+ Effettua setup dei permessi una volta salvati i diritti
+
+
+
+
+ verifica nella tab diritti se l'utente abbia il right richiesto e fornisce bool in risposta
+
+
+
+
+
+
+ imposta la lingua utente dal valore della riga DB
+
+
+
+
+ oggetto lingua utente con metodi get/set
+
+
+
+
+ pagina correntemente visualizzata (URL in sessione)
+
+
+
+
+ pagina precedentemente visualizzata (URL in sessione)
+
+
+
+
+ restituisce il nome della pagina corrente
+
+
+
+
+ classe gestione parametri deviceper stampa
+
+
+
+
+ creazione oggetto parametri per stampa
+
+
+
+
+
+
+
+
+
+
+
+ formato output
+
+
+
+
+ altezza
+
+
+
+
+ larghezza
+
+
+
+
+ margine Sx
+
+
+
+
+ margine Dx
+
+
+
+
+ margine Top
+
+
+
+
+ margine Bottom
+
+
+
+
+ Gets the XML parameter.
+
+
+ The XML parameter.
+
+
+
+
+ helper x raccolta dati di diagnostica
+
+
+
+
+ uptime macchina (formattato)
+
+
+
+
+ calcolo uptime in formato timespan
+
+
+
+
+
+ restituisce elenco dischi con utilizzo (formattato)
+
+
+
+
+
+ mostra elenco interfacce di rete e loro conf
+
+
+
+
+ fornisce elenco dispositivi USB collegati
+
+
+
+
+
+ elenco devices USB
+
+
+
+
+
+ elenco porte seriali
+
+
+
+
+ registra esito ping ad un dato IP/hostname
+
+ IPaddress / host name.
+
+
+
+ restituisce contenuto di una pagina web (per testing)
+
+
+
+
+
+
+ classe definizione info oggetti USB
+
+
+
+
+ Initializes a new instance of the class.
+
+ The device identifier.
+ The PNP device identifier.
+ The description.
+
+
+
+ Gets the device identifier.
+
+
+ The device identifier.
+
+
+
+
+ Gets the PNP device identifier.
+
+
+ The PNP device identifier.
+
+
+
+
+ Gets the description.
+
+
+ The description.
+
+
+
+
+ Represents a strongly typed in-memory cache of data.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
+
+
+
+
+ Update rows in top-down order.
+
+
+
+
+ Insert rows in top-down order.
+
+
+
+
+ Delete rows in bottom-up order.
+
+
+
+
+ Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
+
+
+
+
+ Update all changes to the dataset.
+
+
+
+
+ Update Order Option
+
+
+
+
+ Used to sort self-referenced table's rows
+
+
+
+
+ Represents a strongly typed in-memory cache of data.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
+
+
+
+
+ Update rows in top-down order.
+
+
+
+
+ Insert rows in top-down order.
+
+
+
+
+ Delete rows in bottom-up order.
+
+
+
+
+ Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
+
+
+
+
+ Update all changes to the dataset.
+
+
+
+
+ Update Order Option
+
+
+
+
+ Used to sort self-referenced table's rows
+
+
+
+
+ Represents a strongly typed in-memory cache of data.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Row event argument class
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
+
+
+
+
+ Update rows in top-down order.
+
+
+
+
+ Insert rows in top-down order.
+
+
+
+
+ Delete rows in bottom-up order.
+
+
+
+
+ Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
+
+
+
+
+ Update all changes to the dataset.
+
+
+
+
+ Update Order Option
+
+
+
+
+ Used to sort self-referenced table's rows
+
+
+
+
+ Represents a strongly typed in-memory cache of data.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents a strongly typed in-memory cache of data.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents the strongly named DataTable class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Represents strongly named DataRow class.
+
+
+
+
+ Row event argument class
+
+
+
+
+ Row event argument class
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ Represents the connection and commands used to retrieve and save data.
+
+
+
+
+ TableAdapterManager is used to coordinate TableAdapters in the dataset to enable Hierarchical Update scenarios
+
+
+
+
+ Update rows in top-down order.
+
+
+
+
+ Insert rows in top-down order.
+
+
+
+
+ Delete rows in bottom-up order.
+
+
+
+
+ Remove inserted rows that become updated rows after calling TableAdapter.Update(inserted rows) first
+
+
+
+
+ Update all changes to the dataset.
+
+
+
+
+ Update Order Option
+
+
+
+
+ Used to sort self-referenced table's rows
+
+
+
+
+ enumeratore modalità login
+
+
+
+
+ login AD normale
+
+
+
+
+ forza utente fornendo password
+
+
+
+
+ forza ad un utente standard scelto dall'elenco
+
+
+
+
+ enumeratore modalità scrittura tag siteMap
+
+
+
+
+ nodo di tipo iniziale - apertura
+
+
+
+
+ nodo di tipo foglia
+
+
+
+
+ nodo di tipo finale - chiusura
+
+
+
+
+ enumeratore tipi di anagrafica
+
+
+
+
+ tipo di anagrafica Brembo
+
+
+
+
+ tipo di anagrafica generica
+
+
+
+
+ tipo di vista del modulo
+
+
+
+
+ modalità selezione
+
+
+
+
+ modalità editing
+
+
+
+
+ modalità inserting nuovo valore
+
+
+
+
+ tipologia di file immagine
+
+
+
+
+ formato gif (no alpha channel)
+
+
+
+
+ formato jpeg
+
+
+
+
+ formato png
+
+
+
+
+ tipo di immagini usate per le icone di comando in web applications
+
+
+
+
+ icona annulla (croce rossa)
+
+
+
+
+ icona approva (simbolo coccarda)
+
+
+
+
+ icona barcode in campo bianco
+
+
+
+
+ icona barcode in campo arancio
+
+
+
+
+ icona clona (magic wand)
+
+
+
+
+ icona converma (spunta verde)
+
+
+
+
+ icona elimina (cestino)
+
+
+
+
+ icona modifica (matita)
+
+
+
+
+ icona notepad (blocco note)
+
+
+
+
+ icona notepad + pdf (blocco note)
+
+
+
+
+ icona nuovo (segno +)
+
+
+
+
+ icona seleziona (lente)
+
+
+
+
+ icona semaforo giallo
+
+
+
+
+ icona semaforo rosso
+
+
+
+
+ icona semaforo verde
+
+
+
+
+ icona stampa (printer)
+
+
+
+
+ dimensione immagini usate per le icone di comando in web applications
+
+
+
+
+ formato piccolo
+
+
+
+
+ formato medio
+
+
+
+
+ formato grande
+
+
+
+
+ modalità di esecuzione applicativi
+
+
+
+
+ modalità normale
+
+
+
+
+ modalità debug
+
+
+
+
+ salvataggio di tutti i lemmi tradotti
+
+
+
+
+ modalità di chiamata userControl
+
+
+
+
+ modalità solo lettura
+
+
+
+
+ modalità edit abilitata
+
+
+
+
+ tipo evento userControl
+
+
+
+
+ evento: NEW
+
+
+
+
+ evento: NEW
+
+
+
+
+ evento: NEW
+
+
+
+
+ evento: reset selezione
+
+
+
+
+ evento: richiesta update parent
+
+
+
+
+ evento: selected
+
+
+
+
+ Accesso in lettura e scrittura al filesystem per gestione files upload e download
+
+
+
+
+ path di lavoro dei metodi leggi/scrivi
+
+
+
+
+ verifica esistenza directory ed eventualmente crea restituendo nome completo di "/" finale
+
+
+
+
+
+
+ restituisce una tab di files dato l'elenco dei files
+
+
+
+
+
+
+ setta le directory
+
+
+
+
+
+ oggetto WebClient
+
+
+
+
+ inizializza il metodo alla cartella indicata
+
+
+ non serve +... x retrocompatibilità...
+
+
+
+ metodo di avvio empty
+
+
+
+
+ cerca di caricare il fileinfo o da httpcontext-application re-position o direttamente come workpath + nomefile
+
+
+
+
+
+
+ cerca di caricare il fileinfo o da httpcontext-application re-position o direttamente come workpath + nomefile
+
+ The _path.
+ The _nome file.
+
+
+
+
+ cerca di caricare il fileinfo o da httpcontext-application re-position o direttamente come workpath + nomefile
+
+ The _path.
+ The _nome file.
+
+
+
+
+ cerca di caricare la directoryInfo o da httpcontext-application re-position o direttamente come workpath
+
+
+
+
+
+ imposta la directory richiesta...
+
+
+
+
+
+ Legge i dati da uno stream fino a quando arriva alla fine.
+ I dati sono restituiti come un byte[] array. un eccezione IOException è
+ sollevata se una delle chiamate IO sottostanti fallisce.
+
+ Lo stream da cui leggere
+ Lunghezza buffer iniziale (-1 = default 32k)
+
+
+
+ verifica esistenza directory, eventualmente crea e restituisce controllo DirectoryInfo
+
+
+
+
+
+ ottiene il dataset dei files presenti nella directory indicata esplicitamente
+
+ dir da indicizzare... già mappata! ( es SteamwareStrings.getFilePath(...) )
+
+
+
+
+ ottiene il dataset dei files presenti nella directory indicata all'istanziazione dell'oggetto
+
+
+
+
+
+ ottiene il dataset dei files DEL TIPO "like {param}" presenti nella directory indicata all'istanziazione dell'oggetto
+
+
+
+
+
+ elenco dei files come array di oggetti FileInfo
+
+
+
+
+
+ elenco dei files come array di oggetti FileInfo filtrati per parametro
+
+
+
+
+
+
+ elimina la directory di lavoro se è dir virtuale mappata
+
+
+
+
+
+ elimina tutti i files con la regexp indicata da una directory, true se cancellato almeno uno
+
+ regexp selezione files in dir (* = tutti!!!)
+
+
+
+
+ verifica se il file indicato esista in workDir
+
+
+
+
+
+
+ verifica se il file indicato esista in _path
+
+
+
+
+
+
+
+ elimina il file indicato dalla directory di lavoro
+
+
+
+
+
+
+ elimina il file indicato dalla directory di lavoro
+
+ The _fi.
+
+
+
+
+ restituisce lo stream del file richiesto
+
+
+
+
+
+
+ restituisce la stringa letta dal file richiesto
+
+
+
+
+
+
+ scrive il file dallo stream byte[] inviato
+
+
+
+
+
+
+
+ scrive il file dalla stringa inviata
+
+
+
+
+
+
+
+ converte una string in un byte[]
+
+
+
+
+
+
+ converte un byte[] in una string
+
+
+
+
+
+
+ sposta il file da From a To...
+
+
+
+
+
+
+
+
+ copia il file da From a To...
+
+
+
+
+
+
+
+
+ copia il file da From a To...
+
+
+
+
+
+
+
+
+
+ imposta la dir di lavoro
+
+
+
+
+
+ imposta la dir di lavoro
+
+
+ non serve +... x retrocompatibilità...
+
+
+
+ imposta la dir di lavoro impostandola dal mapPath corretto della web app...
+
+
+
+
+
+ esegue un comando in shell
+
+
+
+
+
+
+
+
+ esegue un comando in shell
+
+
+
+
+
+
+
+
+ Scarica un file dall'url fornito nella directory indicata x il filemover col nome richiesto
+
+ url del file
+ nome con cui salvare il file
+
+
+
+
+ comprime zip il file indicato
+
+
+
+
+
+
+ comprime zip i files corrispondenti alla RegExp indicata nella dir corrente
+
+ Espressione ricerca, come *.txt
+ Nome del file zip da creare
+
+
+
+
+ scompatta tutto il contenuto di un file zip
+
+
+
+
+
+
+ scompatta uno specifico file contenuto in un file zip
+
+ The input path of zip file.
+ The file2unzip.
+
+
+
+
+ elimina il file indicato
+
+
+
+
+
+
+ calcola la dim della directory corrente...
+
+
+
+
+
+ elimina il file + vecchio
+
+
+
+
+
+ versione statica (singleton) del'oggetto fileMover
+
+
+
+
+ struttura di comando da input utente (es: via barcode)
+
+
+
+
+ definisce se il comando sia valido o no
+
+
+
+
+ testo da mostrare dato il comando
+
+
+
+
+ comando registrato
+
+
+
+
+ comando precedentemente inserito
+
+
+
+
+ descrizione del comando
+
+
+
+
+ descrizione del comando precedente
+
+
+
+
+ valore del comando
+
+
+
+
+ valore tradotto del comando
+
+
+
+
+ costruttore del metodo...
+
+
+
+
+ gestione licenze applicativi
+
+
+
+
+ numero di licenze attive per cliente/applicativo
+
+
+
+
+
+
+
+ Fornisce chiave MD5 x un cliente/applicativo/expiryDate
+
+
+
+
+
+
+
+
+
+ restituisce data decodificata da authKey + applicazione + cliente...
+
+ The cliente.
+ The applicativo.
+ The licenze.
+ The authentication key.
+
+
+
+
+ classe gestione logging esteso di eventi e note utente (correlabili)
+
+
+
+
+ TableAdapter di accesso alla tabella anagrafica filtraggi
+
+
+
+
+ TableAdapter di accesso alla tabella anagrafica record
+
+
+
+
+ TableAdapter di accesso alla tabella logging record di eventi
+
+
+
+
+ TableAdapter di accesso alla tabella logging utente
+
+
+
+
+ TableAdapter di accesso alla vista logging eventi
+
+
+
+
+ TableAdapter di accesso alla vista logging utente
+
+
+
+
+ effettua setup dei connection strings da web.config delal singola applicazione
+
+
+
+
+ avvio i tari tableAdapters
+
+
+
+
+ avvio della classe istanziando db e
+
+
+
+
+ oggetto statico di accesso ai metodi della classe...
+
+
+
+
+ tabella eventi
+
+
+
+
+
+ tabella note
+
+
+
+
+
+ tabella eventi secondo filtro
+
+ filtro gestito come condizione "LIKE '%{0}%'" rispetto al filtro salvato con l'evento
+
+
+
+
+ tabella note secondo filtro
+
+ filtro gestito come condizione "LIKE '%{0}%'" rispetto al filtro salvato con l'evento
+
+
+
+
+ tabella eventi secondo filtro e condizione ulteriore WHERE esplicitata
+
+ filtro gestito come condizione "LIKE '%{0}%'" rispetto al filtro salvato con l'evento
+ ulteriore condizione WHERE per filtrare i dati (testo {0} della condizione "WHERE {0}"
+
+
+
+
+ tabella note secondo filtro e condizione ulteriore WHERE esplicitata
+
+ filtro gestito come condizione "LIKE '%{0}%'" rispetto al filtro salvato con l'evento
+ ulteriore condizione WHERE per filtrare i dati (testo {0} della condizione "WHERE {0}"
+
+
+
+
+ tabella note secondo filtro
+
+ filtro gestito come condizione "LIKE '%{0}%'" rispetto al filtro salvato con l'evento
+
+
+
+
+ inserisce l'evento indicato dai parametri
+
+ user che ha generato l'evento
+ pagina/form applicaizone in cui l'evento si è generato
+ valore originale(se c'è)
+ valore nuovo/modificato
+ descrizione evento (poi gestita con anagrafica interna)
+ filtro logico evento (poi gestita con anagrafica interna)
+
+
+
+ inserisce la nota utente indicata dai parametri, restituisce idx della nota creata...
+
+ user che ha inserito la nota
+ testo della nota
+ valore ulteriore da associare alla nota (es: label, codice, versione, ...)
+ filtro logico evento (poi gestita con anagrafica interna)
+ intero dell'idx della nota creata
+
+
+
+ associa l'evento e la nota indicati
+
+ idx del record da associare
+ idx chiave della nota da associare
+
+
+
+ associa l'ultimo evento del filtro indicato alla nota
+
+ filtro associato all'ultimo evento...
+ idx chiave della nota da associare
+
+
+
+ segna come cestinati tutti gli eventi dell'utente indicato non ancora associati o cestinati
+
+ utente generatore dell'evento
+
+
+
+ segna come cestinati tutti gli eventi dell'utente indicato non ancora associati o cestinati
+
+ utente generatore dell'evento
+
+
+
+ Elimina gli eventi cestinati generati dall'utente indicato
+
+ utente generatore dell'evento
+
+
+
+ Elimina gli eventi cestinati anteriori alla data selezionata
+
+ dataOra dell'evento
+
+
+
+ effettua la registrazione dell'evento in session
+
+
+
+
+ metodo di comportamento del controllo di logging
+
+
+
+
+ nasconde pannello log
+
+
+
+
+ memorizza log inserito
+
+
+
+
+ mostra pannello log
+
+
+
+
+ metodo di comportamento del controllo di logging
+
+
+
+
+ indica il primo step del doppio livello di approvazione (completamento)
+
+
+
+
+ SOLO con incremento indice di revisione dell'oggetto approvato
+
+
+
+
+ SOLO mantenendo indice di revisione corrente
+
+
+
+
+ permette SIA con revisione che senza (e anche rev -1)
+
+
+
+
+ classe gesione log files applicazioni
+
+
+
+
+ directory base x logs
+
+
+
+
+ nome del file corrente
+
+
+
+
+ max mb di log da accumulare
+
+
+
+
+ controlla se si debba mantenere sotto controllo la dimensioen della cartella logs
+
+
+
+
+ singleton del logger
+
+
+
+
+ avvio del logger nella dir desiderata
+
+
+
+
+ livello di log applicazione (da web.config, chiave '_logLevel')
+
+
+
+
+ avvio del logger nella dir desiderata
+
+
+
+
+ avvio del logger nella dir desiderata con il max di dati indicato
+
+
+
+
+ resetta il logfile odierno
+
+
+
+
+ scrive sul file log di default il valore della variabile string passata su una riga... (tab delim?!?)
+
+ testo iniziale del log
+
+
+
+
+ scrive un messaggio di log con etichetta pre
+
+ testo messaggio
+ tipo di log da registrare (etichetta [...])
+
+
+
+
+ scrive su log un dump di diagnostica
+
+ Causale diagnostica
+ target per test PING
+ target x download www page
+
+
+
+ formatta un blococ di diagnostica (titolo, contenuto / eccezione)
+
+
+
+
+
+
+
+ fornisce il nome del file in cui loggare (ed eventualmente crea...)
+
+
+
+
+ provvede a verificare la dim della cartella dei log e cancella i + vecchi fino a restare a dim inferiori a _logMaxMb
+
+
+
+
+ fornisce il file + vecchio
+
+
+
+
+
+
+ tipo di log ammesso
+
+
+
+
+ informazioni di debug
+
+
+
+
+ dump diagnostica
+
+
+
+
+ errori
+
+
+
+
+ eccezioni nell'esecuzione try/catch
+
+
+
+
+ errori fatali
+
+
+
+
+ informazioni opzionali
+
+
+
+
+ log dei lemmi invocati per traduzione da vocabolario
+
+
+
+
+ fase di avvio componente
+
+
+
+
+ avvisi
+
+
+
+
+ layer gestione vari tipi di memoria: cache, session...
+
+
+
+
+ lettore file configurazione
+
+
+
+
+ oggetto singleton x accesso al layer di memoria
+
+
+
+
+ classe gestione accessi a Session, cache, viewstate, configuration...
+
+
+
+
+ shot-form di confReadBool: legge dalla config un valore bool
+
+
+
+
+
+
+ legge dalla config un valore bool
+
+
+
+
+
+
+ shot-form di confReadString: legge dalla config un valore string
+
+
+
+
+
+
+ legge dalla config un valore string
+
+
+
+
+
+
+ shot-form di confReadInt: legge dalla config un valore int
+
+
+
+
+
+
+ legge dalla config un valore int
+
+
+
+
+
+
+ shot-form di confReadDouble: legge dalla config un valore double
+
+
+
+
+
+
+ legge dalla config un valore int
+
+
+
+
+
+
+ recupera valore querystring STRING
+
+
+ valore string
+
+
+
+ recupera valore querystring INT
+
+
+ valore INT
+
+
+
+ recupera valore querystring BOOL
+
+
+ valore string
+
+
+
+ recupera valore querystring DATE
+
+
+ valore DATE
+
+
+
+ carica dalla sessione un dato di tipo object generico
+
+
+
+
+
+
+ carica dalla sessione un dato di tipo boolean (se vuoto false)
+
+
+
+
+
+
+ carica dalla sessione un dato di tipo string
+
+
+
+
+
+
+ carica dalla sessione un dato di tipo DateTime
+
+
+
+
+
+
+ carica dalla sessione un dato di tipo long
+
+
+
+
+
+
+ carica dalla sessione un dato di tipo int
+
+
+
+
+
+
+ inserisce in session un valore
+
+
+
+
+
+
+ inserisce in session un valore
+
+ nome della variabile
+ valore associato
+ indica se debba sopravvivere ad update (inserita in elenco valSess2SurvUpd)
+
+
+
+
+ svuota una variabile dalla session
+
+
+
+
+
+ restituisce true se è presente in session l'oggetto richiesto
+
+
+
+
+
+
+ restituisco se ci sia un dato cookie
+
+
+
+
+
+
+ restituisco un valore da cookie
+
+
+
+
+
+
+ salvo un valore come cookie
+
+
+
+
+
+
+
+ salvo un valore come cookie con expiry date esplicita
+
+
+
+
+
+
+
+
+ elimina un cookie
+
+
+
+
+
+ carica dalla Cache un dato di tipo object generico
+
+
+
+
+
+
+ carica dalla Cachee un dato di tipo boolean (se vuoto false)
+
+
+
+
+
+
+ carica dalla Cachee un dato di tipo string
+
+
+
+
+
+
+ inserisce in Cache un valore
+
+ nome della variabile
+ valore
+
+
+
+ inserisce in Cache un valore e su richiesta regitra tra le tab in cache da svuotare on update..
+
+ nome della variabile
+ valore
+ da registrare come tabella da svuotare on update?
+
+
+
+
+ svuota una variabile dalla Cache
+
+
+
+
+
+ restituisce true se è presente in cache l'oggetto richiesto
+
+
+
+
+
+
+ elenco dictionary delle tab in cache da aggiornare con update svuotando da cache...
+
+
+
+
+ aggiunge la stringa corrente nel dictionary delle tabelle messe in cache e da aggiornare su comando update
+
+
+
+
+
+ elenco dictionary dei valori in session da NON aggiornare con update...
+
+
+
+
+ aggiunge la stringa corrente nel dictionary delle tabelle messe in session che vanno preservate da comando update (es: oggetto selezionato...)
+
+
+
+
+
+
+ forza lo svuotamento delel tabelle indicate come in cache...
+
+
+
+
+ Formattazione stringa URL immagini con gestione "base url"
+
+
+
+
+
+
+ Salted password hashing with PBKDF2-SHA1.
+ Author: havoc AT defuse.ca
+ www: http://crackstation.net/hashing-security.htm
+ Compatibility: .NET 3.0 and later.
+
+
+
+
+ Creates a salted PBKDF2 hash of the password.
+
+ The password to hash.
+ The hash of the password.
+
+
+
+ Validates a password given a hash of the correct one.
+
+ The password to check.
+ A hash of the correct password.
+ True if the password is correct. False otherwise.
+
+
+
+ Compares two byte arrays in length-constant time. This comparison
+ method is used so that password hashes cannot be extracted from
+ on-line systems using a timing attack and then attacked off-line.
+
+ The first byte array.
+ The second byte array.
+ True if both byte arrays are equal. False otherwise.
+
+
+
+ Computes the PBKDF2-SHA1 hash of a password.
+
+ The password to hash.
+ The salt.
+ The PBKDF2 iteration count.
+ The length of the hash to generate, in bytes.
+ A hash of the password.
+
+
+
+ Base class for every user control in the application, containing some common
+ behaviour and utility methods.
+ It is not meant to be be used directly.
+
+
+
+
+ wrapper traduzione
+
+
+
+
+
+
+ indica se i caratteri vadano forzati a maiuscoli
+
+
+
+
+ determina se l'utente sia abilitato a scrivere nelal pagina corrente (quindi modificare e cancellare...)
+
+
+
+
+ determina se l'utente sia abilitato alla pagina corrente (di base visualizzaizone...)
+
+
+
+
+ titolo pagina
+
+
+
+
+ tipo di chart (2D/3D)
+
+
+
+
+ 2D
+
+
+
+
+ 3D
+
+
+
+
+ web control che disegna un grafico a torta
+
+
+
+
+ tipo di grafico (2D/3D)
+
+
+
+
+ altezza di default
+
+
+
+
+ larghezza di default
+
+
+
+
+ padding di default
+
+
+
+
+ legenda visibile di default
+
+
+
+
+ soglia minima 5% per mostrare il dato
+
+
+
+
+ ampiezza del grafico
+
+
+
+
+ altezza del grafico
+
+
+
+
+ padding grafico/container
+
+
+
+
+ boolean se si debba mostrale la legenda
+
+
+
+
+ percentuale minima da mostrare
+
+
+
+
+ serie di dati (tipizzata) ma mostrare
+
+
+
+
+ testo associato al controllo
+
+
+
+
+ renderizza il contenuto
+
+
+
+
+
+ disegna la leggenda html laterale...
+
+
+
+
+
+ disegna piechart 2-dim
+
+
+
+
+
+ disegna piechart 3d ellittica
+
+
+
+
+
+ traduce la stringa colore in oggetto colore
+
+
+
+
+
+
+ converte intero a stringa esadecimale
+
+
+
+
+
+
+ converte stringa esadecimale a intero
+
+
+
+
+
+
+ Classe gestione metodi di accesso ai dati embeddati
+
+
+
+
+ classe accesso tabelle selettori
+
+
+
+
+ singleton
+
+
+
+
+ tabella vocabolario
+
+
+
+
+
+ tabella vocabolario per la lingua indicata
+
+
+
+
+
+
+ tabella vocabolario per la lingua indicata filtrato per lemma in modalità LIKE termine%
+
+ lingua desiderata
+ termine iniziale lemma da cercare
+
+
+
+
+ tabella lingue
+
+
+
+
+
+ verifico termine indicato... se manca aggiungo, se diverso aggiorno
+
+
+
+
+ true
+
+
+
+ faccio update del lemma indicato...
+
+
+
+
+
+
+
+ cancella il lemma indicato
+
+
+
+
+
+
+ Summary description for selettori
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ carica i dati CdC se in cache o da TableAdapter
+
+
+
+
+ restituisce l'elenco di tutti i cdc
+
+
+
+
+
+ restituisce l'elenco di tutti i cdc della gerarchia dell'utente
+
+
+
+
+
+
+
+
+
+
+ Initializes a new instance of the class.
+
+ The _label.
+ The _valore.
+ The _CSS.
+ The _tooltip.
+
+
+
+ Gets or sets the label.
+
+
+ The label.
+
+
+
+
+ Gets or sets the valore.
+
+
+ The valore.
+
+
+
+
+ Gets or sets the CSS.
+
+
+ The CSS.
+
+
+
+
+ Gets or sets the tooltip.
+
+
+ The tooltip.
+
+
+
+
+ Base class for every user control in the application, containing some common
+ behaviour and utility methods.
+ It is not meant to be be used directly.
+
+
+
+
+ event handler generico
+
+
+
+
+ sollevo evento selezione
+
+
+
+
+ wrapper traduzione
+
+
+
+
+
+
+ modalità operativa controllo
+
+
+
+
+ escape dei parametri input dell'ODS
+
+
+
+
+
+ indica se i caratteri vadano forzati a maiuscoli
+
+
+
+
+ determina se l'utente sia abilitato a scrivere nella pagina corrente (quindi modificare e cancellare...)
+
+
+
+
+ determina se l'utente sia abilitato alla pagina corrente (di base visualizzazione...)
+
+
+
+
+ titolo pagina
+
+
+
+
+ evento standard agganciabile da grView x aggiunta doppio click e singolo click (x edit e select)
+
+
+
+
+
+
+ evento andata in editing del controllo
+
+
+
+
+
+
+ classe gestione utente: auth e permission/ruoli - versione GENERICA
+
+
+
+
+ cancella da session l'utente
+
+
+
+
+ carica la riga dati utente
+
+
+
+
+ carica la riga dati utente da SOLO USERNAME
+
+
+
+
+ Carica la tabella diritti dell'utente da db e salva in session
+
+
+
+
+ Carica la tabella diritti dell'utente da db e salva in session
+
+
+
+
+ Carica la tabella diritti dell'utente da db e salva in session SOLO per il CDC indicato
+
+
+
+
+
+ Effettua setup dei permessi una volta salvati i diritti
+
+
+
+
+ imposta la lingua utente dal valore della riga DB
+
+
+
+
+ costruisce la mappa del sito per l'utente
+
+
+
+
+ formatta un nodo in modo corretto dai dati indicati
+
+
+
+
+
+
+
+
+ restituisce la tabella diritti da session
+
+
+
+
+ tabella dei permessi utente
+
+
+
+
+ tabella dei permessi utente di tipo "WRITE" enabled
+
+
+
+
+ inizializza la gestione utente...
+
+
+
+
+ retituisce username AD
+
+
+
+
+ oggetto utente con metodi get/set
+
+
+
+
+ oggetto password con metodi get/set
+
+
+
+
+ oggetto dominio con metodi get/set
+
+
+
+
+ oggetto modulo (applicazione) con metodi get/set
+
+
+
+
+ oggetto lingua utente con metodi get/set
+
+
+
+
+ oggetto runMode corrente
+
+
+
+
+ restituisce true se utente forzato da forceUser.aspx
+
+
+
+
+ restituisce i valori della riga utente da db
+
+
+
+
+ restituisce riga utente data la matricola...
+
+ matricola
+
+
+
+
+ restituisce una stringa formattata con cognome, nome e matricola
+
+
+
+
+ restituisce una stringa della sigla dell'utente
+
+
+
+
+ restituisce una stringa formattata con cognome e nome
+
+
+
+
+ restituisce una stringa formattata con cognome
+
+
+
+
+ restituisce una stringa formattata con nome
+
+
+
+
+ traduce il lemma nella lingua dell'user corrente
+
+
+
+
+
+
+ traduce il lemma in inglese
+
+
+
+
+
+
+ traduce il lemma nella lingua richiesta
+
+ The lemma.
+ The lingua.
+
+
+
+
+ traduce il lemma nella lingua dell'user e in inglese tra parentesi
+
+
+
+
+
+
+ fornisce un file XML della mappa del sito abilitato per l'utente...
+
+
+
+
+ LogOff utente con reset dati
+
+
+
+
+
+ Procedura da chiamare DOPO aver messo in session i dati utente/dominio x caricare gli altri dati
+
+
+
+
+
+
+
+ Procedura da chiamare DOPO aver messo in session i dati utente/dominio x caricare gli altri dati
+
+
+
+
+
+
+
+ controllo utente/pwd da tab
+
+
+
+
+
+
+
+ Procedura da chiamare DOPO aver messo in session i dati utente/dominio x caricare gli altri dati CON I DIRITTI SOLO per il CDC indicato
+
+
+
+
+
+
+
+
+ salva dati accessori quali il cdc dell'utente...
+
+
+
+
+ verifica nella tab diritti se l'utente abbia il right richiesto e fornisce bool in risposta
+
+
+
+
+
+
+ verifica le credenziali AD dell'utente...
+
+
+
+
+
+
+
+ è un boolean che indica se in session ci siano user/dominio e quindi utente autenticato in precedenza...
+
+
+
+
+ conta il numero di permessi utente per la pagina attuale e restituisce true se ne trova almeno 1
+
+
+
+
+
+
+ verifica se il permesso utente per la pagina attuale sia write per almeno 1 diritto assegnato (restituisce true se ne trova almeno 1 con permessi2funzione.readwrite='S')
+
+
+
+
+
+
+ ricarica e ri-traduce la mappa sito per l'utente...
+
+
+
+
+ retituisce il nome apgina dai permessi utente
+
+
+
+
+
+ restituisce cognome e nome di un utente dato username...
+
+ username
+
+
+
+
+ restituisce cognome e nome di un utente data la matricola...
+
+ matricola
+
+
+
+
+ restituisce cognome e nome di un utente dato username e dominio...
+
+ username
+ dominio
+
+
+
+
+ restituisce cognome e nome di un utente dato username...
+
+ username
+
+
+
+
+ restituisce cognome e nome di un utente dato username e dominio...
+
+ username
+ dominio
+
+
+
+
+ restituisce cognome e nome di un utente dato username eventualmente comprensivo di dominio...
+
+ {dominio\}userName
+
+
+
+
+ restituisce l'elenco delle funzioni abilitate dato modulo ed username partendo dalla radice dell'albero dei diritti
+
+
+
+
+
+
+
+ restituisce l'elenco degli utenti dato i diritti che devono avere come modulo/funzione
+
+ nome del modulo
+ nome della funzione
+ tabella utenti
+
+
+
+ restituisce l'elenco delle email degli utenti dato i diritti che devono avere come modulo/funzione
+
+ nome del modulo
+ nome della funzione
+ stringa di email separate da ","
+
+
+
+ crea un nuovo utente con le credenziali indicate
+
+ The dominio.
+ The username.
+ The cognome.
+ The nome.
+ The cod_cdc.
+ The email.
+ The matricola.
+ The sigla.
+
+
+
+
+ assegna il diritto all'utente indicato
+
+
+
+
+
+
+
+
+
+ toglier il diritto all'utente indicato
+
+
+
+
+
+
+
+
+
+ restituisce la tabella (per utente corrente) dei CDC abilitati per l'applicazione attuale da sessione (se non c'è salva...)
+
+ modulo di cui si testano i diritti
+
+
+
+
+ versione statica della classe utente come singleton UtenTeSignletoN
+
+
+
+
+ pagina correntemente visualizzata (URL in sessione)
+
+
+
+
+ pagina precedentemente visualizzata (URL in sessione)
+
+
+
+
+ struttura che definisce i parametri di un turno di lavoro
+
+
+
+
+ Gets or sets the cod turno.
+
+
+ The cod turno.
+
+
+
+
+ Gets or sets the inizio.
+
+
+ The inizio.
+
+
+
+
+ Gets or sets the fine.
+
+
+ The fine.
+
+
+
+
+ Gets or sets the periodo.
+
+
+ The periodo.
+
+
+
+
+ Gets or sets the durata minuti.
+
+
+ The durata minuti.
+
+
+
+
+ Gets or sets the t number.
+
+
+ The t number.
+
+
+
+
+ definisce un intervalo di 2 date
+
+
+
+
+ data inizio
+
+
+
+
+ data fine
+
+
+
+
+ indica se sia valido il dato, ovvero inizio e fine > 0 e FINE >= INIZIO
+
+
+
+
+ struttura orario ordinarie/strordinarie
+
+
+
+
+ ore ordinarie
+
+
+
+
+ ore straordinarie
+
+
+
+
+ classe di funzioni inerenti le date
+
+
+
+
+ inizializzazione empty
+
+
+
+
+ calcola il turno di riferimento data una data di riferimento
+
+ The data ora rif.
+ The shift turno.
+ The durata turno.
+
+
+
+
+ costruisce un oggetto intervallo date
+
+
+
+
+
+
+
+ effettua l'operazione di intersezione tra 2 intervali di date restituendo ulteriore intervallo: NB se sono intervali disgiunti restituisce 9/9/9999 x inizio e fine
+
+
+
+
+
+
+
+ oggetto mese precedente alla dataLilmite
+
+
+
+
+
+ oggetto mese corrente fino alla dataLilmite
+
+
+
+
+
+ confronta le date e restituisce true se le date sono nello stesso mese
+
+
+
+
+
+
+
+ restituisce l'intervallo del giorno completo che comprende la data indicata
+
+
+
+
+
+
+ restituisce l'intervallo di N giorni fino alla data indicata
+
+
+
+
+
+
+
+ restituisce l'intervallo della settimana corrente per la data indicata
+
+
+
+
+
+
+ restituisce l'intervallo del mese corrente per la data indicata (dal giorno 1 all'indomani delal data indicata)
+
+
+
+
+
+
+ restituisce l'intervallo del mese che comprende la data indicata (dal primo all'ultimo giorno)
+
+
+
+
+
+
+ restituisce l'intervallo dell'anno corrente per la data indicata
+
+
+
+
+
+
+ oggetto singleton
+
+
+
+
+ classe di gestione delle email
+
+
+
+
+ stringa del nome DNS o dell'ip del server SMTP
+
+
+
+
+ stringa username x server SMTP
+
+
+
+
+ stringa pwd x server SMTP
+
+
+
+
+ metodo static per la gestione delle email
+
+
+
+
+
+ metodo static per la gestione delle email
+
+
+
+
+
+
+
+ metodo static per la gestione delle email
+
+
+
+
+
+
+ procedura invio email
+
+ email mittente
+ email destinatario
+ oggetto dell'email
+ corpo del messaggio
+ allegati del messaggio
+
+
+
+ procedura invio email
+
+ email mittente
+ email destinatario
+ oggetto dell'email
+ corpo del messaggio
+
+
+
+ procedura invio email + scrittura in log!
+
+ email mittente
+ email destinatario
+ oggetto dell'email
+ corpo del messaggio
+ allegati del messaggio
+
+
+
+ procedura invio email + scrittura in log!
+
+ email mittente
+ email destinatario
+ oggetto dell'email
+ corpo del messaggio
+ allegati del messaggio
+
+
+
+ metodo singleton gestione email...
+
+
+
+
+ metodo singleton gestione email CON AUTH utente...
+
+
+
+
+ Tipo di comparazione, Binary == CaseSensitive, Text = insensitive
+
+
+
+
+ tipo controllo : binario
+
+
+
+
+ tipo controllo : text
+
+
+
+
+ Funzione di splitting compatibile con multi-character e multi-line
+
+
+
+
+ stringa da splittare
+
+
+
+
+ Delimiter con cui splittare
+
+
+
+
+ Costruttore dello Splitter
+
+
+
+
+ comparatore case sensitive
+
+
+
+
+
+
+
+ comparatore case insensitive
+
+
+
+
+
+
+
+ parte principale dello splitter
+
+ stringa da splittare
+ delimitatore ricercato
+ true=il delimiter è un blocco unico, false=qualsiasi oggetto del delimiter fa split (come split base)
+
+ 0 -> Binary=CaseSensitive, 1 -> Text=case insensitive
+
+
+
+
+ elimina dal nome file il tipo (desinenza)
+
+
+
+
+
+
+ Classe di metodi che estendono quelli base applicati alle string
+
+
+
+
+ Trasforma in MAIUSCOLo il primo carattere della stringa
+
+ stringa da processare
+ stringa processata
+
+
+
+ restituisce la stringa completa e corretta del filepath del server (anche con vDir)
+
+ path relativo alla cartella iis dell'applicativo
+ path fisico tradotto
+
+
+
+ effettua escape di stringhe di ricerca di tipo filtro per apici e altri caratteri non ammessi
+
+
+
+
+
+
+ restituisce una stringa uguale all'originale + terminazione newline
+
+
+
+
+
+
+ formatta un titolo
+
+ Titolo da scrivere
+ carattere x padding titolo
+ larghezza caratteri (x pad)
+
+
+
+
+ formatta una riga di caratteri
+
+ carattere da utilizzare
+ larghezza caratteri (x pad)
+
+
+
+
+ genera stringhe pseudo-casuali
+
+
+
+
+
+
+ fornisce dati di base per l'utente
+
+
+
+
+ fornisce cognome e nome utente formattati a partire dall'username e dalla tabella UTENTE
+
+
+
+
+
+
+ restituisce la riga completa dall'username richiesto
+
+
+
+
+
+
+ utility x dns e naming
+
+
+
+
+ calcola il nome del computer dato l'IP
+
+
+
+
+
+
+ Metodo x restituire nome dato IP tramite Reverse Lookup
+
+
+
+
+
+
+ scarica una pagina da URL e fornisce testo string
+
+ Indirizzo pagina (completo)
+ username (se necessario)
+ password (se necessaria)
+
+
+
+
+ manda pacchetto ARP
+
+
+
+
+
+
+
+
+
+ fornisce mac address dato nome/IP
+
+
+
+
+
+
+ Helper per gestione jscripts vari
+
+
+
+
+ restituisce la stringa di codice javascript x conferma client comprensiva di messaggio tradotto specifico
+
+
+
+
+
+
+ restituisce la stringa di codice javascript x conferma client comprensiva di messaggio tradotto specifico
+
+
+
+
+
+
+
+ classi helper gestione URL
+
+
+
+
+ chiama un URL e restituisce (se richiesto) il risultato ricevuto
+
+ url da chiamare
+ se si vuole in risposta il contenuto della risposta alla chiamata
+
+
+
+
+ utils x cifrature e Crypto
+
+
+
+
+ cifra un messaggio con una password
+
+
+
+
+
+
+
+ decifra un messaggio con una password
+
+
+
+
+
+
+
+ genera hash di una stringa in MD5 (es x hash gravatar)
+
+
+
+
+
+
+ Crea un hash MD5
+
+
+
+
+
+
+
+ Verify a hash against a string.
+
+
+
+
+
+
+
+
+ classe gestione valori percentuali per semplificare edit utente (moltiplicati x 100 appunto)
+
+
+
+
+ converte da percentuale a numero (es 5,3% --> 0.053)
+
+
+
+
+
+
+ converte da numero a percentuale (es 0.053 --> 5,3%)
+
+
+
+
+
+
+ gestione helper tempi ciclo
+
+
+
+
+ formatta in minuti/sec partendo da min.cent
+
+
+
+
+
+
+ conversione da tempo minuti centesimali a minuti/secondi
+
+
+
+
+
+
+ eventi associati a UserCOntrol SteamWare standard
+
+
+
+
+ tipo di evento segnalato
+
+
+
+
+ inizializzazione oggetto EventArg specifico
+
+
+
+
+
diff --git a/ScheMe/bin/System.Web.Optimization.dll b/ScheMe/bin/System.Web.Optimization.dll
new file mode 100644
index 0000000..393d416
Binary files /dev/null and b/ScheMe/bin/System.Web.Optimization.dll differ
diff --git a/ScheMe/bin/System.Web.Optimization.xml b/ScheMe/bin/System.Web.Optimization.xml
new file mode 100644
index 0000000..1bfd64c
--- /dev/null
+++ b/ScheMe/bin/System.Web.Optimization.xml
@@ -0,0 +1,666 @@
+
+
+
+ System.Web.Optimization
+
+
+
+ Represents a list of file references to be bundled together as a single resource.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class.
+ The virtual path used to reference the from within a view or Web page.
+
+
+ Initializes a new instance of the class.
+ The virtual path used to reference the from within a view or Web page.
+ An alternate url for the bundle when it is stored in a content delivery network.
+
+
+ Initializes a new instance of the class.
+ The virtual path used to reference the from within a view or Web page.
+ An alternate url for the bundle when it is stored in a content delivery network.
+ A list of objects which process the contents of the bundle in the order which they are added.
+
+
+ Initializes a new instance of the class.
+ The virtual path used to reference the from within a view or Web page.
+ A list of objects which process the contents of the bundle in the order which they are added.
+
+
+
+ Builds the bundle content from the individual files included in the object.
+ The object used to build the bundle content.
+
+
+ Overrides this to implement own caching logic.
+ A bundle response.
+ The bundle context.
+
+
+ Script expression rendered by the helper class to reference the local bundle file if the CDN is unavailable.
+ The script expression rendered by the helper class to reference the local bundle file if the CDN is unavailable.
+
+
+ Gets or sets an alternate url for the bundle when it is stored in a content delivery network.
+ An alternate url for the bundle when it is stored in a content delivery network.
+
+
+ The token inserted between bundled files to ensure that the final bundle content is valid.
+ By default, if is not specified, the Web optimization framework inserts a new line.
+
+
+ Specifies whether to use the .
+ true if the is used; otherwise, false.
+
+
+ Generates an enumeration of objects that represent the contents of the bundle.
+ An enumeration of objects that represent the contents of the bundle.
+ The object that contains state for both the framework configuration and the HTTP request.
+
+
+ Processes the bundle request to generate the response.
+ A object containing the processed bundle contents.
+ The object that contains state for both the framework configuration and the HTTP request.
+
+
+
+
+ Specifies a set of files to be included in the .
+ The object itself for use in subsequent method chaining.
+ The virtual path of the file or file pattern to be included in the bundle.
+
+
+ Includes all files in a directory that match a search pattern.
+ The object itself for use in subsequent method chaining.
+ The virtual path to the directory from which to search for files.
+ The search pattern to use in selecting files to add to the bundle.
+
+
+ Includes all files in a directory that match a search pattern.
+ The object itself for use in subsequent method chaining.
+ The virtual path to the directory from which to search for files.
+ The search pattern to use in selecting files to add to the bundle.
+ Specifies whether to recursively search subdirectories of .
+
+
+ Determines the order of files in a bundle.
+ The order of files in a bundle.
+
+
+ Virtual path used to reference the from within a view or Web page.
+ The virtual path.
+
+
+ Transforms the contents of a bundle.
+ The list of transforms for the bundle.
+
+
+
+ Contains and manages the set of registered objects in an ASP.NET application.
+
+
+ Initializes a new instance of the class.
+
+
+ Adds a bundle to the collection.
+ The bundle to add.
+
+
+ Adds the default file extension replacements for common conventions.
+ The list to populate with default values.
+
+
+ Adds default file order specifications to use with bundles in the collection.
+ The list to populate with default values.
+
+
+ Adds the default file ignore patterns.
+ The ignore list to populate with default values.
+
+
+ Removes all bundles from the collection.
+
+
+ Gets the count of registered bundles in the collection.
+ The number of bundles.
+
+
+ Gets a list of file patterns which are ignored when including files using wildcards or substitution tokens.
+ A list of file patterns.
+
+
+ Gets the file extension replacement list.
+ The file extension replacement list.
+
+
+ Gets a list that specifies default file orderings to use for files in the registered bundles.
+ The list of file orderings.
+
+
+ Returns a bundle in the collection using the specified virtual path.
+ The bundle for the virtual path or null if no bundle exists at the path.
+ The virtual path of the bundle to return.
+
+
+ Returns the bundle enumerator.
+ The bundle enumerator.
+
+
+ Returns the collection of all registered bundles.
+ The collection of registered bundles.
+
+
+ Gets the list of files to ignore.
+ The list of files to ignore.
+
+
+ Removes a bundle from the collection.
+ true if the bundle was removed; otherwise, false.
+ The bundle to remove.
+
+
+ Clears the bundles and resets all the defaults.
+
+
+ Returns the bundle URL for the specified virtual path.
+ The bundle URL or null if the bundle cannot be found.
+ The bundle virtual path.
+
+
+ Returns the bundle URL for the specified virtual path, including a content hash if requested.
+ The bundle URL or null if the bundle cannot be found.
+ The virtual path of the bundle.
+ true to include a hash code for the content; otherwise, false. The default is true.
+
+
+ Returns an enumerator that can be used to iterate through the collection.
+ An that can be used to iterate through the collection.
+
+
+ Returns an enumerator that can be used to iterate through the collection.
+ An that can be used to iterate through the collection.
+
+
+ Gets or sets whether the collection will try to use if specified.
+ true if the collection will try to use Bundle.CdnPath if specified; Otherwise, false.
+
+
+ Encapsulates the info needed to process a bundle request
+
+
+ Initializes a new instance of the class.
+ The context.
+ The collection of bundles.
+ The virtual path of the bundles.
+
+
+ Gets or sets the collection of bundles.
+ The collection of bundles.
+
+
+ Gets or sets the virtual path for the bundle request
+ The virtual path for the bundle request.
+
+
+ Gets or sets whether the instrumentation output is requested.
+ true if instrumentation output is requested; otherwise, false.
+
+
+ Gets or sets whether optimizations are enabled via .
+ true if optimizations are enabled via ; otherwise, false.
+
+
+ Gets or sets the HTTP context associated with the bundle context.
+ The HTTP context associated with the bundle context.
+
+
+ Gets or sets whether the bindle context will store the bundle response in the HttpContext.Cache.
+ true if the bindle context will store the bundle response in the cache; Otherwise, false.
+
+
+ Represents a bundle definition as specified by the bundle manifest.
+
+
+ Initializes a new instance of the class.
+
+
+ Gets or sets the CDN fallback expression for the bundle.
+ The CDN fallback expression for the bundle.
+
+
+ Gets or sets the CDN path for the bundle.
+ The CDN path for the bundle.
+
+
+ Gets the files included in the bundle.
+ The files included in the bundle.
+
+
+ Gets or sets the virtual path for the bundle.
+ The virtual path for the bundle.
+
+
+
+
+
+
+
+
+
+ Encapsulates a named set of files with relative orderings, for example jquery or modernizer.
+
+
+ Initializes a new instance of the class.
+ The name used to help identify the file ordering.
+
+
+ Gets or sets the ordered list of file name patterns (allows one prefix/suffix wildcard '*') that determines the relative ordering of these files in the bundle. For example, ["z.js", "b*", "*a", "a.js"].
+ The ordered list of file name patterns that determines the relative ordering of these files in the bundle.
+
+
+ Gets or sets the name used to help identify the file ordering, for example, jquery.
+ The name used to help identify the file ordering.
+
+
+ Represents the XML configuration to configure the bundle collection.
+
+
+ Gets or sets the path to the bundle manifest file that sets up the .
+ The path to the bundle manifest file that sets up the .
+
+
+ Reads the bundle manifest using the default bundle configuration.
+ The bundle manifest.
+
+
+ Reads the bundle manifest from a given stream.
+ The bundle manifest.
+ The bundle stream to read from.
+
+
+ Gets the objects specified by the manifest file.
+ The objects specified by the manifest file.
+
+
+ Gets or sets the registered style bundles.
+ The registered style bundles.
+
+
+ Represents a module that enables bundling to intercept requests to bundle URLs.
+
+
+ Initializes a new instance of the class.
+
+
+ Disposes any resources used by the class.
+
+
+ Hooks the OnApplicationPostResolveRequestCache event to remap to the bundle handler.
+ The application that will receive the registration of the event.
+
+
+ Calls the Dispose() method.
+
+
+ Calls the Init method.
+ The application that will receive the registration of the event.
+
+
+ Represents a class that determine if a script reference is a bundle, and what it contains to prevent duplicate script references.
+
+
+ Initializes a new instance of the class.
+
+
+ Initializes a new instance of the class with the specified bundle.
+ The bundles of objects.
+
+
+ Initializes a new instance of the class with the specified bundle and context.
+ The bundles of object.
+ The HttpContextBase.
+
+
+ Gets or sets the ScriptManager that reflects against .
+ The ScriptManager that reflects against .
+
+
+ Returns an enumeration of actual file paths to the contents of the bundle.
+ The actual file paths to the contents of the bundle.
+ The virtual file path.
+
+
+ Gets the versioned url for the bundle or returns the virtualPath unchanged if it does not point to a bundle.
+ The versioned url for the bundle.
+ The virtual file path.
+
+
+ Determines if the virtualPath is to a bundle.
+ The virtualPath.
+ The virtual file path.
+
+
+ Encapsulates the response data that will be sent for a bundle request.
+
+
+ Initializes a new instance of the class.
+
+
+
+ Gets or sets a value that is used to set the Cache-Control HTTP header.
+ A value that is used to set the Cache-Control HTTP header.
+
+
+ Gets or sets the content of the bundle which is sent as the response body.
+ The content of the bundle.
+
+
+ Gets or sets the media type that is sent in the HTTP content/type header.
+ The media type that is sent in the HTTP content/type header.
+
+
+ Gets or sets the list of files in the bundle.
+ The list of files in the bundle.
+
+
+ Static holder class for the default bundle collection.
+
+
+ Gets the default bundle collection.
+ The default bundle collection.
+
+
+ Gets or sets whether bundling and minification of bundle references is enabled.
+ true if bundling and minification of bundle references is enabled; otherwise, false.
+
+
+ Gets or sets the provider to be used in resolving bundle files.
+ The provider to be used in resolving bundle files.
+
+
+ Represents a that does CSS minification.
+
+
+ Initializes a new instance of the class.
+
+
+ Transforms the bundle contents by applying CSS minification.
+ The bundle context.
+ The bundle response object
+
+
+
+
+
+ Represents the default logic which combines files in the bundle.
+
+
+ Initializes a new instance of the class.
+
+
+
+ Default which orders files in a bundled using .
+
+
+ Initializes a new instance of the class.
+
+
+
+ Represents a object that ASP.NET creates from a folder that contains files of the same type.
+
+
+ Initializes a new instance of the class.
+ The path suffix.
+ The search pattern.
+
+
+ Initializes a new instance of the class.
+ The path suffix.
+ The search pattern.
+ The search subdirectories.
+
+
+ Initializes a new instance of the class.
+ The path suffix.
+ The search pattern.
+ The search subdirectories.
+ The transform parameter.
+
+
+ Initializes a new instance of the class.
+ The path suffix.
+ The search pattern.
+ The transform parameter.
+
+
+ Gets or set the path of a Content Delivery Network (CDN) that contains the folder bundle.
+ The path of a Content Delivery Network (CDN)
+
+
+ Returns all the base methods files and any dynamic files found in the requested directory.
+ All the base methods files and any dynamic files found in the requested directory.
+ The bundle context.
+
+
+ Gets or sets the search pattern for the folder bundle.
+ The search pattern for the folder bundle.
+
+
+ Gets or sets whether the search pattern is applied to subdirectories.
+ true if the search pattern is applied to subdirectories; otherwise, false.
+
+
+ A set of file extensions that will be used to select different files based on the .
+
+
+ Initializes a new instance of the class.
+
+
+ Adds a file extension which will be applied regardless of .
+ File extension string.
+
+
+ Add a file extension for a specified .
+ File extension string.
+
+ in which to apply the file extension replacement.
+
+
+ Clears file extension replacements.
+
+
+
+ Specifies the building of the bundle from the individual file contents.
+
+
+
+ Defines methods for ordering files within a .
+
+
+
+ Represents an interface used to query the BundleCollection for metadata.
+
+
+ Returns a list of all the virtualPaths of the contents of the bundle.
+ The list of virtual path.
+ The virtual path for the bundle.
+
+
+ Returns the versioned URL of the bundle.
+ The versioned URL of the bundle.
+ The virtual path.
+
+
+ Specifies whether the virtual path is to a bundle.
+ true if the virtual path is to a bundle; Otherwise, false.
+ The virtual path.
+
+
+ Defines a method that transforms the files in a object.
+
+
+ Transforms the content in the object.
+ The bundle context.
+ The bundle response.
+
+
+ A list of filename patterns to be ignored and thereby excluded from bundles.
+
+
+ Initializes a new instance of the class.
+
+
+ Clears entire ignore list.
+
+
+
+ Ignores the specified pattern regardless of the value set in .
+ The ignore pattern.
+
+
+ Ignores the specified pattern when in the appropriate .
+ The ignore pattern.
+ The in which to apply the ignore pattern.
+
+
+ Determines whether a file should be ignored based on the ignore list.
+ true if the filename matches a pattern in the ; otherwise, false.
+ The object that contains state for both the framework configuration and the HTTP request.
+ The name of the file to compare with the ignore list.
+
+
+
+
+ Represents a BundleTransform that does CSS Minification.
+
+
+ Initializes a new instance of the class.
+
+
+ Transforms the bundle contents by applying javascript minification.
+ The context associated with the bundle.
+ The .
+
+
+ OptimizationMode used by IgnoreList and FileExtensionReplacement.
+
+
+ Always: Always ignore
+
+
+ WhenDisabled: Only when BundleTable.EnableOptimization = false
+
+
+ WhenEnabled: Only when BundleTable.EnableOptimization = true
+
+
+ Configuration settings used by the class to generate bundle responses outside of ASP.NET applications.
+
+
+ Initializes a new instance of the class.
+
+
+ The physical file path to resolve the ‘~’ token in virtual paths.
+ The physical file path.
+
+
+ The path to the bundle manifest file that sets up the .
+ The path to the bundle manifest file that sets up the .
+
+
+ Gets or sets a callback function which is invoked after the bundle manifest is loaded to allow further customization of the bundle collection.
+ A callback function which is invoked after the bundle manifest is loaded to allow further customization of the bundle collection.
+
+
+
+ Represents a standalone class for generating bundle responses outside of ASP.NET
+
+
+
+ Builds a object from the declarations found in a bundle manifest file.
+ The bundle response for specified .
+ The path to the bundle being requested.
+ An object containing configuration settings for optimization.
+
+
+ Hooks up the BundleModule
+
+
+ Hooks up the BundleModule
+
+
+ Represents a bundle that does Js Minification.
+
+
+ Initializes a new instance of the class that takes a virtual path for the bundle.
+ The virtual path for the bundle.
+
+
+ Initializes a new instance of the class that takes virtual path and cdnPath for the bundle.
+ The virtual path for the bundle.
+ The path of a Content Delivery Network (CDN).
+
+
+ Represents a type that allows queuing and rendering script elements.
+
+
+ Gets or sets the default format string for defining how script tags are rendered.
+ The default format string for defining how script tags are rendered.
+
+
+ Renders script tags for the following paths.
+ The HTML string containing the script tag or tags for the bundle.
+ Set of virtual paths for which to generate script tags.
+
+
+ Renders script tags for a set of paths based on a format string.
+ The HTML string containing the script tag or tags for the bundle.
+ The format string for defining the rendered script tags.
+ Set of virtual paths for which to generate script tags.
+
+
+ Returns a fingerprinted URL if the is to a bundle, otherwise returns the resolve URL.
+ A that represents the URL.
+ The virtual path.
+
+
+ Represents a bundle that does CSS minification.
+
+
+ Initializes a new instance of the class with a virtual path for the bundle.
+ A virtual path for the bundle.
+
+
+ Initializes a new instance of the class with virtual path and CDN path for the bundle.
+ A virtual path for the bundle.
+ A CDN path for the bundle.
+
+
+ Represents a helper class for rendering link elements.
+
+
+ Gets or sets the default format string for defining how link tags are rendered.
+ The default format string for defining how link tags are rendered.
+
+
+ Renders link tags for a set of paths.
+ A HTML string containing the link tag or tags for the bundle.
+ Set of virtual paths for which to generate link tags.
+
+
+ Renders link tags for a set of paths based on a format string.
+ A HTML string containing the link tag or tags for the bundle.
+ Format string for defining the rendered link tags.
+ Set of virtual paths for which to generate link tags.
+
+
+ Generates a version-stamped URL for a bundle.
+ A fingerprinted URL.
+ The virtual file path.
+
+
+
\ No newline at end of file
diff --git a/ScheMe/bin/WebGrease.dll b/ScheMe/bin/WebGrease.dll
new file mode 100644
index 0000000..1d308f8
Binary files /dev/null and b/ScheMe/bin/WebGrease.dll differ
diff --git a/ScheMe/bin/it/Microsoft.Build.Utilities.v3.5.resources.dll b/ScheMe/bin/it/Microsoft.Build.Utilities.v3.5.resources.dll
new file mode 100644
index 0000000..a7861a9
Binary files /dev/null and b/ScheMe/bin/it/Microsoft.Build.Utilities.v3.5.resources.dll differ
diff --git a/ScheMe/fonts/FontAwesome.otf b/ScheMe/fonts/FontAwesome.otf
new file mode 100644
index 0000000..81c9ad9
Binary files /dev/null and b/ScheMe/fonts/FontAwesome.otf differ
diff --git a/ScheMe/fonts/fontawesome-webfont.eot b/ScheMe/fonts/fontawesome-webfont.eot
new file mode 100644
index 0000000..84677bc
Binary files /dev/null and b/ScheMe/fonts/fontawesome-webfont.eot differ
diff --git a/ScheMe/fonts/fontawesome-webfont.svg b/ScheMe/fonts/fontawesome-webfont.svg
new file mode 100644
index 0000000..d907b25
--- /dev/null
+++ b/ScheMe/fonts/fontawesome-webfont.svg
@@ -0,0 +1,520 @@
+
+
+
\ No newline at end of file
diff --git a/ScheMe/fonts/fontawesome-webfont.ttf b/ScheMe/fonts/fontawesome-webfont.ttf
new file mode 100644
index 0000000..96a3639
Binary files /dev/null and b/ScheMe/fonts/fontawesome-webfont.ttf differ
diff --git a/ScheMe/fonts/fontawesome-webfont.woff b/ScheMe/fonts/fontawesome-webfont.woff
new file mode 100644
index 0000000..628b6a5
Binary files /dev/null and b/ScheMe/fonts/fontawesome-webfont.woff differ
diff --git a/ScheMe/jumper.aspx b/ScheMe/jumper.aspx
new file mode 100644
index 0000000..cfbdf2c
--- /dev/null
+++ b/ScheMe/jumper.aspx
@@ -0,0 +1,20 @@
+<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="jumper.aspx.cs" Inherits="MedPred.jumper" %>
+
+<%@ Register src="WebUserControls/mod_enrollByJumperAuthKey.ascx" tagname="mod_enrollByJumperAuthKey" tagprefix="uc1" %>
+
+
+
+
+
+
+
+
+
+
+
diff --git a/ScheMe/jumper.aspx.cs b/ScheMe/jumper.aspx.cs
new file mode 100644
index 0000000..b9a3bb8
--- /dev/null
+++ b/ScheMe/jumper.aspx.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Web;
+using System.Web.UI;
+using System.Web.UI.WebControls;
+
+namespace MedPred
+{
+ public partial class jumper : System.Web.UI.Page
+ {
+ protected void Page_Load(object sender, EventArgs e)
+ {
+
+ }
+ }
+}
\ No newline at end of file
diff --git a/ScheMe/jumper.aspx.designer.cs b/ScheMe/jumper.aspx.designer.cs
new file mode 100644
index 0000000..607f4ff
--- /dev/null
+++ b/ScheMe/jumper.aspx.designer.cs
@@ -0,0 +1,33 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace MedPred {
+
+
+ public partial class jumper {
+
+ ///
+ /// form1 control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::System.Web.UI.HtmlControls.HtmlForm form1;
+
+ ///
+ /// mod_enrollByJumperAuthKey1 control.
+ ///
+ ///
+ /// Auto-generated field.
+ /// To modify move field declaration from designer file to code-behind file.
+ ///
+ protected global::MedPred.WebUserControls.mod_enrollByJumperAuthKey mod_enrollByJumperAuthKey1;
+ }
+}
diff --git a/ScheMe/logs/PlaceHolder.file b/ScheMe/logs/PlaceHolder.file
new file mode 100644
index 0000000..5f28270
--- /dev/null
+++ b/ScheMe/logs/PlaceHolder.file
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/ScheMe/packages.config b/ScheMe/packages.config
new file mode 100644
index 0000000..f13dab1
--- /dev/null
+++ b/ScheMe/packages.config
@@ -0,0 +1,19 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ScheMe_Data/App.config b/ScheMe_Data/App.config
new file mode 100644
index 0000000..12a1a2c
--- /dev/null
+++ b/ScheMe_Data/App.config
@@ -0,0 +1,16 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/ScheMe_Data/DS_Applicazione.Designer.cs b/ScheMe_Data/DS_Applicazione.Designer.cs
new file mode 100644
index 0000000..6af185a
--- /dev/null
+++ b/ScheMe_Data/DS_Applicazione.Designer.cs
@@ -0,0 +1,22918 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.34014
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+#pragma warning disable 1591
+
+namespace MedPred_Data {
+
+
+ ///
+ ///Represents a strongly typed in-memory cache of data.
+ ///
+ [global::System.Serializable()]
+ [global::System.ComponentModel.DesignerCategoryAttribute("code")]
+ [global::System.ComponentModel.ToolboxItem(true)]
+ [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedDataSetSchema")]
+ [global::System.Xml.Serialization.XmlRootAttribute("DS_Applicazione")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.DataSet")]
+ public partial class DS_Applicazione : global::System.Data.DataSet {
+
+ private AnagPazientiDataTable tableAnagPazienti;
+
+ private ElencoVisiteDataTable tableElencoVisite;
+
+ private VisLabDataTable tableVisLab;
+
+ private VisAnamCliDataTable tableVisAnamCli;
+
+ private VisCardioPolDataTable tableVisCardioPol;
+
+ private VisPsicoDataTable tableVisPsico;
+
+ private VisStileVitaDataTable tableVisStileVita;
+
+ private VisRelazFinDataTable tableVisRelazFin;
+
+ private stp_rep_DatiFullByPazienteDataDataTable tablestp_rep_DatiFullByPazienteData;
+
+ private VisBioMecAntDataTable tableVisBioMecAnt;
+
+ private global::System.Data.DataRelation relationFK_VisClinGen_AnagPazienti;
+
+ private global::System.Data.DataRelation relationFK_VisAnamCli_AnagPazienti;
+
+ private global::System.Data.DataRelation relationFK_VisCardioPol_AnagPazienti;
+
+ private global::System.Data.DataRelation relationFK_VisPsico_AnagPazienti;
+
+ private global::System.Data.DataRelation relationFK_VisStileVita_AnagPazienti;
+
+ private global::System.Data.DataRelation relationFK_VisRelazFin_AnagPazienti;
+
+ private global::System.Data.DataRelation relationAnagPazienti_v_VisBioMecAnt;
+
+ private global::System.Data.SchemaSerializationMode _schemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public DS_Applicazione() {
+ this.BeginInit();
+ this.InitClass();
+ global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
+ base.Tables.CollectionChanged += schemaChangedHandler;
+ base.Relations.CollectionChanged += schemaChangedHandler;
+ this.EndInit();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected DS_Applicazione(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
+ base(info, context, false) {
+ if ((this.IsBinarySerialized(info, context) == true)) {
+ this.InitVars(false);
+ global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler1 = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
+ this.Tables.CollectionChanged += schemaChangedHandler1;
+ this.Relations.CollectionChanged += schemaChangedHandler1;
+ return;
+ }
+ string strSchema = ((string)(info.GetValue("XmlSchema", typeof(string))));
+ if ((this.DetermineSchemaSerializationMode(info, context) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
+ global::System.Data.DataSet ds = new global::System.Data.DataSet();
+ ds.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
+ if ((ds.Tables["AnagPazienti"] != null)) {
+ base.Tables.Add(new AnagPazientiDataTable(ds.Tables["AnagPazienti"]));
+ }
+ if ((ds.Tables["ElencoVisite"] != null)) {
+ base.Tables.Add(new ElencoVisiteDataTable(ds.Tables["ElencoVisite"]));
+ }
+ if ((ds.Tables["VisLab"] != null)) {
+ base.Tables.Add(new VisLabDataTable(ds.Tables["VisLab"]));
+ }
+ if ((ds.Tables["VisAnamCli"] != null)) {
+ base.Tables.Add(new VisAnamCliDataTable(ds.Tables["VisAnamCli"]));
+ }
+ if ((ds.Tables["VisCardioPol"] != null)) {
+ base.Tables.Add(new VisCardioPolDataTable(ds.Tables["VisCardioPol"]));
+ }
+ if ((ds.Tables["VisPsico"] != null)) {
+ base.Tables.Add(new VisPsicoDataTable(ds.Tables["VisPsico"]));
+ }
+ if ((ds.Tables["VisStileVita"] != null)) {
+ base.Tables.Add(new VisStileVitaDataTable(ds.Tables["VisStileVita"]));
+ }
+ if ((ds.Tables["VisRelazFin"] != null)) {
+ base.Tables.Add(new VisRelazFinDataTable(ds.Tables["VisRelazFin"]));
+ }
+ if ((ds.Tables["stp_rep_DatiFullByPazienteData"] != null)) {
+ base.Tables.Add(new stp_rep_DatiFullByPazienteDataDataTable(ds.Tables["stp_rep_DatiFullByPazienteData"]));
+ }
+ if ((ds.Tables["VisBioMecAnt"] != null)) {
+ base.Tables.Add(new VisBioMecAntDataTable(ds.Tables["VisBioMecAnt"]));
+ }
+ this.DataSetName = ds.DataSetName;
+ this.Prefix = ds.Prefix;
+ this.Namespace = ds.Namespace;
+ this.Locale = ds.Locale;
+ this.CaseSensitive = ds.CaseSensitive;
+ this.EnforceConstraints = ds.EnforceConstraints;
+ this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
+ this.InitVars();
+ }
+ else {
+ this.ReadXmlSchema(new global::System.Xml.XmlTextReader(new global::System.IO.StringReader(strSchema)));
+ }
+ this.GetSerializationData(info, context);
+ global::System.ComponentModel.CollectionChangeEventHandler schemaChangedHandler = new global::System.ComponentModel.CollectionChangeEventHandler(this.SchemaChanged);
+ base.Tables.CollectionChanged += schemaChangedHandler;
+ this.Relations.CollectionChanged += schemaChangedHandler;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
+ public AnagPazientiDataTable AnagPazienti {
+ get {
+ return this.tableAnagPazienti;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
+ public ElencoVisiteDataTable ElencoVisite {
+ get {
+ return this.tableElencoVisite;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
+ public VisLabDataTable VisLab {
+ get {
+ return this.tableVisLab;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
+ public VisAnamCliDataTable VisAnamCli {
+ get {
+ return this.tableVisAnamCli;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
+ public VisCardioPolDataTable VisCardioPol {
+ get {
+ return this.tableVisCardioPol;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
+ public VisPsicoDataTable VisPsico {
+ get {
+ return this.tableVisPsico;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
+ public VisStileVitaDataTable VisStileVita {
+ get {
+ return this.tableVisStileVita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
+ public VisRelazFinDataTable VisRelazFin {
+ get {
+ return this.tableVisRelazFin;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
+ public stp_rep_DatiFullByPazienteDataDataTable stp_rep_DatiFullByPazienteData {
+ get {
+ return this.tablestp_rep_DatiFullByPazienteData;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ [global::System.ComponentModel.DesignerSerializationVisibility(global::System.ComponentModel.DesignerSerializationVisibility.Content)]
+ public VisBioMecAntDataTable VisBioMecAnt {
+ get {
+ return this.tableVisBioMecAnt;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.BrowsableAttribute(true)]
+ [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Visible)]
+ public override global::System.Data.SchemaSerializationMode SchemaSerializationMode {
+ get {
+ return this._schemaSerializationMode;
+ }
+ set {
+ this._schemaSerializationMode = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
+ public new global::System.Data.DataTableCollection Tables {
+ get {
+ return base.Tables;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.DesignerSerializationVisibilityAttribute(global::System.ComponentModel.DesignerSerializationVisibility.Hidden)]
+ public new global::System.Data.DataRelationCollection Relations {
+ get {
+ return base.Relations;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void InitializeDerivedDataSet() {
+ this.BeginInit();
+ this.InitClass();
+ this.EndInit();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public override global::System.Data.DataSet Clone() {
+ DS_Applicazione cln = ((DS_Applicazione)(base.Clone()));
+ cln.InitVars();
+ cln.SchemaSerializationMode = this.SchemaSerializationMode;
+ return cln;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override bool ShouldSerializeTables() {
+ return false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override bool ShouldSerializeRelations() {
+ return false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void ReadXmlSerializable(global::System.Xml.XmlReader reader) {
+ if ((this.DetermineSchemaSerializationMode(reader) == global::System.Data.SchemaSerializationMode.IncludeSchema)) {
+ this.Reset();
+ global::System.Data.DataSet ds = new global::System.Data.DataSet();
+ ds.ReadXml(reader);
+ if ((ds.Tables["AnagPazienti"] != null)) {
+ base.Tables.Add(new AnagPazientiDataTable(ds.Tables["AnagPazienti"]));
+ }
+ if ((ds.Tables["ElencoVisite"] != null)) {
+ base.Tables.Add(new ElencoVisiteDataTable(ds.Tables["ElencoVisite"]));
+ }
+ if ((ds.Tables["VisLab"] != null)) {
+ base.Tables.Add(new VisLabDataTable(ds.Tables["VisLab"]));
+ }
+ if ((ds.Tables["VisAnamCli"] != null)) {
+ base.Tables.Add(new VisAnamCliDataTable(ds.Tables["VisAnamCli"]));
+ }
+ if ((ds.Tables["VisCardioPol"] != null)) {
+ base.Tables.Add(new VisCardioPolDataTable(ds.Tables["VisCardioPol"]));
+ }
+ if ((ds.Tables["VisPsico"] != null)) {
+ base.Tables.Add(new VisPsicoDataTable(ds.Tables["VisPsico"]));
+ }
+ if ((ds.Tables["VisStileVita"] != null)) {
+ base.Tables.Add(new VisStileVitaDataTable(ds.Tables["VisStileVita"]));
+ }
+ if ((ds.Tables["VisRelazFin"] != null)) {
+ base.Tables.Add(new VisRelazFinDataTable(ds.Tables["VisRelazFin"]));
+ }
+ if ((ds.Tables["stp_rep_DatiFullByPazienteData"] != null)) {
+ base.Tables.Add(new stp_rep_DatiFullByPazienteDataDataTable(ds.Tables["stp_rep_DatiFullByPazienteData"]));
+ }
+ if ((ds.Tables["VisBioMecAnt"] != null)) {
+ base.Tables.Add(new VisBioMecAntDataTable(ds.Tables["VisBioMecAnt"]));
+ }
+ this.DataSetName = ds.DataSetName;
+ this.Prefix = ds.Prefix;
+ this.Namespace = ds.Namespace;
+ this.Locale = ds.Locale;
+ this.CaseSensitive = ds.CaseSensitive;
+ this.EnforceConstraints = ds.EnforceConstraints;
+ this.Merge(ds, false, global::System.Data.MissingSchemaAction.Add);
+ this.InitVars();
+ }
+ else {
+ this.ReadXml(reader);
+ this.InitVars();
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Xml.Schema.XmlSchema GetSchemaSerializable() {
+ global::System.IO.MemoryStream stream = new global::System.IO.MemoryStream();
+ this.WriteXmlSchema(new global::System.Xml.XmlTextWriter(stream, null));
+ stream.Position = 0;
+ return global::System.Xml.Schema.XmlSchema.Read(new global::System.Xml.XmlTextReader(stream), null);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal void InitVars() {
+ this.InitVars(true);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal void InitVars(bool initTable) {
+ this.tableAnagPazienti = ((AnagPazientiDataTable)(base.Tables["AnagPazienti"]));
+ if ((initTable == true)) {
+ if ((this.tableAnagPazienti != null)) {
+ this.tableAnagPazienti.InitVars();
+ }
+ }
+ this.tableElencoVisite = ((ElencoVisiteDataTable)(base.Tables["ElencoVisite"]));
+ if ((initTable == true)) {
+ if ((this.tableElencoVisite != null)) {
+ this.tableElencoVisite.InitVars();
+ }
+ }
+ this.tableVisLab = ((VisLabDataTable)(base.Tables["VisLab"]));
+ if ((initTable == true)) {
+ if ((this.tableVisLab != null)) {
+ this.tableVisLab.InitVars();
+ }
+ }
+ this.tableVisAnamCli = ((VisAnamCliDataTable)(base.Tables["VisAnamCli"]));
+ if ((initTable == true)) {
+ if ((this.tableVisAnamCli != null)) {
+ this.tableVisAnamCli.InitVars();
+ }
+ }
+ this.tableVisCardioPol = ((VisCardioPolDataTable)(base.Tables["VisCardioPol"]));
+ if ((initTable == true)) {
+ if ((this.tableVisCardioPol != null)) {
+ this.tableVisCardioPol.InitVars();
+ }
+ }
+ this.tableVisPsico = ((VisPsicoDataTable)(base.Tables["VisPsico"]));
+ if ((initTable == true)) {
+ if ((this.tableVisPsico != null)) {
+ this.tableVisPsico.InitVars();
+ }
+ }
+ this.tableVisStileVita = ((VisStileVitaDataTable)(base.Tables["VisStileVita"]));
+ if ((initTable == true)) {
+ if ((this.tableVisStileVita != null)) {
+ this.tableVisStileVita.InitVars();
+ }
+ }
+ this.tableVisRelazFin = ((VisRelazFinDataTable)(base.Tables["VisRelazFin"]));
+ if ((initTable == true)) {
+ if ((this.tableVisRelazFin != null)) {
+ this.tableVisRelazFin.InitVars();
+ }
+ }
+ this.tablestp_rep_DatiFullByPazienteData = ((stp_rep_DatiFullByPazienteDataDataTable)(base.Tables["stp_rep_DatiFullByPazienteData"]));
+ if ((initTable == true)) {
+ if ((this.tablestp_rep_DatiFullByPazienteData != null)) {
+ this.tablestp_rep_DatiFullByPazienteData.InitVars();
+ }
+ }
+ this.tableVisBioMecAnt = ((VisBioMecAntDataTable)(base.Tables["VisBioMecAnt"]));
+ if ((initTable == true)) {
+ if ((this.tableVisBioMecAnt != null)) {
+ this.tableVisBioMecAnt.InitVars();
+ }
+ }
+ this.relationFK_VisClinGen_AnagPazienti = this.Relations["FK_VisClinGen_AnagPazienti"];
+ this.relationFK_VisAnamCli_AnagPazienti = this.Relations["FK_VisAnamCli_AnagPazienti"];
+ this.relationFK_VisCardioPol_AnagPazienti = this.Relations["FK_VisCardioPol_AnagPazienti"];
+ this.relationFK_VisPsico_AnagPazienti = this.Relations["FK_VisPsico_AnagPazienti"];
+ this.relationFK_VisStileVita_AnagPazienti = this.Relations["FK_VisStileVita_AnagPazienti"];
+ this.relationFK_VisRelazFin_AnagPazienti = this.Relations["FK_VisRelazFin_AnagPazienti"];
+ this.relationAnagPazienti_v_VisBioMecAnt = this.Relations["AnagPazienti_v_VisBioMecAnt"];
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitClass() {
+ this.DataSetName = "DS_Applicazione";
+ this.Prefix = "";
+ this.Namespace = "http://tempuri.org/DS_Applicazione.xsd";
+ this.EnforceConstraints = true;
+ this.SchemaSerializationMode = global::System.Data.SchemaSerializationMode.IncludeSchema;
+ this.tableAnagPazienti = new AnagPazientiDataTable();
+ base.Tables.Add(this.tableAnagPazienti);
+ this.tableElencoVisite = new ElencoVisiteDataTable();
+ base.Tables.Add(this.tableElencoVisite);
+ this.tableVisLab = new VisLabDataTable();
+ base.Tables.Add(this.tableVisLab);
+ this.tableVisAnamCli = new VisAnamCliDataTable();
+ base.Tables.Add(this.tableVisAnamCli);
+ this.tableVisCardioPol = new VisCardioPolDataTable();
+ base.Tables.Add(this.tableVisCardioPol);
+ this.tableVisPsico = new VisPsicoDataTable();
+ base.Tables.Add(this.tableVisPsico);
+ this.tableVisStileVita = new VisStileVitaDataTable();
+ base.Tables.Add(this.tableVisStileVita);
+ this.tableVisRelazFin = new VisRelazFinDataTable();
+ base.Tables.Add(this.tableVisRelazFin);
+ this.tablestp_rep_DatiFullByPazienteData = new stp_rep_DatiFullByPazienteDataDataTable();
+ base.Tables.Add(this.tablestp_rep_DatiFullByPazienteData);
+ this.tableVisBioMecAnt = new VisBioMecAntDataTable();
+ base.Tables.Add(this.tableVisBioMecAnt);
+ this.relationFK_VisClinGen_AnagPazienti = new global::System.Data.DataRelation("FK_VisClinGen_AnagPazienti", new global::System.Data.DataColumn[] {
+ this.tableAnagPazienti.IdxPazienteColumn}, new global::System.Data.DataColumn[] {
+ this.tableVisLab.IdxPazienteColumn}, false);
+ this.Relations.Add(this.relationFK_VisClinGen_AnagPazienti);
+ this.relationFK_VisAnamCli_AnagPazienti = new global::System.Data.DataRelation("FK_VisAnamCli_AnagPazienti", new global::System.Data.DataColumn[] {
+ this.tableAnagPazienti.IdxPazienteColumn}, new global::System.Data.DataColumn[] {
+ this.tableVisAnamCli.IdxPazienteColumn}, false);
+ this.Relations.Add(this.relationFK_VisAnamCli_AnagPazienti);
+ this.relationFK_VisCardioPol_AnagPazienti = new global::System.Data.DataRelation("FK_VisCardioPol_AnagPazienti", new global::System.Data.DataColumn[] {
+ this.tableAnagPazienti.IdxPazienteColumn}, new global::System.Data.DataColumn[] {
+ this.tableVisCardioPol.IdxPazienteColumn}, false);
+ this.Relations.Add(this.relationFK_VisCardioPol_AnagPazienti);
+ this.relationFK_VisPsico_AnagPazienti = new global::System.Data.DataRelation("FK_VisPsico_AnagPazienti", new global::System.Data.DataColumn[] {
+ this.tableAnagPazienti.IdxPazienteColumn}, new global::System.Data.DataColumn[] {
+ this.tableVisPsico.IdxPazienteColumn}, false);
+ this.Relations.Add(this.relationFK_VisPsico_AnagPazienti);
+ this.relationFK_VisStileVita_AnagPazienti = new global::System.Data.DataRelation("FK_VisStileVita_AnagPazienti", new global::System.Data.DataColumn[] {
+ this.tableAnagPazienti.IdxPazienteColumn}, new global::System.Data.DataColumn[] {
+ this.tableVisStileVita.IdxPazienteColumn}, false);
+ this.Relations.Add(this.relationFK_VisStileVita_AnagPazienti);
+ this.relationFK_VisRelazFin_AnagPazienti = new global::System.Data.DataRelation("FK_VisRelazFin_AnagPazienti", new global::System.Data.DataColumn[] {
+ this.tableAnagPazienti.IdxPazienteColumn}, new global::System.Data.DataColumn[] {
+ this.tableVisRelazFin.IdxPazienteColumn}, false);
+ this.Relations.Add(this.relationFK_VisRelazFin_AnagPazienti);
+ this.relationAnagPazienti_v_VisBioMecAnt = new global::System.Data.DataRelation("AnagPazienti_v_VisBioMecAnt", new global::System.Data.DataColumn[] {
+ this.tableAnagPazienti.IdxPazienteColumn}, new global::System.Data.DataColumn[] {
+ this.tableVisBioMecAnt.IdxPazienteColumn}, false);
+ this.Relations.Add(this.relationAnagPazienti_v_VisBioMecAnt);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private bool ShouldSerializeAnagPazienti() {
+ return false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private bool ShouldSerializeElencoVisite() {
+ return false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private bool ShouldSerializeVisLab() {
+ return false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private bool ShouldSerializeVisAnamCli() {
+ return false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private bool ShouldSerializeVisCardioPol() {
+ return false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private bool ShouldSerializeVisPsico() {
+ return false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private bool ShouldSerializeVisStileVita() {
+ return false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private bool ShouldSerializeVisRelazFin() {
+ return false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private bool ShouldSerializestp_rep_DatiFullByPazienteData() {
+ return false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private bool ShouldSerializeVisBioMecAnt() {
+ return false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void SchemaChanged(object sender, global::System.ComponentModel.CollectionChangeEventArgs e) {
+ if ((e.Action == global::System.ComponentModel.CollectionChangeAction.Remove)) {
+ this.InitVars();
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedDataSetSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
+ DS_Applicazione ds = new DS_Applicazione();
+ global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
+ global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
+ global::System.Xml.Schema.XmlSchemaAny any = new global::System.Xml.Schema.XmlSchemaAny();
+ any.Namespace = ds.Namespace;
+ sequence.Items.Add(any);
+ type.Particle = sequence;
+ global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
+ if (xs.Contains(dsSchema.TargetNamespace)) {
+ global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
+ global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
+ try {
+ global::System.Xml.Schema.XmlSchema schema = null;
+ dsSchema.Write(s1);
+ for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
+ schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
+ s2.SetLength(0);
+ schema.Write(s2);
+ if ((s1.Length == s2.Length)) {
+ s1.Position = 0;
+ s2.Position = 0;
+ for (; ((s1.Position != s1.Length)
+ && (s1.ReadByte() == s2.ReadByte())); ) {
+ ;
+ }
+ if ((s1.Position == s1.Length)) {
+ return type;
+ }
+ }
+ }
+ }
+ finally {
+ if ((s1 != null)) {
+ s1.Close();
+ }
+ if ((s2 != null)) {
+ s2.Close();
+ }
+ }
+ }
+ xs.Add(dsSchema);
+ return type;
+ }
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public delegate void AnagPazientiRowChangeEventHandler(object sender, AnagPazientiRowChangeEvent e);
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public delegate void ElencoVisiteRowChangeEventHandler(object sender, ElencoVisiteRowChangeEvent e);
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public delegate void VisLabRowChangeEventHandler(object sender, VisLabRowChangeEvent e);
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public delegate void VisAnamCliRowChangeEventHandler(object sender, VisAnamCliRowChangeEvent e);
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public delegate void VisCardioPolRowChangeEventHandler(object sender, VisCardioPolRowChangeEvent e);
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public delegate void VisPsicoRowChangeEventHandler(object sender, VisPsicoRowChangeEvent e);
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public delegate void VisStileVitaRowChangeEventHandler(object sender, VisStileVitaRowChangeEvent e);
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public delegate void VisRelazFinRowChangeEventHandler(object sender, VisRelazFinRowChangeEvent e);
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public delegate void stp_rep_DatiFullByPazienteDataRowChangeEventHandler(object sender, stp_rep_DatiFullByPazienteDataRowChangeEvent e);
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public delegate void VisBioMecAntRowChangeEventHandler(object sender, VisBioMecAntRowChangeEvent e);
+
+ ///
+ ///Represents the strongly named DataTable class.
+ ///
+ [global::System.Serializable()]
+ [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
+ public partial class AnagPazientiDataTable : global::System.Data.TypedTableBase {
+
+ private global::System.Data.DataColumn columnIdxPaziente;
+
+ private global::System.Data.DataColumn columnGruppo;
+
+ private global::System.Data.DataColumn columnCognome;
+
+ private global::System.Data.DataColumn columnNome;
+
+ private global::System.Data.DataColumn columnDataNasc;
+
+ private global::System.Data.DataColumn columnLuogoNascita;
+
+ private global::System.Data.DataColumn columnSesso;
+
+ private global::System.Data.DataColumn columnCodF;
+
+ private global::System.Data.DataColumn columnIndirizzo;
+
+ private global::System.Data.DataColumn columnEta;
+
+ private global::System.Data.DataColumn columnRecTel;
+
+ private global::System.Data.DataColumn columnMedico;
+
+ private global::System.Data.DataColumn columnNote;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiDataTable() {
+ this.TableName = "AnagPazienti";
+ this.BeginInit();
+ this.InitClass();
+ this.EndInit();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal AnagPazientiDataTable(global::System.Data.DataTable table) {
+ this.TableName = table.TableName;
+ if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
+ this.CaseSensitive = table.CaseSensitive;
+ }
+ if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
+ this.Locale = table.Locale;
+ }
+ if ((table.Namespace != table.DataSet.Namespace)) {
+ this.Namespace = table.Namespace;
+ }
+ this.Prefix = table.Prefix;
+ this.MinimumCapacity = table.MinimumCapacity;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected AnagPazientiDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
+ base(info, context) {
+ this.InitVars();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IdxPazienteColumn {
+ get {
+ return this.columnIdxPaziente;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GruppoColumn {
+ get {
+ return this.columnGruppo;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CognomeColumn {
+ get {
+ return this.columnCognome;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn NomeColumn {
+ get {
+ return this.columnNome;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DataNascColumn {
+ get {
+ return this.columnDataNasc;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn LuogoNascitaColumn {
+ get {
+ return this.columnLuogoNascita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn SessoColumn {
+ get {
+ return this.columnSesso;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CodFColumn {
+ get {
+ return this.columnCodF;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IndirizzoColumn {
+ get {
+ return this.columnIndirizzo;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn EtaColumn {
+ get {
+ return this.columnEta;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn RecTelColumn {
+ get {
+ return this.columnRecTel;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MedicoColumn {
+ get {
+ return this.columnMedico;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn NoteColumn {
+ get {
+ return this.columnNote;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ public int Count {
+ get {
+ return this.Rows.Count;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiRow this[int index] {
+ get {
+ return ((AnagPazientiRow)(this.Rows[index]));
+ }
+ }
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event AnagPazientiRowChangeEventHandler AnagPazientiRowChanging;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event AnagPazientiRowChangeEventHandler AnagPazientiRowChanged;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event AnagPazientiRowChangeEventHandler AnagPazientiRowDeleting;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event AnagPazientiRowChangeEventHandler AnagPazientiRowDeleted;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void AddAnagPazientiRow(AnagPazientiRow row) {
+ this.Rows.Add(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiRow AddAnagPazientiRow(string Gruppo, string Cognome, string Nome, System.DateTime DataNasc, string LuogoNascita, string Sesso, string CodF, string Indirizzo, double Eta, string RecTel, string Medico, string Note) {
+ AnagPazientiRow rowAnagPazientiRow = ((AnagPazientiRow)(this.NewRow()));
+ object[] columnValuesArray = new object[] {
+ null,
+ Gruppo,
+ Cognome,
+ Nome,
+ DataNasc,
+ LuogoNascita,
+ Sesso,
+ CodF,
+ Indirizzo,
+ Eta,
+ RecTel,
+ Medico,
+ Note};
+ rowAnagPazientiRow.ItemArray = columnValuesArray;
+ this.Rows.Add(rowAnagPazientiRow);
+ return rowAnagPazientiRow;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiRow FindByIdxPaziente(int IdxPaziente) {
+ return ((AnagPazientiRow)(this.Rows.Find(new object[] {
+ IdxPaziente})));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public override global::System.Data.DataTable Clone() {
+ AnagPazientiDataTable cln = ((AnagPazientiDataTable)(base.Clone()));
+ cln.InitVars();
+ return cln;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataTable CreateInstance() {
+ return new AnagPazientiDataTable();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal void InitVars() {
+ this.columnIdxPaziente = base.Columns["IdxPaziente"];
+ this.columnGruppo = base.Columns["Gruppo"];
+ this.columnCognome = base.Columns["Cognome"];
+ this.columnNome = base.Columns["Nome"];
+ this.columnDataNasc = base.Columns["DataNasc"];
+ this.columnLuogoNascita = base.Columns["LuogoNascita"];
+ this.columnSesso = base.Columns["Sesso"];
+ this.columnCodF = base.Columns["CodF"];
+ this.columnIndirizzo = base.Columns["Indirizzo"];
+ this.columnEta = base.Columns["Eta"];
+ this.columnRecTel = base.Columns["RecTel"];
+ this.columnMedico = base.Columns["Medico"];
+ this.columnNote = base.Columns["Note"];
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitClass() {
+ this.columnIdxPaziente = new global::System.Data.DataColumn("IdxPaziente", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIdxPaziente);
+ this.columnGruppo = new global::System.Data.DataColumn("Gruppo", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGruppo);
+ this.columnCognome = new global::System.Data.DataColumn("Cognome", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCognome);
+ this.columnNome = new global::System.Data.DataColumn("Nome", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNome);
+ this.columnDataNasc = new global::System.Data.DataColumn("DataNasc", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDataNasc);
+ this.columnLuogoNascita = new global::System.Data.DataColumn("LuogoNascita", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnLuogoNascita);
+ this.columnSesso = new global::System.Data.DataColumn("Sesso", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnSesso);
+ this.columnCodF = new global::System.Data.DataColumn("CodF", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCodF);
+ this.columnIndirizzo = new global::System.Data.DataColumn("Indirizzo", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIndirizzo);
+ this.columnEta = new global::System.Data.DataColumn("Eta", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnEta);
+ this.columnRecTel = new global::System.Data.DataColumn("RecTel", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnRecTel);
+ this.columnMedico = new global::System.Data.DataColumn("Medico", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMedico);
+ this.columnNote = new global::System.Data.DataColumn("Note", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNote);
+ this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
+ this.columnIdxPaziente}, true));
+ this.columnIdxPaziente.AutoIncrement = true;
+ this.columnIdxPaziente.AutoIncrementSeed = -1;
+ this.columnIdxPaziente.AutoIncrementStep = -1;
+ this.columnIdxPaziente.AllowDBNull = false;
+ this.columnIdxPaziente.ReadOnly = true;
+ this.columnIdxPaziente.Unique = true;
+ this.columnGruppo.AllowDBNull = false;
+ this.columnGruppo.MaxLength = 5;
+ this.columnCognome.AllowDBNull = false;
+ this.columnCognome.MaxLength = 50;
+ this.columnNome.AllowDBNull = false;
+ this.columnNome.MaxLength = 50;
+ this.columnDataNasc.AllowDBNull = false;
+ this.columnLuogoNascita.AllowDBNull = false;
+ this.columnLuogoNascita.MaxLength = 50;
+ this.columnSesso.AllowDBNull = false;
+ this.columnSesso.MaxLength = 1;
+ this.columnCodF.AllowDBNull = false;
+ this.columnCodF.MaxLength = 20;
+ this.columnIndirizzo.AllowDBNull = false;
+ this.columnIndirizzo.MaxLength = 50;
+ this.columnEta.ReadOnly = true;
+ this.columnRecTel.AllowDBNull = false;
+ this.columnRecTel.MaxLength = 50;
+ this.columnMedico.AllowDBNull = false;
+ this.columnMedico.MaxLength = 50;
+ this.columnNote.AllowDBNull = false;
+ this.columnNote.MaxLength = 500;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiRow NewAnagPazientiRow() {
+ return ((AnagPazientiRow)(this.NewRow()));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
+ return new AnagPazientiRow(builder);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Type GetRowType() {
+ return typeof(AnagPazientiRow);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanged(e);
+ if ((this.AnagPazientiRowChanged != null)) {
+ this.AnagPazientiRowChanged(this, new AnagPazientiRowChangeEvent(((AnagPazientiRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanging(e);
+ if ((this.AnagPazientiRowChanging != null)) {
+ this.AnagPazientiRowChanging(this, new AnagPazientiRowChangeEvent(((AnagPazientiRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleted(e);
+ if ((this.AnagPazientiRowDeleted != null)) {
+ this.AnagPazientiRowDeleted(this, new AnagPazientiRowChangeEvent(((AnagPazientiRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleting(e);
+ if ((this.AnagPazientiRowDeleting != null)) {
+ this.AnagPazientiRowDeleting(this, new AnagPazientiRowChangeEvent(((AnagPazientiRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void RemoveAnagPazientiRow(AnagPazientiRow row) {
+ this.Rows.Remove(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
+ global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
+ global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
+ DS_Applicazione ds = new DS_Applicazione();
+ global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
+ any1.Namespace = "http://www.w3.org/2001/XMLSchema";
+ any1.MinOccurs = new decimal(0);
+ any1.MaxOccurs = decimal.MaxValue;
+ any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any1);
+ global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
+ any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
+ any2.MinOccurs = new decimal(1);
+ any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any2);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute1.Name = "namespace";
+ attribute1.FixedValue = ds.Namespace;
+ type.Attributes.Add(attribute1);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute2.Name = "tableTypeName";
+ attribute2.FixedValue = "AnagPazientiDataTable";
+ type.Attributes.Add(attribute2);
+ type.Particle = sequence;
+ global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
+ if (xs.Contains(dsSchema.TargetNamespace)) {
+ global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
+ global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
+ try {
+ global::System.Xml.Schema.XmlSchema schema = null;
+ dsSchema.Write(s1);
+ for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
+ schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
+ s2.SetLength(0);
+ schema.Write(s2);
+ if ((s1.Length == s2.Length)) {
+ s1.Position = 0;
+ s2.Position = 0;
+ for (; ((s1.Position != s1.Length)
+ && (s1.ReadByte() == s2.ReadByte())); ) {
+ ;
+ }
+ if ((s1.Position == s1.Length)) {
+ return type;
+ }
+ }
+ }
+ }
+ finally {
+ if ((s1 != null)) {
+ s1.Close();
+ }
+ if ((s2 != null)) {
+ s2.Close();
+ }
+ }
+ }
+ xs.Add(dsSchema);
+ return type;
+ }
+ }
+
+ ///
+ ///Represents the strongly named DataTable class.
+ ///
+ [global::System.Serializable()]
+ [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
+ public partial class ElencoVisiteDataTable : global::System.Data.TypedTableBase {
+
+ private global::System.Data.DataColumn columnDataVisita;
+
+ private global::System.Data.DataColumn columnVAC;
+
+ private global::System.Data.DataColumn columnVBMA;
+
+ private global::System.Data.DataColumn columnVCP;
+
+ private global::System.Data.DataColumn columnVL;
+
+ private global::System.Data.DataColumn columnVP;
+
+ private global::System.Data.DataColumn columnVSV;
+
+ private global::System.Data.DataColumn columnVRF;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public ElencoVisiteDataTable() {
+ this.TableName = "ElencoVisite";
+ this.BeginInit();
+ this.InitClass();
+ this.EndInit();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal ElencoVisiteDataTable(global::System.Data.DataTable table) {
+ this.TableName = table.TableName;
+ if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
+ this.CaseSensitive = table.CaseSensitive;
+ }
+ if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
+ this.Locale = table.Locale;
+ }
+ if ((table.Namespace != table.DataSet.Namespace)) {
+ this.Namespace = table.Namespace;
+ }
+ this.Prefix = table.Prefix;
+ this.MinimumCapacity = table.MinimumCapacity;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected ElencoVisiteDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
+ base(info, context) {
+ this.InitVars();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DataVisitaColumn {
+ get {
+ return this.columnDataVisita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VACColumn {
+ get {
+ return this.columnVAC;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VBMAColumn {
+ get {
+ return this.columnVBMA;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VCPColumn {
+ get {
+ return this.columnVCP;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VLColumn {
+ get {
+ return this.columnVL;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VPColumn {
+ get {
+ return this.columnVP;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VSVColumn {
+ get {
+ return this.columnVSV;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VRFColumn {
+ get {
+ return this.columnVRF;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ public int Count {
+ get {
+ return this.Rows.Count;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public ElencoVisiteRow this[int index] {
+ get {
+ return ((ElencoVisiteRow)(this.Rows[index]));
+ }
+ }
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event ElencoVisiteRowChangeEventHandler ElencoVisiteRowChanging;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event ElencoVisiteRowChangeEventHandler ElencoVisiteRowChanged;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event ElencoVisiteRowChangeEventHandler ElencoVisiteRowDeleting;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event ElencoVisiteRowChangeEventHandler ElencoVisiteRowDeleted;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void AddElencoVisiteRow(ElencoVisiteRow row) {
+ this.Rows.Add(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public ElencoVisiteRow AddElencoVisiteRow(System.DateTime DataVisita, int VAC, int VBMA, int VCP, int VL, int VP, int VSV, int VRF) {
+ ElencoVisiteRow rowElencoVisiteRow = ((ElencoVisiteRow)(this.NewRow()));
+ object[] columnValuesArray = new object[] {
+ DataVisita,
+ VAC,
+ VBMA,
+ VCP,
+ VL,
+ VP,
+ VSV,
+ VRF};
+ rowElencoVisiteRow.ItemArray = columnValuesArray;
+ this.Rows.Add(rowElencoVisiteRow);
+ return rowElencoVisiteRow;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public ElencoVisiteRow FindByDataVisita(System.DateTime DataVisita) {
+ return ((ElencoVisiteRow)(this.Rows.Find(new object[] {
+ DataVisita})));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public override global::System.Data.DataTable Clone() {
+ ElencoVisiteDataTable cln = ((ElencoVisiteDataTable)(base.Clone()));
+ cln.InitVars();
+ return cln;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataTable CreateInstance() {
+ return new ElencoVisiteDataTable();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal void InitVars() {
+ this.columnDataVisita = base.Columns["DataVisita"];
+ this.columnVAC = base.Columns["VAC"];
+ this.columnVBMA = base.Columns["VBMA"];
+ this.columnVCP = base.Columns["VCP"];
+ this.columnVL = base.Columns["VL"];
+ this.columnVP = base.Columns["VP"];
+ this.columnVSV = base.Columns["VSV"];
+ this.columnVRF = base.Columns["VRF"];
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitClass() {
+ this.columnDataVisita = new global::System.Data.DataColumn("DataVisita", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDataVisita);
+ this.columnVAC = new global::System.Data.DataColumn("VAC", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVAC);
+ this.columnVBMA = new global::System.Data.DataColumn("VBMA", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVBMA);
+ this.columnVCP = new global::System.Data.DataColumn("VCP", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVCP);
+ this.columnVL = new global::System.Data.DataColumn("VL", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVL);
+ this.columnVP = new global::System.Data.DataColumn("VP", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVP);
+ this.columnVSV = new global::System.Data.DataColumn("VSV", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVSV);
+ this.columnVRF = new global::System.Data.DataColumn("VRF", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVRF);
+ this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
+ this.columnDataVisita}, true));
+ this.columnDataVisita.AllowDBNull = false;
+ this.columnDataVisita.Unique = true;
+ this.columnVAC.ReadOnly = true;
+ this.columnVBMA.ReadOnly = true;
+ this.columnVCP.ReadOnly = true;
+ this.columnVL.ReadOnly = true;
+ this.columnVP.ReadOnly = true;
+ this.columnVSV.ReadOnly = true;
+ this.columnVRF.ReadOnly = true;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public ElencoVisiteRow NewElencoVisiteRow() {
+ return ((ElencoVisiteRow)(this.NewRow()));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
+ return new ElencoVisiteRow(builder);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Type GetRowType() {
+ return typeof(ElencoVisiteRow);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanged(e);
+ if ((this.ElencoVisiteRowChanged != null)) {
+ this.ElencoVisiteRowChanged(this, new ElencoVisiteRowChangeEvent(((ElencoVisiteRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanging(e);
+ if ((this.ElencoVisiteRowChanging != null)) {
+ this.ElencoVisiteRowChanging(this, new ElencoVisiteRowChangeEvent(((ElencoVisiteRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleted(e);
+ if ((this.ElencoVisiteRowDeleted != null)) {
+ this.ElencoVisiteRowDeleted(this, new ElencoVisiteRowChangeEvent(((ElencoVisiteRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleting(e);
+ if ((this.ElencoVisiteRowDeleting != null)) {
+ this.ElencoVisiteRowDeleting(this, new ElencoVisiteRowChangeEvent(((ElencoVisiteRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void RemoveElencoVisiteRow(ElencoVisiteRow row) {
+ this.Rows.Remove(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
+ global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
+ global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
+ DS_Applicazione ds = new DS_Applicazione();
+ global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
+ any1.Namespace = "http://www.w3.org/2001/XMLSchema";
+ any1.MinOccurs = new decimal(0);
+ any1.MaxOccurs = decimal.MaxValue;
+ any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any1);
+ global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
+ any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
+ any2.MinOccurs = new decimal(1);
+ any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any2);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute1.Name = "namespace";
+ attribute1.FixedValue = ds.Namespace;
+ type.Attributes.Add(attribute1);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute2.Name = "tableTypeName";
+ attribute2.FixedValue = "ElencoVisiteDataTable";
+ type.Attributes.Add(attribute2);
+ type.Particle = sequence;
+ global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
+ if (xs.Contains(dsSchema.TargetNamespace)) {
+ global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
+ global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
+ try {
+ global::System.Xml.Schema.XmlSchema schema = null;
+ dsSchema.Write(s1);
+ for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
+ schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
+ s2.SetLength(0);
+ schema.Write(s2);
+ if ((s1.Length == s2.Length)) {
+ s1.Position = 0;
+ s2.Position = 0;
+ for (; ((s1.Position != s1.Length)
+ && (s1.ReadByte() == s2.ReadByte())); ) {
+ ;
+ }
+ if ((s1.Position == s1.Length)) {
+ return type;
+ }
+ }
+ }
+ }
+ finally {
+ if ((s1 != null)) {
+ s1.Close();
+ }
+ if ((s2 != null)) {
+ s2.Close();
+ }
+ }
+ }
+ xs.Add(dsSchema);
+ return type;
+ }
+ }
+
+ ///
+ ///Represents the strongly named DataTable class.
+ ///
+ [global::System.Serializable()]
+ [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
+ public partial class VisLabDataTable : global::System.Data.TypedTableBase {
+
+ private global::System.Data.DataColumn columnIdxPaziente;
+
+ private global::System.Data.DataColumn columnDataVisita;
+
+ private global::System.Data.DataColumn columnGlicemia;
+
+ private global::System.Data.DataColumn columnEmoglGlicata;
+
+ private global::System.Data.DataColumn columnColesTot;
+
+ private global::System.Data.DataColumn columnLDL;
+
+ private global::System.Data.DataColumn columnHDL;
+
+ private global::System.Data.DataColumn columnTrigliceridi;
+
+ private global::System.Data.DataColumn columnColRapLDLHDL;
+
+ private global::System.Data.DataColumn columnOmocisteina;
+
+ private global::System.Data.DataColumn columnMHTFR;
+
+ private global::System.Data.DataColumn columnFattII;
+
+ private global::System.Data.DataColumn columnFattV;
+
+ private global::System.Data.DataColumn columnGradTransm;
+
+ private global::System.Data.DataColumn columnLungTelom;
+
+ private global::System.Data.DataColumn columnRespSilenz;
+
+ private global::System.Data.DataColumn columnFolatemia;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisLabDataTable() {
+ this.TableName = "VisLab";
+ this.BeginInit();
+ this.InitClass();
+ this.EndInit();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal VisLabDataTable(global::System.Data.DataTable table) {
+ this.TableName = table.TableName;
+ if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
+ this.CaseSensitive = table.CaseSensitive;
+ }
+ if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
+ this.Locale = table.Locale;
+ }
+ if ((table.Namespace != table.DataSet.Namespace)) {
+ this.Namespace = table.Namespace;
+ }
+ this.Prefix = table.Prefix;
+ this.MinimumCapacity = table.MinimumCapacity;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected VisLabDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
+ base(info, context) {
+ this.InitVars();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IdxPazienteColumn {
+ get {
+ return this.columnIdxPaziente;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DataVisitaColumn {
+ get {
+ return this.columnDataVisita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GlicemiaColumn {
+ get {
+ return this.columnGlicemia;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn EmoglGlicataColumn {
+ get {
+ return this.columnEmoglGlicata;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn ColesTotColumn {
+ get {
+ return this.columnColesTot;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn LDLColumn {
+ get {
+ return this.columnLDL;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn HDLColumn {
+ get {
+ return this.columnHDL;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TrigliceridiColumn {
+ get {
+ return this.columnTrigliceridi;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn ColRapLDLHDLColumn {
+ get {
+ return this.columnColRapLDLHDL;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OmocisteinaColumn {
+ get {
+ return this.columnOmocisteina;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MHTFRColumn {
+ get {
+ return this.columnMHTFR;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FattIIColumn {
+ get {
+ return this.columnFattII;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FattVColumn {
+ get {
+ return this.columnFattV;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GradTransmColumn {
+ get {
+ return this.columnGradTransm;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn LungTelomColumn {
+ get {
+ return this.columnLungTelom;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn RespSilenzColumn {
+ get {
+ return this.columnRespSilenz;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FolatemiaColumn {
+ get {
+ return this.columnFolatemia;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ public int Count {
+ get {
+ return this.Rows.Count;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisLabRow this[int index] {
+ get {
+ return ((VisLabRow)(this.Rows[index]));
+ }
+ }
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisLabRowChangeEventHandler VisLabRowChanging;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisLabRowChangeEventHandler VisLabRowChanged;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisLabRowChangeEventHandler VisLabRowDeleting;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisLabRowChangeEventHandler VisLabRowDeleted;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void AddVisLabRow(VisLabRow row) {
+ this.Rows.Add(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisLabRow AddVisLabRow(
+ AnagPazientiRow parentAnagPazientiRowByFK_VisClinGen_AnagPazienti,
+ System.DateTime DataVisita,
+ double Glicemia,
+ double EmoglGlicata,
+ double ColesTot,
+ double LDL,
+ double HDL,
+ double Trigliceridi,
+ double ColRapLDLHDL,
+ double Omocisteina,
+ double MHTFR,
+ double FattII,
+ double FattV,
+ double GradTransm,
+ double LungTelom,
+ double RespSilenz,
+ double Folatemia) {
+ VisLabRow rowVisLabRow = ((VisLabRow)(this.NewRow()));
+ object[] columnValuesArray = new object[] {
+ null,
+ DataVisita,
+ Glicemia,
+ EmoglGlicata,
+ ColesTot,
+ LDL,
+ HDL,
+ Trigliceridi,
+ ColRapLDLHDL,
+ Omocisteina,
+ MHTFR,
+ FattII,
+ FattV,
+ GradTransm,
+ LungTelom,
+ RespSilenz,
+ Folatemia};
+ if ((parentAnagPazientiRowByFK_VisClinGen_AnagPazienti != null)) {
+ columnValuesArray[0] = parentAnagPazientiRowByFK_VisClinGen_AnagPazienti[0];
+ }
+ rowVisLabRow.ItemArray = columnValuesArray;
+ this.Rows.Add(rowVisLabRow);
+ return rowVisLabRow;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisLabRow FindByIdxPazienteDataVisita(int IdxPaziente, System.DateTime DataVisita) {
+ return ((VisLabRow)(this.Rows.Find(new object[] {
+ IdxPaziente,
+ DataVisita})));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public override global::System.Data.DataTable Clone() {
+ VisLabDataTable cln = ((VisLabDataTable)(base.Clone()));
+ cln.InitVars();
+ return cln;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataTable CreateInstance() {
+ return new VisLabDataTable();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal void InitVars() {
+ this.columnIdxPaziente = base.Columns["IdxPaziente"];
+ this.columnDataVisita = base.Columns["DataVisita"];
+ this.columnGlicemia = base.Columns["Glicemia"];
+ this.columnEmoglGlicata = base.Columns["EmoglGlicata"];
+ this.columnColesTot = base.Columns["ColesTot"];
+ this.columnLDL = base.Columns["LDL"];
+ this.columnHDL = base.Columns["HDL"];
+ this.columnTrigliceridi = base.Columns["Trigliceridi"];
+ this.columnColRapLDLHDL = base.Columns["ColRapLDLHDL"];
+ this.columnOmocisteina = base.Columns["Omocisteina"];
+ this.columnMHTFR = base.Columns["MHTFR"];
+ this.columnFattII = base.Columns["FattII"];
+ this.columnFattV = base.Columns["FattV"];
+ this.columnGradTransm = base.Columns["GradTransm"];
+ this.columnLungTelom = base.Columns["LungTelom"];
+ this.columnRespSilenz = base.Columns["RespSilenz"];
+ this.columnFolatemia = base.Columns["Folatemia"];
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitClass() {
+ this.columnIdxPaziente = new global::System.Data.DataColumn("IdxPaziente", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIdxPaziente);
+ this.columnDataVisita = new global::System.Data.DataColumn("DataVisita", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDataVisita);
+ this.columnGlicemia = new global::System.Data.DataColumn("Glicemia", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGlicemia);
+ this.columnEmoglGlicata = new global::System.Data.DataColumn("EmoglGlicata", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnEmoglGlicata);
+ this.columnColesTot = new global::System.Data.DataColumn("ColesTot", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnColesTot);
+ this.columnLDL = new global::System.Data.DataColumn("LDL", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnLDL);
+ this.columnHDL = new global::System.Data.DataColumn("HDL", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnHDL);
+ this.columnTrigliceridi = new global::System.Data.DataColumn("Trigliceridi", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTrigliceridi);
+ this.columnColRapLDLHDL = new global::System.Data.DataColumn("ColRapLDLHDL", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnColRapLDLHDL);
+ this.columnOmocisteina = new global::System.Data.DataColumn("Omocisteina", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOmocisteina);
+ this.columnMHTFR = new global::System.Data.DataColumn("MHTFR", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMHTFR);
+ this.columnFattII = new global::System.Data.DataColumn("FattII", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFattII);
+ this.columnFattV = new global::System.Data.DataColumn("FattV", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFattV);
+ this.columnGradTransm = new global::System.Data.DataColumn("GradTransm", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGradTransm);
+ this.columnLungTelom = new global::System.Data.DataColumn("LungTelom", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnLungTelom);
+ this.columnRespSilenz = new global::System.Data.DataColumn("RespSilenz", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnRespSilenz);
+ this.columnFolatemia = new global::System.Data.DataColumn("Folatemia", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFolatemia);
+ this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
+ this.columnIdxPaziente,
+ this.columnDataVisita}, true));
+ this.columnIdxPaziente.AllowDBNull = false;
+ this.columnDataVisita.AllowDBNull = false;
+ this.columnGlicemia.AllowDBNull = false;
+ this.columnEmoglGlicata.AllowDBNull = false;
+ this.columnColesTot.AllowDBNull = false;
+ this.columnLDL.AllowDBNull = false;
+ this.columnHDL.AllowDBNull = false;
+ this.columnTrigliceridi.AllowDBNull = false;
+ this.columnColRapLDLHDL.ReadOnly = true;
+ this.columnOmocisteina.AllowDBNull = false;
+ this.columnMHTFR.AllowDBNull = false;
+ this.columnFattII.AllowDBNull = false;
+ this.columnFattV.AllowDBNull = false;
+ this.columnGradTransm.AllowDBNull = false;
+ this.columnLungTelom.AllowDBNull = false;
+ this.columnRespSilenz.AllowDBNull = false;
+ this.columnFolatemia.AllowDBNull = false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisLabRow NewVisLabRow() {
+ return ((VisLabRow)(this.NewRow()));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
+ return new VisLabRow(builder);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Type GetRowType() {
+ return typeof(VisLabRow);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanged(e);
+ if ((this.VisLabRowChanged != null)) {
+ this.VisLabRowChanged(this, new VisLabRowChangeEvent(((VisLabRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanging(e);
+ if ((this.VisLabRowChanging != null)) {
+ this.VisLabRowChanging(this, new VisLabRowChangeEvent(((VisLabRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleted(e);
+ if ((this.VisLabRowDeleted != null)) {
+ this.VisLabRowDeleted(this, new VisLabRowChangeEvent(((VisLabRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleting(e);
+ if ((this.VisLabRowDeleting != null)) {
+ this.VisLabRowDeleting(this, new VisLabRowChangeEvent(((VisLabRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void RemoveVisLabRow(VisLabRow row) {
+ this.Rows.Remove(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
+ global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
+ global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
+ DS_Applicazione ds = new DS_Applicazione();
+ global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
+ any1.Namespace = "http://www.w3.org/2001/XMLSchema";
+ any1.MinOccurs = new decimal(0);
+ any1.MaxOccurs = decimal.MaxValue;
+ any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any1);
+ global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
+ any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
+ any2.MinOccurs = new decimal(1);
+ any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any2);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute1.Name = "namespace";
+ attribute1.FixedValue = ds.Namespace;
+ type.Attributes.Add(attribute1);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute2.Name = "tableTypeName";
+ attribute2.FixedValue = "VisLabDataTable";
+ type.Attributes.Add(attribute2);
+ type.Particle = sequence;
+ global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
+ if (xs.Contains(dsSchema.TargetNamespace)) {
+ global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
+ global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
+ try {
+ global::System.Xml.Schema.XmlSchema schema = null;
+ dsSchema.Write(s1);
+ for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
+ schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
+ s2.SetLength(0);
+ schema.Write(s2);
+ if ((s1.Length == s2.Length)) {
+ s1.Position = 0;
+ s2.Position = 0;
+ for (; ((s1.Position != s1.Length)
+ && (s1.ReadByte() == s2.ReadByte())); ) {
+ ;
+ }
+ if ((s1.Position == s1.Length)) {
+ return type;
+ }
+ }
+ }
+ }
+ finally {
+ if ((s1 != null)) {
+ s1.Close();
+ }
+ if ((s2 != null)) {
+ s2.Close();
+ }
+ }
+ }
+ xs.Add(dsSchema);
+ return type;
+ }
+ }
+
+ ///
+ ///Represents the strongly named DataTable class.
+ ///
+ [global::System.Serializable()]
+ [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
+ public partial class VisAnamCliDataTable : global::System.Data.TypedTableBase {
+
+ private global::System.Data.DataColumn columnIdxPaziente;
+
+ private global::System.Data.DataColumn columnDataVisita;
+
+ private global::System.Data.DataColumn columnFamMCCV;
+
+ private global::System.Data.DataColumn columnIpertens;
+
+ private global::System.Data.DataColumn columnIpertensYtd;
+
+ private global::System.Data.DataColumn columnDiabete;
+
+ private global::System.Data.DataColumn columnDiabeteYtd;
+
+ private global::System.Data.DataColumn columnIpercolest;
+
+ private global::System.Data.DataColumn columnIpercolestYtd;
+
+ private global::System.Data.DataColumn columnFumo;
+
+ private global::System.Data.DataColumn columnFumoYtd;
+
+ private global::System.Data.DataColumn columnAlcool;
+
+ private global::System.Data.DataColumn columnAlcoolYtd;
+
+ private global::System.Data.DataColumn columnSovrapp;
+
+ private global::System.Data.DataColumn columnSovrappYtd;
+
+ private global::System.Data.DataColumn columnSedent;
+
+ private global::System.Data.DataColumn columnAdesTerap;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisAnamCliDataTable() {
+ this.TableName = "VisAnamCli";
+ this.BeginInit();
+ this.InitClass();
+ this.EndInit();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal VisAnamCliDataTable(global::System.Data.DataTable table) {
+ this.TableName = table.TableName;
+ if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
+ this.CaseSensitive = table.CaseSensitive;
+ }
+ if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
+ this.Locale = table.Locale;
+ }
+ if ((table.Namespace != table.DataSet.Namespace)) {
+ this.Namespace = table.Namespace;
+ }
+ this.Prefix = table.Prefix;
+ this.MinimumCapacity = table.MinimumCapacity;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected VisAnamCliDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
+ base(info, context) {
+ this.InitVars();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IdxPazienteColumn {
+ get {
+ return this.columnIdxPaziente;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DataVisitaColumn {
+ get {
+ return this.columnDataVisita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FamMCCVColumn {
+ get {
+ return this.columnFamMCCV;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IpertensColumn {
+ get {
+ return this.columnIpertens;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IpertensYtdColumn {
+ get {
+ return this.columnIpertensYtd;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DiabeteColumn {
+ get {
+ return this.columnDiabete;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DiabeteYtdColumn {
+ get {
+ return this.columnDiabeteYtd;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IpercolestColumn {
+ get {
+ return this.columnIpercolest;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IpercolestYtdColumn {
+ get {
+ return this.columnIpercolestYtd;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FumoColumn {
+ get {
+ return this.columnFumo;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FumoYtdColumn {
+ get {
+ return this.columnFumoYtd;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn AlcoolColumn {
+ get {
+ return this.columnAlcool;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn AlcoolYtdColumn {
+ get {
+ return this.columnAlcoolYtd;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn SovrappColumn {
+ get {
+ return this.columnSovrapp;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn SovrappYtdColumn {
+ get {
+ return this.columnSovrappYtd;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn SedentColumn {
+ get {
+ return this.columnSedent;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn AdesTerapColumn {
+ get {
+ return this.columnAdesTerap;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ public int Count {
+ get {
+ return this.Rows.Count;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisAnamCliRow this[int index] {
+ get {
+ return ((VisAnamCliRow)(this.Rows[index]));
+ }
+ }
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisAnamCliRowChangeEventHandler VisAnamCliRowChanging;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisAnamCliRowChangeEventHandler VisAnamCliRowChanged;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisAnamCliRowChangeEventHandler VisAnamCliRowDeleting;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisAnamCliRowChangeEventHandler VisAnamCliRowDeleted;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void AddVisAnamCliRow(VisAnamCliRow row) {
+ this.Rows.Add(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisAnamCliRow AddVisAnamCliRow(
+ AnagPazientiRow parentAnagPazientiRowByFK_VisAnamCli_AnagPazienti,
+ System.DateTime DataVisita,
+ int FamMCCV,
+ int Ipertens,
+ int IpertensYtd,
+ int Diabete,
+ int DiabeteYtd,
+ int Ipercolest,
+ int IpercolestYtd,
+ int Fumo,
+ int FumoYtd,
+ int Alcool,
+ int AlcoolYtd,
+ int Sovrapp,
+ int SovrappYtd,
+ int Sedent,
+ int AdesTerap) {
+ VisAnamCliRow rowVisAnamCliRow = ((VisAnamCliRow)(this.NewRow()));
+ object[] columnValuesArray = new object[] {
+ null,
+ DataVisita,
+ FamMCCV,
+ Ipertens,
+ IpertensYtd,
+ Diabete,
+ DiabeteYtd,
+ Ipercolest,
+ IpercolestYtd,
+ Fumo,
+ FumoYtd,
+ Alcool,
+ AlcoolYtd,
+ Sovrapp,
+ SovrappYtd,
+ Sedent,
+ AdesTerap};
+ if ((parentAnagPazientiRowByFK_VisAnamCli_AnagPazienti != null)) {
+ columnValuesArray[0] = parentAnagPazientiRowByFK_VisAnamCli_AnagPazienti[0];
+ }
+ rowVisAnamCliRow.ItemArray = columnValuesArray;
+ this.Rows.Add(rowVisAnamCliRow);
+ return rowVisAnamCliRow;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisAnamCliRow FindByIdxPazienteDataVisita(int IdxPaziente, System.DateTime DataVisita) {
+ return ((VisAnamCliRow)(this.Rows.Find(new object[] {
+ IdxPaziente,
+ DataVisita})));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public override global::System.Data.DataTable Clone() {
+ VisAnamCliDataTable cln = ((VisAnamCliDataTable)(base.Clone()));
+ cln.InitVars();
+ return cln;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataTable CreateInstance() {
+ return new VisAnamCliDataTable();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal void InitVars() {
+ this.columnIdxPaziente = base.Columns["IdxPaziente"];
+ this.columnDataVisita = base.Columns["DataVisita"];
+ this.columnFamMCCV = base.Columns["FamMCCV"];
+ this.columnIpertens = base.Columns["Ipertens"];
+ this.columnIpertensYtd = base.Columns["IpertensYtd"];
+ this.columnDiabete = base.Columns["Diabete"];
+ this.columnDiabeteYtd = base.Columns["DiabeteYtd"];
+ this.columnIpercolest = base.Columns["Ipercolest"];
+ this.columnIpercolestYtd = base.Columns["IpercolestYtd"];
+ this.columnFumo = base.Columns["Fumo"];
+ this.columnFumoYtd = base.Columns["FumoYtd"];
+ this.columnAlcool = base.Columns["Alcool"];
+ this.columnAlcoolYtd = base.Columns["AlcoolYtd"];
+ this.columnSovrapp = base.Columns["Sovrapp"];
+ this.columnSovrappYtd = base.Columns["SovrappYtd"];
+ this.columnSedent = base.Columns["Sedent"];
+ this.columnAdesTerap = base.Columns["AdesTerap"];
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitClass() {
+ this.columnIdxPaziente = new global::System.Data.DataColumn("IdxPaziente", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIdxPaziente);
+ this.columnDataVisita = new global::System.Data.DataColumn("DataVisita", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDataVisita);
+ this.columnFamMCCV = new global::System.Data.DataColumn("FamMCCV", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFamMCCV);
+ this.columnIpertens = new global::System.Data.DataColumn("Ipertens", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIpertens);
+ this.columnIpertensYtd = new global::System.Data.DataColumn("IpertensYtd", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIpertensYtd);
+ this.columnDiabete = new global::System.Data.DataColumn("Diabete", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDiabete);
+ this.columnDiabeteYtd = new global::System.Data.DataColumn("DiabeteYtd", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDiabeteYtd);
+ this.columnIpercolest = new global::System.Data.DataColumn("Ipercolest", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIpercolest);
+ this.columnIpercolestYtd = new global::System.Data.DataColumn("IpercolestYtd", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIpercolestYtd);
+ this.columnFumo = new global::System.Data.DataColumn("Fumo", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFumo);
+ this.columnFumoYtd = new global::System.Data.DataColumn("FumoYtd", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFumoYtd);
+ this.columnAlcool = new global::System.Data.DataColumn("Alcool", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnAlcool);
+ this.columnAlcoolYtd = new global::System.Data.DataColumn("AlcoolYtd", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnAlcoolYtd);
+ this.columnSovrapp = new global::System.Data.DataColumn("Sovrapp", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnSovrapp);
+ this.columnSovrappYtd = new global::System.Data.DataColumn("SovrappYtd", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnSovrappYtd);
+ this.columnSedent = new global::System.Data.DataColumn("Sedent", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnSedent);
+ this.columnAdesTerap = new global::System.Data.DataColumn("AdesTerap", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnAdesTerap);
+ this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
+ this.columnIdxPaziente,
+ this.columnDataVisita}, true));
+ this.columnIdxPaziente.AllowDBNull = false;
+ this.columnDataVisita.AllowDBNull = false;
+ this.columnFamMCCV.AllowDBNull = false;
+ this.columnIpertens.AllowDBNull = false;
+ this.columnIpertensYtd.AllowDBNull = false;
+ this.columnDiabete.AllowDBNull = false;
+ this.columnDiabeteYtd.AllowDBNull = false;
+ this.columnIpercolest.AllowDBNull = false;
+ this.columnIpercolestYtd.AllowDBNull = false;
+ this.columnFumo.AllowDBNull = false;
+ this.columnFumoYtd.AllowDBNull = false;
+ this.columnAlcool.AllowDBNull = false;
+ this.columnAlcoolYtd.AllowDBNull = false;
+ this.columnSovrapp.AllowDBNull = false;
+ this.columnSovrappYtd.AllowDBNull = false;
+ this.columnSedent.AllowDBNull = false;
+ this.columnAdesTerap.AllowDBNull = false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisAnamCliRow NewVisAnamCliRow() {
+ return ((VisAnamCliRow)(this.NewRow()));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
+ return new VisAnamCliRow(builder);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Type GetRowType() {
+ return typeof(VisAnamCliRow);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanged(e);
+ if ((this.VisAnamCliRowChanged != null)) {
+ this.VisAnamCliRowChanged(this, new VisAnamCliRowChangeEvent(((VisAnamCliRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanging(e);
+ if ((this.VisAnamCliRowChanging != null)) {
+ this.VisAnamCliRowChanging(this, new VisAnamCliRowChangeEvent(((VisAnamCliRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleted(e);
+ if ((this.VisAnamCliRowDeleted != null)) {
+ this.VisAnamCliRowDeleted(this, new VisAnamCliRowChangeEvent(((VisAnamCliRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleting(e);
+ if ((this.VisAnamCliRowDeleting != null)) {
+ this.VisAnamCliRowDeleting(this, new VisAnamCliRowChangeEvent(((VisAnamCliRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void RemoveVisAnamCliRow(VisAnamCliRow row) {
+ this.Rows.Remove(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
+ global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
+ global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
+ DS_Applicazione ds = new DS_Applicazione();
+ global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
+ any1.Namespace = "http://www.w3.org/2001/XMLSchema";
+ any1.MinOccurs = new decimal(0);
+ any1.MaxOccurs = decimal.MaxValue;
+ any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any1);
+ global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
+ any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
+ any2.MinOccurs = new decimal(1);
+ any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any2);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute1.Name = "namespace";
+ attribute1.FixedValue = ds.Namespace;
+ type.Attributes.Add(attribute1);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute2.Name = "tableTypeName";
+ attribute2.FixedValue = "VisAnamCliDataTable";
+ type.Attributes.Add(attribute2);
+ type.Particle = sequence;
+ global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
+ if (xs.Contains(dsSchema.TargetNamespace)) {
+ global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
+ global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
+ try {
+ global::System.Xml.Schema.XmlSchema schema = null;
+ dsSchema.Write(s1);
+ for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
+ schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
+ s2.SetLength(0);
+ schema.Write(s2);
+ if ((s1.Length == s2.Length)) {
+ s1.Position = 0;
+ s2.Position = 0;
+ for (; ((s1.Position != s1.Length)
+ && (s1.ReadByte() == s2.ReadByte())); ) {
+ ;
+ }
+ if ((s1.Position == s1.Length)) {
+ return type;
+ }
+ }
+ }
+ }
+ finally {
+ if ((s1 != null)) {
+ s1.Close();
+ }
+ if ((s2 != null)) {
+ s2.Close();
+ }
+ }
+ }
+ xs.Add(dsSchema);
+ return type;
+ }
+ }
+
+ ///
+ ///Represents the strongly named DataTable class.
+ ///
+ [global::System.Serializable()]
+ [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
+ public partial class VisCardioPolDataTable : global::System.Data.TypedTableBase {
+
+ private global::System.Data.DataColumn columnIdxPaziente;
+
+ private global::System.Data.DataColumn columnDataVisita;
+
+ private global::System.Data.DataColumn columnPaSis;
+
+ private global::System.Data.DataColumn columnPaDia;
+
+ private global::System.Data.DataColumn columnQR1;
+
+ private global::System.Data.DataColumn columnQR1_Kg;
+
+ private global::System.Data.DataColumn columnVO2;
+
+ private global::System.Data.DataColumn columnVO2_Kg;
+
+ private global::System.Data.DataColumn columnFC_QR1;
+
+ private global::System.Data.DataColumn columnPolsoO2;
+
+ private global::System.Data.DataColumn columnPaSisMax;
+
+ private global::System.Data.DataColumn columnPaDiaMax;
+
+ private global::System.Data.DataColumn columnFrazEiez;
+
+ private global::System.Data.DataColumn columnTDI;
+
+ private global::System.Data.DataColumn columnPlaccheVas;
+
+ private global::System.Data.DataColumn columnNote;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisCardioPolDataTable() {
+ this.TableName = "VisCardioPol";
+ this.BeginInit();
+ this.InitClass();
+ this.EndInit();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal VisCardioPolDataTable(global::System.Data.DataTable table) {
+ this.TableName = table.TableName;
+ if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
+ this.CaseSensitive = table.CaseSensitive;
+ }
+ if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
+ this.Locale = table.Locale;
+ }
+ if ((table.Namespace != table.DataSet.Namespace)) {
+ this.Namespace = table.Namespace;
+ }
+ this.Prefix = table.Prefix;
+ this.MinimumCapacity = table.MinimumCapacity;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected VisCardioPolDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
+ base(info, context) {
+ this.InitVars();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IdxPazienteColumn {
+ get {
+ return this.columnIdxPaziente;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DataVisitaColumn {
+ get {
+ return this.columnDataVisita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PaSisColumn {
+ get {
+ return this.columnPaSis;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PaDiaColumn {
+ get {
+ return this.columnPaDia;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn QR1Column {
+ get {
+ return this.columnQR1;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn QR1_KgColumn {
+ get {
+ return this.columnQR1_Kg;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VO2Column {
+ get {
+ return this.columnVO2;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VO2_KgColumn {
+ get {
+ return this.columnVO2_Kg;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FC_QR1Column {
+ get {
+ return this.columnFC_QR1;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PolsoO2Column {
+ get {
+ return this.columnPolsoO2;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PaSisMaxColumn {
+ get {
+ return this.columnPaSisMax;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PaDiaMaxColumn {
+ get {
+ return this.columnPaDiaMax;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FrazEiezColumn {
+ get {
+ return this.columnFrazEiez;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TDIColumn {
+ get {
+ return this.columnTDI;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlaccheVasColumn {
+ get {
+ return this.columnPlaccheVas;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn NoteColumn {
+ get {
+ return this.columnNote;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ public int Count {
+ get {
+ return this.Rows.Count;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisCardioPolRow this[int index] {
+ get {
+ return ((VisCardioPolRow)(this.Rows[index]));
+ }
+ }
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisCardioPolRowChangeEventHandler VisCardioPolRowChanging;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisCardioPolRowChangeEventHandler VisCardioPolRowChanged;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisCardioPolRowChangeEventHandler VisCardioPolRowDeleting;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisCardioPolRowChangeEventHandler VisCardioPolRowDeleted;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void AddVisCardioPolRow(VisCardioPolRow row) {
+ this.Rows.Add(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisCardioPolRow AddVisCardioPolRow(
+ AnagPazientiRow parentAnagPazientiRowByFK_VisCardioPol_AnagPazienti,
+ System.DateTime DataVisita,
+ int PaSis,
+ int PaDia,
+ double QR1,
+ double QR1_Kg,
+ double VO2,
+ double VO2_Kg,
+ int FC_QR1,
+ double PolsoO2,
+ int PaSisMax,
+ int PaDiaMax,
+ double FrazEiez,
+ double TDI,
+ double PlaccheVas,
+ string Note) {
+ VisCardioPolRow rowVisCardioPolRow = ((VisCardioPolRow)(this.NewRow()));
+ object[] columnValuesArray = new object[] {
+ null,
+ DataVisita,
+ PaSis,
+ PaDia,
+ QR1,
+ QR1_Kg,
+ VO2,
+ VO2_Kg,
+ FC_QR1,
+ PolsoO2,
+ PaSisMax,
+ PaDiaMax,
+ FrazEiez,
+ TDI,
+ PlaccheVas,
+ Note};
+ if ((parentAnagPazientiRowByFK_VisCardioPol_AnagPazienti != null)) {
+ columnValuesArray[0] = parentAnagPazientiRowByFK_VisCardioPol_AnagPazienti[0];
+ }
+ rowVisCardioPolRow.ItemArray = columnValuesArray;
+ this.Rows.Add(rowVisCardioPolRow);
+ return rowVisCardioPolRow;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisCardioPolRow FindByIdxPazienteDataVisita(int IdxPaziente, System.DateTime DataVisita) {
+ return ((VisCardioPolRow)(this.Rows.Find(new object[] {
+ IdxPaziente,
+ DataVisita})));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public override global::System.Data.DataTable Clone() {
+ VisCardioPolDataTable cln = ((VisCardioPolDataTable)(base.Clone()));
+ cln.InitVars();
+ return cln;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataTable CreateInstance() {
+ return new VisCardioPolDataTable();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal void InitVars() {
+ this.columnIdxPaziente = base.Columns["IdxPaziente"];
+ this.columnDataVisita = base.Columns["DataVisita"];
+ this.columnPaSis = base.Columns["PaSis"];
+ this.columnPaDia = base.Columns["PaDia"];
+ this.columnQR1 = base.Columns["QR1"];
+ this.columnQR1_Kg = base.Columns["QR1_Kg"];
+ this.columnVO2 = base.Columns["VO2"];
+ this.columnVO2_Kg = base.Columns["VO2_Kg"];
+ this.columnFC_QR1 = base.Columns["FC_QR1"];
+ this.columnPolsoO2 = base.Columns["PolsoO2"];
+ this.columnPaSisMax = base.Columns["PaSisMax"];
+ this.columnPaDiaMax = base.Columns["PaDiaMax"];
+ this.columnFrazEiez = base.Columns["FrazEiez"];
+ this.columnTDI = base.Columns["TDI"];
+ this.columnPlaccheVas = base.Columns["PlaccheVas"];
+ this.columnNote = base.Columns["Note"];
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitClass() {
+ this.columnIdxPaziente = new global::System.Data.DataColumn("IdxPaziente", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIdxPaziente);
+ this.columnDataVisita = new global::System.Data.DataColumn("DataVisita", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDataVisita);
+ this.columnPaSis = new global::System.Data.DataColumn("PaSis", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPaSis);
+ this.columnPaDia = new global::System.Data.DataColumn("PaDia", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPaDia);
+ this.columnQR1 = new global::System.Data.DataColumn("QR1", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnQR1);
+ this.columnQR1_Kg = new global::System.Data.DataColumn("QR1_Kg", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnQR1_Kg);
+ this.columnVO2 = new global::System.Data.DataColumn("VO2", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVO2);
+ this.columnVO2_Kg = new global::System.Data.DataColumn("VO2_Kg", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVO2_Kg);
+ this.columnFC_QR1 = new global::System.Data.DataColumn("FC_QR1", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFC_QR1);
+ this.columnPolsoO2 = new global::System.Data.DataColumn("PolsoO2", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPolsoO2);
+ this.columnPaSisMax = new global::System.Data.DataColumn("PaSisMax", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPaSisMax);
+ this.columnPaDiaMax = new global::System.Data.DataColumn("PaDiaMax", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPaDiaMax);
+ this.columnFrazEiez = new global::System.Data.DataColumn("FrazEiez", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFrazEiez);
+ this.columnTDI = new global::System.Data.DataColumn("TDI", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTDI);
+ this.columnPlaccheVas = new global::System.Data.DataColumn("PlaccheVas", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlaccheVas);
+ this.columnNote = new global::System.Data.DataColumn("Note", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNote);
+ this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
+ this.columnIdxPaziente,
+ this.columnDataVisita}, true));
+ this.columnIdxPaziente.AllowDBNull = false;
+ this.columnDataVisita.AllowDBNull = false;
+ this.columnPaSis.AllowDBNull = false;
+ this.columnPaDia.AllowDBNull = false;
+ this.columnQR1.AllowDBNull = false;
+ this.columnVO2_Kg.AllowDBNull = false;
+ this.columnFC_QR1.AllowDBNull = false;
+ this.columnPaSisMax.AllowDBNull = false;
+ this.columnPaDiaMax.AllowDBNull = false;
+ this.columnFrazEiez.AllowDBNull = false;
+ this.columnTDI.AllowDBNull = false;
+ this.columnPlaccheVas.AllowDBNull = false;
+ this.columnNote.AllowDBNull = false;
+ this.columnNote.MaxLength = 500;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisCardioPolRow NewVisCardioPolRow() {
+ return ((VisCardioPolRow)(this.NewRow()));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
+ return new VisCardioPolRow(builder);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Type GetRowType() {
+ return typeof(VisCardioPolRow);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanged(e);
+ if ((this.VisCardioPolRowChanged != null)) {
+ this.VisCardioPolRowChanged(this, new VisCardioPolRowChangeEvent(((VisCardioPolRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanging(e);
+ if ((this.VisCardioPolRowChanging != null)) {
+ this.VisCardioPolRowChanging(this, new VisCardioPolRowChangeEvent(((VisCardioPolRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleted(e);
+ if ((this.VisCardioPolRowDeleted != null)) {
+ this.VisCardioPolRowDeleted(this, new VisCardioPolRowChangeEvent(((VisCardioPolRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleting(e);
+ if ((this.VisCardioPolRowDeleting != null)) {
+ this.VisCardioPolRowDeleting(this, new VisCardioPolRowChangeEvent(((VisCardioPolRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void RemoveVisCardioPolRow(VisCardioPolRow row) {
+ this.Rows.Remove(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
+ global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
+ global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
+ DS_Applicazione ds = new DS_Applicazione();
+ global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
+ any1.Namespace = "http://www.w3.org/2001/XMLSchema";
+ any1.MinOccurs = new decimal(0);
+ any1.MaxOccurs = decimal.MaxValue;
+ any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any1);
+ global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
+ any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
+ any2.MinOccurs = new decimal(1);
+ any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any2);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute1.Name = "namespace";
+ attribute1.FixedValue = ds.Namespace;
+ type.Attributes.Add(attribute1);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute2.Name = "tableTypeName";
+ attribute2.FixedValue = "VisCardioPolDataTable";
+ type.Attributes.Add(attribute2);
+ type.Particle = sequence;
+ global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
+ if (xs.Contains(dsSchema.TargetNamespace)) {
+ global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
+ global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
+ try {
+ global::System.Xml.Schema.XmlSchema schema = null;
+ dsSchema.Write(s1);
+ for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
+ schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
+ s2.SetLength(0);
+ schema.Write(s2);
+ if ((s1.Length == s2.Length)) {
+ s1.Position = 0;
+ s2.Position = 0;
+ for (; ((s1.Position != s1.Length)
+ && (s1.ReadByte() == s2.ReadByte())); ) {
+ ;
+ }
+ if ((s1.Position == s1.Length)) {
+ return type;
+ }
+ }
+ }
+ }
+ finally {
+ if ((s1 != null)) {
+ s1.Close();
+ }
+ if ((s2 != null)) {
+ s2.Close();
+ }
+ }
+ }
+ xs.Add(dsSchema);
+ return type;
+ }
+ }
+
+ ///
+ ///Represents the strongly named DataTable class.
+ ///
+ [global::System.Serializable()]
+ [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
+ public partial class VisPsicoDataTable : global::System.Data.TypedTableBase {
+
+ private global::System.Data.DataColumn columnIdxPaziente;
+
+ private global::System.Data.DataColumn columnDataVisita;
+
+ private global::System.Data.DataColumn columnTest15ParReyImm;
+
+ private global::System.Data.DataColumn columnTest15ParReyDif;
+
+ private global::System.Data.DataColumn columnFigComplRey_Copia;
+
+ private global::System.Data.DataColumn columnFigComplRey_RipDiff;
+
+ private global::System.Data.DataColumn columnStroopTestInterfErr;
+
+ private global::System.Data.DataColumn columnStroopTestInterfTemp;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisPsicoDataTable() {
+ this.TableName = "VisPsico";
+ this.BeginInit();
+ this.InitClass();
+ this.EndInit();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal VisPsicoDataTable(global::System.Data.DataTable table) {
+ this.TableName = table.TableName;
+ if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
+ this.CaseSensitive = table.CaseSensitive;
+ }
+ if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
+ this.Locale = table.Locale;
+ }
+ if ((table.Namespace != table.DataSet.Namespace)) {
+ this.Namespace = table.Namespace;
+ }
+ this.Prefix = table.Prefix;
+ this.MinimumCapacity = table.MinimumCapacity;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected VisPsicoDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
+ base(info, context) {
+ this.InitVars();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IdxPazienteColumn {
+ get {
+ return this.columnIdxPaziente;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DataVisitaColumn {
+ get {
+ return this.columnDataVisita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Test15ParReyImmColumn {
+ get {
+ return this.columnTest15ParReyImm;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Test15ParReyDifColumn {
+ get {
+ return this.columnTest15ParReyDif;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FigComplRey_CopiaColumn {
+ get {
+ return this.columnFigComplRey_Copia;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FigComplRey_RipDiffColumn {
+ get {
+ return this.columnFigComplRey_RipDiff;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn StroopTestInterfErrColumn {
+ get {
+ return this.columnStroopTestInterfErr;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn StroopTestInterfTempColumn {
+ get {
+ return this.columnStroopTestInterfTemp;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ public int Count {
+ get {
+ return this.Rows.Count;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisPsicoRow this[int index] {
+ get {
+ return ((VisPsicoRow)(this.Rows[index]));
+ }
+ }
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisPsicoRowChangeEventHandler VisPsicoRowChanging;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisPsicoRowChangeEventHandler VisPsicoRowChanged;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisPsicoRowChangeEventHandler VisPsicoRowDeleting;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisPsicoRowChangeEventHandler VisPsicoRowDeleted;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void AddVisPsicoRow(VisPsicoRow row) {
+ this.Rows.Add(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisPsicoRow AddVisPsicoRow(AnagPazientiRow parentAnagPazientiRowByFK_VisPsico_AnagPazienti, System.DateTime DataVisita, int Test15ParReyImm, int Test15ParReyDif, int FigComplRey_Copia, int FigComplRey_RipDiff, int StroopTestInterfErr, int StroopTestInterfTemp) {
+ VisPsicoRow rowVisPsicoRow = ((VisPsicoRow)(this.NewRow()));
+ object[] columnValuesArray = new object[] {
+ null,
+ DataVisita,
+ Test15ParReyImm,
+ Test15ParReyDif,
+ FigComplRey_Copia,
+ FigComplRey_RipDiff,
+ StroopTestInterfErr,
+ StroopTestInterfTemp};
+ if ((parentAnagPazientiRowByFK_VisPsico_AnagPazienti != null)) {
+ columnValuesArray[0] = parentAnagPazientiRowByFK_VisPsico_AnagPazienti[0];
+ }
+ rowVisPsicoRow.ItemArray = columnValuesArray;
+ this.Rows.Add(rowVisPsicoRow);
+ return rowVisPsicoRow;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisPsicoRow FindByIdxPazienteDataVisita(int IdxPaziente, System.DateTime DataVisita) {
+ return ((VisPsicoRow)(this.Rows.Find(new object[] {
+ IdxPaziente,
+ DataVisita})));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public override global::System.Data.DataTable Clone() {
+ VisPsicoDataTable cln = ((VisPsicoDataTable)(base.Clone()));
+ cln.InitVars();
+ return cln;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataTable CreateInstance() {
+ return new VisPsicoDataTable();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal void InitVars() {
+ this.columnIdxPaziente = base.Columns["IdxPaziente"];
+ this.columnDataVisita = base.Columns["DataVisita"];
+ this.columnTest15ParReyImm = base.Columns["Test15ParReyImm"];
+ this.columnTest15ParReyDif = base.Columns["Test15ParReyDif"];
+ this.columnFigComplRey_Copia = base.Columns["FigComplRey_Copia"];
+ this.columnFigComplRey_RipDiff = base.Columns["FigComplRey_RipDiff"];
+ this.columnStroopTestInterfErr = base.Columns["StroopTestInterfErr"];
+ this.columnStroopTestInterfTemp = base.Columns["StroopTestInterfTemp"];
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitClass() {
+ this.columnIdxPaziente = new global::System.Data.DataColumn("IdxPaziente", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIdxPaziente);
+ this.columnDataVisita = new global::System.Data.DataColumn("DataVisita", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDataVisita);
+ this.columnTest15ParReyImm = new global::System.Data.DataColumn("Test15ParReyImm", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTest15ParReyImm);
+ this.columnTest15ParReyDif = new global::System.Data.DataColumn("Test15ParReyDif", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTest15ParReyDif);
+ this.columnFigComplRey_Copia = new global::System.Data.DataColumn("FigComplRey_Copia", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFigComplRey_Copia);
+ this.columnFigComplRey_RipDiff = new global::System.Data.DataColumn("FigComplRey_RipDiff", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFigComplRey_RipDiff);
+ this.columnStroopTestInterfErr = new global::System.Data.DataColumn("StroopTestInterfErr", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnStroopTestInterfErr);
+ this.columnStroopTestInterfTemp = new global::System.Data.DataColumn("StroopTestInterfTemp", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnStroopTestInterfTemp);
+ this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
+ this.columnIdxPaziente,
+ this.columnDataVisita}, true));
+ this.columnIdxPaziente.AllowDBNull = false;
+ this.columnDataVisita.AllowDBNull = false;
+ this.columnTest15ParReyImm.AllowDBNull = false;
+ this.columnTest15ParReyDif.AllowDBNull = false;
+ this.columnFigComplRey_Copia.AllowDBNull = false;
+ this.columnFigComplRey_RipDiff.AllowDBNull = false;
+ this.columnStroopTestInterfErr.AllowDBNull = false;
+ this.columnStroopTestInterfTemp.AllowDBNull = false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisPsicoRow NewVisPsicoRow() {
+ return ((VisPsicoRow)(this.NewRow()));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
+ return new VisPsicoRow(builder);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Type GetRowType() {
+ return typeof(VisPsicoRow);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanged(e);
+ if ((this.VisPsicoRowChanged != null)) {
+ this.VisPsicoRowChanged(this, new VisPsicoRowChangeEvent(((VisPsicoRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanging(e);
+ if ((this.VisPsicoRowChanging != null)) {
+ this.VisPsicoRowChanging(this, new VisPsicoRowChangeEvent(((VisPsicoRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleted(e);
+ if ((this.VisPsicoRowDeleted != null)) {
+ this.VisPsicoRowDeleted(this, new VisPsicoRowChangeEvent(((VisPsicoRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleting(e);
+ if ((this.VisPsicoRowDeleting != null)) {
+ this.VisPsicoRowDeleting(this, new VisPsicoRowChangeEvent(((VisPsicoRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void RemoveVisPsicoRow(VisPsicoRow row) {
+ this.Rows.Remove(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
+ global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
+ global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
+ DS_Applicazione ds = new DS_Applicazione();
+ global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
+ any1.Namespace = "http://www.w3.org/2001/XMLSchema";
+ any1.MinOccurs = new decimal(0);
+ any1.MaxOccurs = decimal.MaxValue;
+ any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any1);
+ global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
+ any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
+ any2.MinOccurs = new decimal(1);
+ any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any2);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute1.Name = "namespace";
+ attribute1.FixedValue = ds.Namespace;
+ type.Attributes.Add(attribute1);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute2.Name = "tableTypeName";
+ attribute2.FixedValue = "VisPsicoDataTable";
+ type.Attributes.Add(attribute2);
+ type.Particle = sequence;
+ global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
+ if (xs.Contains(dsSchema.TargetNamespace)) {
+ global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
+ global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
+ try {
+ global::System.Xml.Schema.XmlSchema schema = null;
+ dsSchema.Write(s1);
+ for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
+ schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
+ s2.SetLength(0);
+ schema.Write(s2);
+ if ((s1.Length == s2.Length)) {
+ s1.Position = 0;
+ s2.Position = 0;
+ for (; ((s1.Position != s1.Length)
+ && (s1.ReadByte() == s2.ReadByte())); ) {
+ ;
+ }
+ if ((s1.Position == s1.Length)) {
+ return type;
+ }
+ }
+ }
+ }
+ finally {
+ if ((s1 != null)) {
+ s1.Close();
+ }
+ if ((s2 != null)) {
+ s2.Close();
+ }
+ }
+ }
+ xs.Add(dsSchema);
+ return type;
+ }
+ }
+
+ ///
+ ///Represents the strongly named DataTable class.
+ ///
+ [global::System.Serializable()]
+ [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
+ public partial class VisStileVitaDataTable : global::System.Data.TypedTableBase {
+
+ private global::System.Data.DataColumn columnIdxPaziente;
+
+ private global::System.Data.DataColumn columnDataVisita;
+
+ private global::System.Data.DataColumn columnEta;
+
+ private global::System.Data.DataColumn columnSesso;
+
+ private global::System.Data.DataColumn columnLavoro;
+
+ private global::System.Data.DataColumn columnStileVita;
+
+ private global::System.Data.DataColumn columnFreqAll;
+
+ private global::System.Data.DataColumn columnMezzoTrasp;
+
+ private global::System.Data.DataColumn columnScoreAttiv;
+
+ private global::System.Data.DataColumn columnMET_Lavoro;
+
+ private global::System.Data.DataColumn columnMET_AttFisica;
+
+ private global::System.Data.DataColumn columnOreSonno;
+
+ private global::System.Data.DataColumn columnOreSeduto;
+
+ private global::System.Data.DataColumn columnOrePasti;
+
+ private global::System.Data.DataColumn columnOreSpostAuto;
+
+ private global::System.Data.DataColumn columnOreSpostAtt;
+
+ private global::System.Data.DataColumn columnOreLavoro;
+
+ private global::System.Data.DataColumn columnOreIgiene;
+
+ private global::System.Data.DataColumn columnOreAttFisica;
+
+ private global::System.Data.DataColumn columnOrePulizia;
+
+ private global::System.Data.DataColumn columnOreCane;
+
+ private global::System.Data.DataColumn columnConsCalDie;
+
+ private global::System.Data.DataColumn columnVerdure;
+
+ private global::System.Data.DataColumn columnLegumi;
+
+ private global::System.Data.DataColumn columnFrutta;
+
+ private global::System.Data.DataColumn columnNoci;
+
+ private global::System.Data.DataColumn columnCereali;
+
+ private global::System.Data.DataColumn columnPesce;
+
+ private global::System.Data.DataColumn columnGrassi;
+
+ private global::System.Data.DataColumn columnVino;
+
+ private global::System.Data.DataColumn columnCarneLatt;
+
+ private global::System.Data.DataColumn columnScoreDietMed;
+
+ private global::System.Data.DataColumn columnNote;
+
+ private global::System.Data.DataColumn columnPeso;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisStileVitaDataTable() {
+ this.TableName = "VisStileVita";
+ this.BeginInit();
+ this.InitClass();
+ this.EndInit();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal VisStileVitaDataTable(global::System.Data.DataTable table) {
+ this.TableName = table.TableName;
+ if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
+ this.CaseSensitive = table.CaseSensitive;
+ }
+ if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
+ this.Locale = table.Locale;
+ }
+ if ((table.Namespace != table.DataSet.Namespace)) {
+ this.Namespace = table.Namespace;
+ }
+ this.Prefix = table.Prefix;
+ this.MinimumCapacity = table.MinimumCapacity;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected VisStileVitaDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
+ base(info, context) {
+ this.InitVars();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IdxPazienteColumn {
+ get {
+ return this.columnIdxPaziente;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DataVisitaColumn {
+ get {
+ return this.columnDataVisita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn EtaColumn {
+ get {
+ return this.columnEta;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn SessoColumn {
+ get {
+ return this.columnSesso;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn LavoroColumn {
+ get {
+ return this.columnLavoro;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn StileVitaColumn {
+ get {
+ return this.columnStileVita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FreqAllColumn {
+ get {
+ return this.columnFreqAll;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MezzoTraspColumn {
+ get {
+ return this.columnMezzoTrasp;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn ScoreAttivColumn {
+ get {
+ return this.columnScoreAttiv;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MET_LavoroColumn {
+ get {
+ return this.columnMET_Lavoro;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MET_AttFisicaColumn {
+ get {
+ return this.columnMET_AttFisica;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreSonnoColumn {
+ get {
+ return this.columnOreSonno;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreSedutoColumn {
+ get {
+ return this.columnOreSeduto;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OrePastiColumn {
+ get {
+ return this.columnOrePasti;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreSpostAutoColumn {
+ get {
+ return this.columnOreSpostAuto;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreSpostAttColumn {
+ get {
+ return this.columnOreSpostAtt;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreLavoroColumn {
+ get {
+ return this.columnOreLavoro;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreIgieneColumn {
+ get {
+ return this.columnOreIgiene;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreAttFisicaColumn {
+ get {
+ return this.columnOreAttFisica;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OrePuliziaColumn {
+ get {
+ return this.columnOrePulizia;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreCaneColumn {
+ get {
+ return this.columnOreCane;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn ConsCalDieColumn {
+ get {
+ return this.columnConsCalDie;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VerdureColumn {
+ get {
+ return this.columnVerdure;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn LegumiColumn {
+ get {
+ return this.columnLegumi;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FruttaColumn {
+ get {
+ return this.columnFrutta;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn NociColumn {
+ get {
+ return this.columnNoci;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CerealiColumn {
+ get {
+ return this.columnCereali;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PesceColumn {
+ get {
+ return this.columnPesce;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GrassiColumn {
+ get {
+ return this.columnGrassi;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VinoColumn {
+ get {
+ return this.columnVino;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CarneLattColumn {
+ get {
+ return this.columnCarneLatt;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn ScoreDietMedColumn {
+ get {
+ return this.columnScoreDietMed;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn NoteColumn {
+ get {
+ return this.columnNote;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PesoColumn {
+ get {
+ return this.columnPeso;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ public int Count {
+ get {
+ return this.Rows.Count;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisStileVitaRow this[int index] {
+ get {
+ return ((VisStileVitaRow)(this.Rows[index]));
+ }
+ }
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisStileVitaRowChangeEventHandler VisStileVitaRowChanging;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisStileVitaRowChangeEventHandler VisStileVitaRowChanged;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisStileVitaRowChangeEventHandler VisStileVitaRowDeleting;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisStileVitaRowChangeEventHandler VisStileVitaRowDeleted;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void AddVisStileVitaRow(VisStileVitaRow row) {
+ this.Rows.Add(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisStileVitaRow AddVisStileVitaRow(
+ AnagPazientiRow parentAnagPazientiRowByFK_VisStileVita_AnagPazienti,
+ System.DateTime DataVisita,
+ double Eta,
+ string Sesso,
+ int Lavoro,
+ int StileVita,
+ int FreqAll,
+ int MezzoTrasp,
+ int ScoreAttiv,
+ double MET_Lavoro,
+ double MET_AttFisica,
+ double OreSonno,
+ double OreSeduto,
+ double OrePasti,
+ double OreSpostAuto,
+ double OreSpostAtt,
+ double OreLavoro,
+ double OreIgiene,
+ double OreAttFisica,
+ double OrePulizia,
+ double OreCane,
+ double ConsCalDie,
+ int Verdure,
+ int Legumi,
+ int Frutta,
+ int Noci,
+ int Cereali,
+ int Pesce,
+ int Grassi,
+ int Vino,
+ int CarneLatt,
+ int ScoreDietMed,
+ string Note,
+ double Peso) {
+ VisStileVitaRow rowVisStileVitaRow = ((VisStileVitaRow)(this.NewRow()));
+ object[] columnValuesArray = new object[] {
+ null,
+ DataVisita,
+ Eta,
+ Sesso,
+ Lavoro,
+ StileVita,
+ FreqAll,
+ MezzoTrasp,
+ ScoreAttiv,
+ MET_Lavoro,
+ MET_AttFisica,
+ OreSonno,
+ OreSeduto,
+ OrePasti,
+ OreSpostAuto,
+ OreSpostAtt,
+ OreLavoro,
+ OreIgiene,
+ OreAttFisica,
+ OrePulizia,
+ OreCane,
+ ConsCalDie,
+ Verdure,
+ Legumi,
+ Frutta,
+ Noci,
+ Cereali,
+ Pesce,
+ Grassi,
+ Vino,
+ CarneLatt,
+ ScoreDietMed,
+ Note,
+ Peso};
+ if ((parentAnagPazientiRowByFK_VisStileVita_AnagPazienti != null)) {
+ columnValuesArray[0] = parentAnagPazientiRowByFK_VisStileVita_AnagPazienti[0];
+ }
+ rowVisStileVitaRow.ItemArray = columnValuesArray;
+ this.Rows.Add(rowVisStileVitaRow);
+ return rowVisStileVitaRow;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisStileVitaRow FindByIdxPazienteDataVisita(int IdxPaziente, System.DateTime DataVisita) {
+ return ((VisStileVitaRow)(this.Rows.Find(new object[] {
+ IdxPaziente,
+ DataVisita})));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public override global::System.Data.DataTable Clone() {
+ VisStileVitaDataTable cln = ((VisStileVitaDataTable)(base.Clone()));
+ cln.InitVars();
+ return cln;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataTable CreateInstance() {
+ return new VisStileVitaDataTable();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal void InitVars() {
+ this.columnIdxPaziente = base.Columns["IdxPaziente"];
+ this.columnDataVisita = base.Columns["DataVisita"];
+ this.columnEta = base.Columns["Eta"];
+ this.columnSesso = base.Columns["Sesso"];
+ this.columnLavoro = base.Columns["Lavoro"];
+ this.columnStileVita = base.Columns["StileVita"];
+ this.columnFreqAll = base.Columns["FreqAll"];
+ this.columnMezzoTrasp = base.Columns["MezzoTrasp"];
+ this.columnScoreAttiv = base.Columns["ScoreAttiv"];
+ this.columnMET_Lavoro = base.Columns["MET_Lavoro"];
+ this.columnMET_AttFisica = base.Columns["MET_AttFisica"];
+ this.columnOreSonno = base.Columns["OreSonno"];
+ this.columnOreSeduto = base.Columns["OreSeduto"];
+ this.columnOrePasti = base.Columns["OrePasti"];
+ this.columnOreSpostAuto = base.Columns["OreSpostAuto"];
+ this.columnOreSpostAtt = base.Columns["OreSpostAtt"];
+ this.columnOreLavoro = base.Columns["OreLavoro"];
+ this.columnOreIgiene = base.Columns["OreIgiene"];
+ this.columnOreAttFisica = base.Columns["OreAttFisica"];
+ this.columnOrePulizia = base.Columns["OrePulizia"];
+ this.columnOreCane = base.Columns["OreCane"];
+ this.columnConsCalDie = base.Columns["ConsCalDie"];
+ this.columnVerdure = base.Columns["Verdure"];
+ this.columnLegumi = base.Columns["Legumi"];
+ this.columnFrutta = base.Columns["Frutta"];
+ this.columnNoci = base.Columns["Noci"];
+ this.columnCereali = base.Columns["Cereali"];
+ this.columnPesce = base.Columns["Pesce"];
+ this.columnGrassi = base.Columns["Grassi"];
+ this.columnVino = base.Columns["Vino"];
+ this.columnCarneLatt = base.Columns["CarneLatt"];
+ this.columnScoreDietMed = base.Columns["ScoreDietMed"];
+ this.columnNote = base.Columns["Note"];
+ this.columnPeso = base.Columns["Peso"];
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitClass() {
+ this.columnIdxPaziente = new global::System.Data.DataColumn("IdxPaziente", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIdxPaziente);
+ this.columnDataVisita = new global::System.Data.DataColumn("DataVisita", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDataVisita);
+ this.columnEta = new global::System.Data.DataColumn("Eta", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnEta);
+ this.columnSesso = new global::System.Data.DataColumn("Sesso", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnSesso);
+ this.columnLavoro = new global::System.Data.DataColumn("Lavoro", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnLavoro);
+ this.columnStileVita = new global::System.Data.DataColumn("StileVita", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnStileVita);
+ this.columnFreqAll = new global::System.Data.DataColumn("FreqAll", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFreqAll);
+ this.columnMezzoTrasp = new global::System.Data.DataColumn("MezzoTrasp", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMezzoTrasp);
+ this.columnScoreAttiv = new global::System.Data.DataColumn("ScoreAttiv", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnScoreAttiv);
+ this.columnMET_Lavoro = new global::System.Data.DataColumn("MET_Lavoro", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMET_Lavoro);
+ this.columnMET_AttFisica = new global::System.Data.DataColumn("MET_AttFisica", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMET_AttFisica);
+ this.columnOreSonno = new global::System.Data.DataColumn("OreSonno", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreSonno);
+ this.columnOreSeduto = new global::System.Data.DataColumn("OreSeduto", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreSeduto);
+ this.columnOrePasti = new global::System.Data.DataColumn("OrePasti", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOrePasti);
+ this.columnOreSpostAuto = new global::System.Data.DataColumn("OreSpostAuto", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreSpostAuto);
+ this.columnOreSpostAtt = new global::System.Data.DataColumn("OreSpostAtt", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreSpostAtt);
+ this.columnOreLavoro = new global::System.Data.DataColumn("OreLavoro", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreLavoro);
+ this.columnOreIgiene = new global::System.Data.DataColumn("OreIgiene", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreIgiene);
+ this.columnOreAttFisica = new global::System.Data.DataColumn("OreAttFisica", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreAttFisica);
+ this.columnOrePulizia = new global::System.Data.DataColumn("OrePulizia", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOrePulizia);
+ this.columnOreCane = new global::System.Data.DataColumn("OreCane", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreCane);
+ this.columnConsCalDie = new global::System.Data.DataColumn("ConsCalDie", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnConsCalDie);
+ this.columnVerdure = new global::System.Data.DataColumn("Verdure", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVerdure);
+ this.columnLegumi = new global::System.Data.DataColumn("Legumi", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnLegumi);
+ this.columnFrutta = new global::System.Data.DataColumn("Frutta", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFrutta);
+ this.columnNoci = new global::System.Data.DataColumn("Noci", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNoci);
+ this.columnCereali = new global::System.Data.DataColumn("Cereali", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCereali);
+ this.columnPesce = new global::System.Data.DataColumn("Pesce", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPesce);
+ this.columnGrassi = new global::System.Data.DataColumn("Grassi", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGrassi);
+ this.columnVino = new global::System.Data.DataColumn("Vino", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVino);
+ this.columnCarneLatt = new global::System.Data.DataColumn("CarneLatt", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCarneLatt);
+ this.columnScoreDietMed = new global::System.Data.DataColumn("ScoreDietMed", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnScoreDietMed);
+ this.columnNote = new global::System.Data.DataColumn("Note", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNote);
+ this.columnPeso = new global::System.Data.DataColumn("Peso", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPeso);
+ this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
+ this.columnIdxPaziente,
+ this.columnDataVisita}, true));
+ this.columnIdxPaziente.AllowDBNull = false;
+ this.columnDataVisita.AllowDBNull = false;
+ this.columnEta.ReadOnly = true;
+ this.columnSesso.AllowDBNull = false;
+ this.columnSesso.MaxLength = 1;
+ this.columnLavoro.AllowDBNull = false;
+ this.columnStileVita.AllowDBNull = false;
+ this.columnFreqAll.AllowDBNull = false;
+ this.columnMezzoTrasp.AllowDBNull = false;
+ this.columnMET_Lavoro.AllowDBNull = false;
+ this.columnMET_AttFisica.AllowDBNull = false;
+ this.columnOreSonno.ReadOnly = true;
+ this.columnOreSeduto.AllowDBNull = false;
+ this.columnOrePasti.AllowDBNull = false;
+ this.columnOreSpostAuto.AllowDBNull = false;
+ this.columnOreSpostAtt.AllowDBNull = false;
+ this.columnOreLavoro.AllowDBNull = false;
+ this.columnOreIgiene.AllowDBNull = false;
+ this.columnOreAttFisica.AllowDBNull = false;
+ this.columnOrePulizia.AllowDBNull = false;
+ this.columnOreCane.AllowDBNull = false;
+ this.columnConsCalDie.ReadOnly = true;
+ this.columnVerdure.AllowDBNull = false;
+ this.columnLegumi.AllowDBNull = false;
+ this.columnFrutta.AllowDBNull = false;
+ this.columnNoci.AllowDBNull = false;
+ this.columnCereali.AllowDBNull = false;
+ this.columnPesce.AllowDBNull = false;
+ this.columnGrassi.AllowDBNull = false;
+ this.columnVino.AllowDBNull = false;
+ this.columnCarneLatt.AllowDBNull = false;
+ this.columnScoreDietMed.ReadOnly = true;
+ this.columnNote.AllowDBNull = false;
+ this.columnNote.MaxLength = 250;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisStileVitaRow NewVisStileVitaRow() {
+ return ((VisStileVitaRow)(this.NewRow()));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
+ return new VisStileVitaRow(builder);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Type GetRowType() {
+ return typeof(VisStileVitaRow);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanged(e);
+ if ((this.VisStileVitaRowChanged != null)) {
+ this.VisStileVitaRowChanged(this, new VisStileVitaRowChangeEvent(((VisStileVitaRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanging(e);
+ if ((this.VisStileVitaRowChanging != null)) {
+ this.VisStileVitaRowChanging(this, new VisStileVitaRowChangeEvent(((VisStileVitaRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleted(e);
+ if ((this.VisStileVitaRowDeleted != null)) {
+ this.VisStileVitaRowDeleted(this, new VisStileVitaRowChangeEvent(((VisStileVitaRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleting(e);
+ if ((this.VisStileVitaRowDeleting != null)) {
+ this.VisStileVitaRowDeleting(this, new VisStileVitaRowChangeEvent(((VisStileVitaRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void RemoveVisStileVitaRow(VisStileVitaRow row) {
+ this.Rows.Remove(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
+ global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
+ global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
+ DS_Applicazione ds = new DS_Applicazione();
+ global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
+ any1.Namespace = "http://www.w3.org/2001/XMLSchema";
+ any1.MinOccurs = new decimal(0);
+ any1.MaxOccurs = decimal.MaxValue;
+ any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any1);
+ global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
+ any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
+ any2.MinOccurs = new decimal(1);
+ any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any2);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute1.Name = "namespace";
+ attribute1.FixedValue = ds.Namespace;
+ type.Attributes.Add(attribute1);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute2.Name = "tableTypeName";
+ attribute2.FixedValue = "VisStileVitaDataTable";
+ type.Attributes.Add(attribute2);
+ type.Particle = sequence;
+ global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
+ if (xs.Contains(dsSchema.TargetNamespace)) {
+ global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
+ global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
+ try {
+ global::System.Xml.Schema.XmlSchema schema = null;
+ dsSchema.Write(s1);
+ for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
+ schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
+ s2.SetLength(0);
+ schema.Write(s2);
+ if ((s1.Length == s2.Length)) {
+ s1.Position = 0;
+ s2.Position = 0;
+ for (; ((s1.Position != s1.Length)
+ && (s1.ReadByte() == s2.ReadByte())); ) {
+ ;
+ }
+ if ((s1.Position == s1.Length)) {
+ return type;
+ }
+ }
+ }
+ }
+ finally {
+ if ((s1 != null)) {
+ s1.Close();
+ }
+ if ((s2 != null)) {
+ s2.Close();
+ }
+ }
+ }
+ xs.Add(dsSchema);
+ return type;
+ }
+ }
+
+ ///
+ ///Represents the strongly named DataTable class.
+ ///
+ [global::System.Serializable()]
+ [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
+ public partial class VisRelazFinDataTable : global::System.Data.TypedTableBase {
+
+ private global::System.Data.DataColumn columnIdxPaziente;
+
+ private global::System.Data.DataColumn columnDataVisita;
+
+ private global::System.Data.DataColumn columnNote;
+
+ private global::System.Data.DataColumn columnScore1;
+
+ private global::System.Data.DataColumn columnScore2;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisRelazFinDataTable() {
+ this.TableName = "VisRelazFin";
+ this.BeginInit();
+ this.InitClass();
+ this.EndInit();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal VisRelazFinDataTable(global::System.Data.DataTable table) {
+ this.TableName = table.TableName;
+ if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
+ this.CaseSensitive = table.CaseSensitive;
+ }
+ if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
+ this.Locale = table.Locale;
+ }
+ if ((table.Namespace != table.DataSet.Namespace)) {
+ this.Namespace = table.Namespace;
+ }
+ this.Prefix = table.Prefix;
+ this.MinimumCapacity = table.MinimumCapacity;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected VisRelazFinDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
+ base(info, context) {
+ this.InitVars();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IdxPazienteColumn {
+ get {
+ return this.columnIdxPaziente;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DataVisitaColumn {
+ get {
+ return this.columnDataVisita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn NoteColumn {
+ get {
+ return this.columnNote;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Score1Column {
+ get {
+ return this.columnScore1;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Score2Column {
+ get {
+ return this.columnScore2;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ public int Count {
+ get {
+ return this.Rows.Count;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisRelazFinRow this[int index] {
+ get {
+ return ((VisRelazFinRow)(this.Rows[index]));
+ }
+ }
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisRelazFinRowChangeEventHandler VisRelazFinRowChanging;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisRelazFinRowChangeEventHandler VisRelazFinRowChanged;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisRelazFinRowChangeEventHandler VisRelazFinRowDeleting;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisRelazFinRowChangeEventHandler VisRelazFinRowDeleted;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void AddVisRelazFinRow(VisRelazFinRow row) {
+ this.Rows.Add(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisRelazFinRow AddVisRelazFinRow(AnagPazientiRow parentAnagPazientiRowByFK_VisRelazFin_AnagPazienti, System.DateTime DataVisita, string Note, double Score1, double Score2) {
+ VisRelazFinRow rowVisRelazFinRow = ((VisRelazFinRow)(this.NewRow()));
+ object[] columnValuesArray = new object[] {
+ null,
+ DataVisita,
+ Note,
+ Score1,
+ Score2};
+ if ((parentAnagPazientiRowByFK_VisRelazFin_AnagPazienti != null)) {
+ columnValuesArray[0] = parentAnagPazientiRowByFK_VisRelazFin_AnagPazienti[0];
+ }
+ rowVisRelazFinRow.ItemArray = columnValuesArray;
+ this.Rows.Add(rowVisRelazFinRow);
+ return rowVisRelazFinRow;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisRelazFinRow FindByIdxPazienteDataVisita(int IdxPaziente, System.DateTime DataVisita) {
+ return ((VisRelazFinRow)(this.Rows.Find(new object[] {
+ IdxPaziente,
+ DataVisita})));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public override global::System.Data.DataTable Clone() {
+ VisRelazFinDataTable cln = ((VisRelazFinDataTable)(base.Clone()));
+ cln.InitVars();
+ return cln;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataTable CreateInstance() {
+ return new VisRelazFinDataTable();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal void InitVars() {
+ this.columnIdxPaziente = base.Columns["IdxPaziente"];
+ this.columnDataVisita = base.Columns["DataVisita"];
+ this.columnNote = base.Columns["Note"];
+ this.columnScore1 = base.Columns["Score1"];
+ this.columnScore2 = base.Columns["Score2"];
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitClass() {
+ this.columnIdxPaziente = new global::System.Data.DataColumn("IdxPaziente", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIdxPaziente);
+ this.columnDataVisita = new global::System.Data.DataColumn("DataVisita", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDataVisita);
+ this.columnNote = new global::System.Data.DataColumn("Note", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNote);
+ this.columnScore1 = new global::System.Data.DataColumn("Score1", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnScore1);
+ this.columnScore2 = new global::System.Data.DataColumn("Score2", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnScore2);
+ this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
+ this.columnIdxPaziente,
+ this.columnDataVisita}, true));
+ this.columnIdxPaziente.AllowDBNull = false;
+ this.columnDataVisita.AllowDBNull = false;
+ this.columnNote.AllowDBNull = false;
+ this.columnNote.MaxLength = 4000;
+ this.columnScore1.AllowDBNull = false;
+ this.columnScore2.AllowDBNull = false;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisRelazFinRow NewVisRelazFinRow() {
+ return ((VisRelazFinRow)(this.NewRow()));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
+ return new VisRelazFinRow(builder);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Type GetRowType() {
+ return typeof(VisRelazFinRow);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanged(e);
+ if ((this.VisRelazFinRowChanged != null)) {
+ this.VisRelazFinRowChanged(this, new VisRelazFinRowChangeEvent(((VisRelazFinRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanging(e);
+ if ((this.VisRelazFinRowChanging != null)) {
+ this.VisRelazFinRowChanging(this, new VisRelazFinRowChangeEvent(((VisRelazFinRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleted(e);
+ if ((this.VisRelazFinRowDeleted != null)) {
+ this.VisRelazFinRowDeleted(this, new VisRelazFinRowChangeEvent(((VisRelazFinRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleting(e);
+ if ((this.VisRelazFinRowDeleting != null)) {
+ this.VisRelazFinRowDeleting(this, new VisRelazFinRowChangeEvent(((VisRelazFinRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void RemoveVisRelazFinRow(VisRelazFinRow row) {
+ this.Rows.Remove(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
+ global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
+ global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
+ DS_Applicazione ds = new DS_Applicazione();
+ global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
+ any1.Namespace = "http://www.w3.org/2001/XMLSchema";
+ any1.MinOccurs = new decimal(0);
+ any1.MaxOccurs = decimal.MaxValue;
+ any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any1);
+ global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
+ any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
+ any2.MinOccurs = new decimal(1);
+ any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any2);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute1.Name = "namespace";
+ attribute1.FixedValue = ds.Namespace;
+ type.Attributes.Add(attribute1);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute2.Name = "tableTypeName";
+ attribute2.FixedValue = "VisRelazFinDataTable";
+ type.Attributes.Add(attribute2);
+ type.Particle = sequence;
+ global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
+ if (xs.Contains(dsSchema.TargetNamespace)) {
+ global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
+ global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
+ try {
+ global::System.Xml.Schema.XmlSchema schema = null;
+ dsSchema.Write(s1);
+ for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
+ schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
+ s2.SetLength(0);
+ schema.Write(s2);
+ if ((s1.Length == s2.Length)) {
+ s1.Position = 0;
+ s2.Position = 0;
+ for (; ((s1.Position != s1.Length)
+ && (s1.ReadByte() == s2.ReadByte())); ) {
+ ;
+ }
+ if ((s1.Position == s1.Length)) {
+ return type;
+ }
+ }
+ }
+ }
+ finally {
+ if ((s1 != null)) {
+ s1.Close();
+ }
+ if ((s2 != null)) {
+ s2.Close();
+ }
+ }
+ }
+ xs.Add(dsSchema);
+ return type;
+ }
+ }
+
+ ///
+ ///Represents the strongly named DataTable class.
+ ///
+ [global::System.Serializable()]
+ [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
+ public partial class stp_rep_DatiFullByPazienteDataDataTable : global::System.Data.TypedTableBase {
+
+ private global::System.Data.DataColumn columnIdxPaziente;
+
+ private global::System.Data.DataColumn columnDataVisita;
+
+ private global::System.Data.DataColumn columnGruppo;
+
+ private global::System.Data.DataColumn columnCognome;
+
+ private global::System.Data.DataColumn columnNome;
+
+ private global::System.Data.DataColumn columnDataNasc;
+
+ private global::System.Data.DataColumn columnLuogoNascita;
+
+ private global::System.Data.DataColumn columnSesso;
+
+ private global::System.Data.DataColumn columnCodF;
+
+ private global::System.Data.DataColumn columnIndirizzo;
+
+ private global::System.Data.DataColumn columnEta;
+
+ private global::System.Data.DataColumn columnRecTel;
+
+ private global::System.Data.DataColumn columnMedico;
+
+ private global::System.Data.DataColumn columnNotePaziente;
+
+ private global::System.Data.DataColumn columnGlicemia;
+
+ private global::System.Data.DataColumn columnEmoglGlicata;
+
+ private global::System.Data.DataColumn columnColesTot;
+
+ private global::System.Data.DataColumn columnLDL;
+
+ private global::System.Data.DataColumn columnHDL;
+
+ private global::System.Data.DataColumn columnTrigliceridi;
+
+ private global::System.Data.DataColumn columnColRapLDLHDL;
+
+ private global::System.Data.DataColumn columnOmocisteina;
+
+ private global::System.Data.DataColumn columnMHTFR;
+
+ private global::System.Data.DataColumn columnFattII;
+
+ private global::System.Data.DataColumn columnFattV;
+
+ private global::System.Data.DataColumn columnGradTransm;
+
+ private global::System.Data.DataColumn columnLungTelom;
+
+ private global::System.Data.DataColumn columnRespSilenz;
+
+ private global::System.Data.DataColumn columnAltezza;
+
+ private global::System.Data.DataColumn columnPeso;
+
+ private global::System.Data.DataColumn columnPlicaBicipite;
+
+ private global::System.Data.DataColumn columnPlicaTricipite;
+
+ private global::System.Data.DataColumn columnPlicaSottoscapola;
+
+ private global::System.Data.DataColumn columnPlicaPettorale;
+
+ private global::System.Data.DataColumn columnPlicaAddominale;
+
+ private global::System.Data.DataColumn columnPlicaSoprailiaca;
+
+ private global::System.Data.DataColumn columnPlicaCoscia;
+
+ private global::System.Data.DataColumn columnCirconfVitaGlutei;
+
+ private global::System.Data.DataColumn columnCirconfAvamb;
+
+ private global::System.Data.DataColumn columnGrassoTroncoPerc;
+
+ private global::System.Data.DataColumn columnGrassoViscInd;
+
+ private global::System.Data.DataColumn columnTRomberg;
+
+ private global::System.Data.DataColumn columnTFukuda;
+
+ private global::System.Data.DataColumn columnTGUG;
+
+ private global::System.Data.DataColumn columnTGUG1;
+
+ private global::System.Data.DataColumn columnFPrensile;
+
+ private global::System.Data.DataColumn columnDensCorp;
+
+ private global::System.Data.DataColumn columnGrassoTotPerc;
+
+ private global::System.Data.DataColumn columnGrassoTot;
+
+ private global::System.Data.DataColumn columnMassaMagraPerc;
+
+ private global::System.Data.DataColumn columnMassaMagraKgCm;
+
+ private global::System.Data.DataColumn columnBMI;
+
+ private global::System.Data.DataColumn columnMetBasaleDie;
+
+ private global::System.Data.DataColumn columnMetBasaleH;
+
+ private global::System.Data.DataColumn columnLavoro;
+
+ private global::System.Data.DataColumn columnStileVita;
+
+ private global::System.Data.DataColumn columnFreqAll;
+
+ private global::System.Data.DataColumn columnMezzoTrasp;
+
+ private global::System.Data.DataColumn columnScoreAttiv;
+
+ private global::System.Data.DataColumn columnMET_Lavoro;
+
+ private global::System.Data.DataColumn columnMET_AttFisica;
+
+ private global::System.Data.DataColumn columnOreSonno;
+
+ private global::System.Data.DataColumn columnOreSeduto;
+
+ private global::System.Data.DataColumn columnOrePasti;
+
+ private global::System.Data.DataColumn columnOreSpostAuto;
+
+ private global::System.Data.DataColumn columnOreSpostAtt;
+
+ private global::System.Data.DataColumn columnOreLavoro;
+
+ private global::System.Data.DataColumn columnOreIgiene;
+
+ private global::System.Data.DataColumn columnOreAttFisica;
+
+ private global::System.Data.DataColumn columnOrePulizia;
+
+ private global::System.Data.DataColumn columnOreCane;
+
+ private global::System.Data.DataColumn columnConsCalDie;
+
+ private global::System.Data.DataColumn columnVerdure;
+
+ private global::System.Data.DataColumn columnLegumi;
+
+ private global::System.Data.DataColumn columnFrutta;
+
+ private global::System.Data.DataColumn columnNoci;
+
+ private global::System.Data.DataColumn columnCereali;
+
+ private global::System.Data.DataColumn columnPesce;
+
+ private global::System.Data.DataColumn columnGrassi;
+
+ private global::System.Data.DataColumn columnVino;
+
+ private global::System.Data.DataColumn columnCarneLatt;
+
+ private global::System.Data.DataColumn columnScoreDietMed;
+
+ private global::System.Data.DataColumn columnNoteStileVita;
+
+ private global::System.Data.DataColumn columnLavoro_label;
+
+ private global::System.Data.DataColumn columnStileVita_label;
+
+ private global::System.Data.DataColumn columnFreqAll_label;
+
+ private global::System.Data.DataColumn columnMezzoTrasp_label;
+
+ private global::System.Data.DataColumn columnVerdure_label;
+
+ private global::System.Data.DataColumn columnLegumi_label;
+
+ private global::System.Data.DataColumn columnFrutta_label;
+
+ private global::System.Data.DataColumn columnNoci_label;
+
+ private global::System.Data.DataColumn columnCereali_label;
+
+ private global::System.Data.DataColumn columnPesce_label;
+
+ private global::System.Data.DataColumn columnGrassi_label;
+
+ private global::System.Data.DataColumn columnVino_label;
+
+ private global::System.Data.DataColumn columnCarneLatt_label;
+
+ private global::System.Data.DataColumn columnTestTMT_A;
+
+ private global::System.Data.DataColumn columnTestTMT_A_label;
+
+ private global::System.Data.DataColumn columnTestTMT_B;
+
+ private global::System.Data.DataColumn columnTestTMT_B_label;
+
+ private global::System.Data.DataColumn columnTestTMT_BA;
+
+ private global::System.Data.DataColumn columnTestTMT_BA_label;
+
+ private global::System.Data.DataColumn columnTest15ParReyImm;
+
+ private global::System.Data.DataColumn columnTest15ParReyImm_label;
+
+ private global::System.Data.DataColumn columnTest15ParReyDif;
+
+ private global::System.Data.DataColumn columnTest15ParReyDif_label;
+
+ private global::System.Data.DataColumn columnApprSuSpanViSpa;
+
+ private global::System.Data.DataColumn columnApprSuSpanViSpa_label;
+
+ private global::System.Data.DataColumn columnStroopTestInterfErr;
+
+ private global::System.Data.DataColumn columnStroopTestInterfErr_label;
+
+ private global::System.Data.DataColumn columnTestStimeCognErr;
+
+ private global::System.Data.DataColumn columnTestStimeCognErr_label;
+
+ private global::System.Data.DataColumn columnTestStimeCognBiz;
+
+ private global::System.Data.DataColumn columnTestStimeCognBiz_label;
+
+ private global::System.Data.DataColumn columnTorreLondra;
+
+ private global::System.Data.DataColumn columnTorreLondra_label;
+
+ private global::System.Data.DataColumn columnPaSis;
+
+ private global::System.Data.DataColumn columnPaDia;
+
+ private global::System.Data.DataColumn columnQR1;
+
+ private global::System.Data.DataColumn columnQR1_Kg;
+
+ private global::System.Data.DataColumn columnVO2;
+
+ private global::System.Data.DataColumn columnVO2_Kg;
+
+ private global::System.Data.DataColumn columnFC_QR1;
+
+ private global::System.Data.DataColumn columnPolsoO2;
+
+ private global::System.Data.DataColumn columnPaSisMax;
+
+ private global::System.Data.DataColumn columnPaDiaMax;
+
+ private global::System.Data.DataColumn columnFrazEiez;
+
+ private global::System.Data.DataColumn columnTDI;
+
+ private global::System.Data.DataColumn columnPlaccheVas;
+
+ private global::System.Data.DataColumn columnNoteCardio;
+
+ private global::System.Data.DataColumn columnPlaccheVas_Label;
+
+ private global::System.Data.DataColumn columnFamMCCV;
+
+ private global::System.Data.DataColumn columnFamMCCV_Label;
+
+ private global::System.Data.DataColumn columnIpertens;
+
+ private global::System.Data.DataColumn columnIpertens_Label;
+
+ private global::System.Data.DataColumn columnIpertensYtd;
+
+ private global::System.Data.DataColumn columnIpertensYtd_Label;
+
+ private global::System.Data.DataColumn columnDiabete;
+
+ private global::System.Data.DataColumn columnDiabete_Label;
+
+ private global::System.Data.DataColumn columnDiabeteYtd;
+
+ private global::System.Data.DataColumn columnDiabeteYtd_Label;
+
+ private global::System.Data.DataColumn columnIpercolest;
+
+ private global::System.Data.DataColumn columnIpercolest_Label;
+
+ private global::System.Data.DataColumn columnIpercolestYtd;
+
+ private global::System.Data.DataColumn columnIpercolestYtd_Label;
+
+ private global::System.Data.DataColumn columnFumo;
+
+ private global::System.Data.DataColumn columnFumo_Label;
+
+ private global::System.Data.DataColumn columnFumoYtd;
+
+ private global::System.Data.DataColumn columnFumoYtd_Label;
+
+ private global::System.Data.DataColumn columnAlcool;
+
+ private global::System.Data.DataColumn columnAlcool_Label;
+
+ private global::System.Data.DataColumn columnAlcoolYtd;
+
+ private global::System.Data.DataColumn columnAlcoolYtd_Label;
+
+ private global::System.Data.DataColumn columnSovrapp;
+
+ private global::System.Data.DataColumn columnSovrapp_Label;
+
+ private global::System.Data.DataColumn columnSovrappYtd;
+
+ private global::System.Data.DataColumn columnSovrappYtd_Label;
+
+ private global::System.Data.DataColumn columnSedent;
+
+ private global::System.Data.DataColumn columnSedent_Label;
+
+ private global::System.Data.DataColumn columnAdesTerap;
+
+ private global::System.Data.DataColumn columnAdesTerap_Label;
+
+ private global::System.Data.DataColumn columnNoteRelFin;
+
+ private global::System.Data.DataColumn columnScore1;
+
+ private global::System.Data.DataColumn columnScore2;
+
+ private global::System.Data.DataColumn columnMedicoRef;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public stp_rep_DatiFullByPazienteDataDataTable() {
+ this.TableName = "stp_rep_DatiFullByPazienteData";
+ this.BeginInit();
+ this.InitClass();
+ this.EndInit();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal stp_rep_DatiFullByPazienteDataDataTable(global::System.Data.DataTable table) {
+ this.TableName = table.TableName;
+ if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
+ this.CaseSensitive = table.CaseSensitive;
+ }
+ if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
+ this.Locale = table.Locale;
+ }
+ if ((table.Namespace != table.DataSet.Namespace)) {
+ this.Namespace = table.Namespace;
+ }
+ this.Prefix = table.Prefix;
+ this.MinimumCapacity = table.MinimumCapacity;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected stp_rep_DatiFullByPazienteDataDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
+ base(info, context) {
+ this.InitVars();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IdxPazienteColumn {
+ get {
+ return this.columnIdxPaziente;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DataVisitaColumn {
+ get {
+ return this.columnDataVisita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GruppoColumn {
+ get {
+ return this.columnGruppo;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CognomeColumn {
+ get {
+ return this.columnCognome;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn NomeColumn {
+ get {
+ return this.columnNome;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DataNascColumn {
+ get {
+ return this.columnDataNasc;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn LuogoNascitaColumn {
+ get {
+ return this.columnLuogoNascita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn SessoColumn {
+ get {
+ return this.columnSesso;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CodFColumn {
+ get {
+ return this.columnCodF;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IndirizzoColumn {
+ get {
+ return this.columnIndirizzo;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn EtaColumn {
+ get {
+ return this.columnEta;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn RecTelColumn {
+ get {
+ return this.columnRecTel;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MedicoColumn {
+ get {
+ return this.columnMedico;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn NotePazienteColumn {
+ get {
+ return this.columnNotePaziente;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GlicemiaColumn {
+ get {
+ return this.columnGlicemia;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn EmoglGlicataColumn {
+ get {
+ return this.columnEmoglGlicata;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn ColesTotColumn {
+ get {
+ return this.columnColesTot;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn LDLColumn {
+ get {
+ return this.columnLDL;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn HDLColumn {
+ get {
+ return this.columnHDL;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TrigliceridiColumn {
+ get {
+ return this.columnTrigliceridi;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn ColRapLDLHDLColumn {
+ get {
+ return this.columnColRapLDLHDL;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OmocisteinaColumn {
+ get {
+ return this.columnOmocisteina;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MHTFRColumn {
+ get {
+ return this.columnMHTFR;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FattIIColumn {
+ get {
+ return this.columnFattII;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FattVColumn {
+ get {
+ return this.columnFattV;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GradTransmColumn {
+ get {
+ return this.columnGradTransm;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn LungTelomColumn {
+ get {
+ return this.columnLungTelom;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn RespSilenzColumn {
+ get {
+ return this.columnRespSilenz;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn AltezzaColumn {
+ get {
+ return this.columnAltezza;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PesoColumn {
+ get {
+ return this.columnPeso;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlicaBicipiteColumn {
+ get {
+ return this.columnPlicaBicipite;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlicaTricipiteColumn {
+ get {
+ return this.columnPlicaTricipite;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlicaSottoscapolaColumn {
+ get {
+ return this.columnPlicaSottoscapola;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlicaPettoraleColumn {
+ get {
+ return this.columnPlicaPettorale;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlicaAddominaleColumn {
+ get {
+ return this.columnPlicaAddominale;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlicaSoprailiacaColumn {
+ get {
+ return this.columnPlicaSoprailiaca;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlicaCosciaColumn {
+ get {
+ return this.columnPlicaCoscia;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CirconfVitaGluteiColumn {
+ get {
+ return this.columnCirconfVitaGlutei;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CirconfAvambColumn {
+ get {
+ return this.columnCirconfAvamb;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GrassoTroncoPercColumn {
+ get {
+ return this.columnGrassoTroncoPerc;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GrassoViscIndColumn {
+ get {
+ return this.columnGrassoViscInd;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TRombergColumn {
+ get {
+ return this.columnTRomberg;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TFukudaColumn {
+ get {
+ return this.columnTFukuda;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TGUGColumn {
+ get {
+ return this.columnTGUG;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TGUG1Column {
+ get {
+ return this.columnTGUG1;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FPrensileColumn {
+ get {
+ return this.columnFPrensile;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DensCorpColumn {
+ get {
+ return this.columnDensCorp;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GrassoTotPercColumn {
+ get {
+ return this.columnGrassoTotPerc;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GrassoTotColumn {
+ get {
+ return this.columnGrassoTot;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MassaMagraPercColumn {
+ get {
+ return this.columnMassaMagraPerc;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MassaMagraKgCmColumn {
+ get {
+ return this.columnMassaMagraKgCm;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn BMIColumn {
+ get {
+ return this.columnBMI;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MetBasaleDieColumn {
+ get {
+ return this.columnMetBasaleDie;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MetBasaleHColumn {
+ get {
+ return this.columnMetBasaleH;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn LavoroColumn {
+ get {
+ return this.columnLavoro;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn StileVitaColumn {
+ get {
+ return this.columnStileVita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FreqAllColumn {
+ get {
+ return this.columnFreqAll;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MezzoTraspColumn {
+ get {
+ return this.columnMezzoTrasp;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn ScoreAttivColumn {
+ get {
+ return this.columnScoreAttiv;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MET_LavoroColumn {
+ get {
+ return this.columnMET_Lavoro;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MET_AttFisicaColumn {
+ get {
+ return this.columnMET_AttFisica;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreSonnoColumn {
+ get {
+ return this.columnOreSonno;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreSedutoColumn {
+ get {
+ return this.columnOreSeduto;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OrePastiColumn {
+ get {
+ return this.columnOrePasti;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreSpostAutoColumn {
+ get {
+ return this.columnOreSpostAuto;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreSpostAttColumn {
+ get {
+ return this.columnOreSpostAtt;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreLavoroColumn {
+ get {
+ return this.columnOreLavoro;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreIgieneColumn {
+ get {
+ return this.columnOreIgiene;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreAttFisicaColumn {
+ get {
+ return this.columnOreAttFisica;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OrePuliziaColumn {
+ get {
+ return this.columnOrePulizia;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn OreCaneColumn {
+ get {
+ return this.columnOreCane;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn ConsCalDieColumn {
+ get {
+ return this.columnConsCalDie;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VerdureColumn {
+ get {
+ return this.columnVerdure;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn LegumiColumn {
+ get {
+ return this.columnLegumi;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FruttaColumn {
+ get {
+ return this.columnFrutta;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn NociColumn {
+ get {
+ return this.columnNoci;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CerealiColumn {
+ get {
+ return this.columnCereali;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PesceColumn {
+ get {
+ return this.columnPesce;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GrassiColumn {
+ get {
+ return this.columnGrassi;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VinoColumn {
+ get {
+ return this.columnVino;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CarneLattColumn {
+ get {
+ return this.columnCarneLatt;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn ScoreDietMedColumn {
+ get {
+ return this.columnScoreDietMed;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn NoteStileVitaColumn {
+ get {
+ return this.columnNoteStileVita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Lavoro_labelColumn {
+ get {
+ return this.columnLavoro_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn StileVita_labelColumn {
+ get {
+ return this.columnStileVita_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FreqAll_labelColumn {
+ get {
+ return this.columnFreqAll_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MezzoTrasp_labelColumn {
+ get {
+ return this.columnMezzoTrasp_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Verdure_labelColumn {
+ get {
+ return this.columnVerdure_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Legumi_labelColumn {
+ get {
+ return this.columnLegumi_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Frutta_labelColumn {
+ get {
+ return this.columnFrutta_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Noci_labelColumn {
+ get {
+ return this.columnNoci_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Cereali_labelColumn {
+ get {
+ return this.columnCereali_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Pesce_labelColumn {
+ get {
+ return this.columnPesce_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Grassi_labelColumn {
+ get {
+ return this.columnGrassi_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Vino_labelColumn {
+ get {
+ return this.columnVino_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CarneLatt_labelColumn {
+ get {
+ return this.columnCarneLatt_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TestTMT_AColumn {
+ get {
+ return this.columnTestTMT_A;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TestTMT_A_labelColumn {
+ get {
+ return this.columnTestTMT_A_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TestTMT_BColumn {
+ get {
+ return this.columnTestTMT_B;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TestTMT_B_labelColumn {
+ get {
+ return this.columnTestTMT_B_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TestTMT_BAColumn {
+ get {
+ return this.columnTestTMT_BA;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TestTMT_BA_labelColumn {
+ get {
+ return this.columnTestTMT_BA_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Test15ParReyImmColumn {
+ get {
+ return this.columnTest15ParReyImm;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Test15ParReyImm_labelColumn {
+ get {
+ return this.columnTest15ParReyImm_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Test15ParReyDifColumn {
+ get {
+ return this.columnTest15ParReyDif;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Test15ParReyDif_labelColumn {
+ get {
+ return this.columnTest15ParReyDif_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn ApprSuSpanViSpaColumn {
+ get {
+ return this.columnApprSuSpanViSpa;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn ApprSuSpanViSpa_labelColumn {
+ get {
+ return this.columnApprSuSpanViSpa_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn StroopTestInterfErrColumn {
+ get {
+ return this.columnStroopTestInterfErr;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn StroopTestInterfErr_labelColumn {
+ get {
+ return this.columnStroopTestInterfErr_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TestStimeCognErrColumn {
+ get {
+ return this.columnTestStimeCognErr;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TestStimeCognErr_labelColumn {
+ get {
+ return this.columnTestStimeCognErr_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TestStimeCognBizColumn {
+ get {
+ return this.columnTestStimeCognBiz;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TestStimeCognBiz_labelColumn {
+ get {
+ return this.columnTestStimeCognBiz_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TorreLondraColumn {
+ get {
+ return this.columnTorreLondra;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TorreLondra_labelColumn {
+ get {
+ return this.columnTorreLondra_label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PaSisColumn {
+ get {
+ return this.columnPaSis;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PaDiaColumn {
+ get {
+ return this.columnPaDia;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn QR1Column {
+ get {
+ return this.columnQR1;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn QR1_KgColumn {
+ get {
+ return this.columnQR1_Kg;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VO2Column {
+ get {
+ return this.columnVO2;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn VO2_KgColumn {
+ get {
+ return this.columnVO2_Kg;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FC_QR1Column {
+ get {
+ return this.columnFC_QR1;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PolsoO2Column {
+ get {
+ return this.columnPolsoO2;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PaSisMaxColumn {
+ get {
+ return this.columnPaSisMax;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PaDiaMaxColumn {
+ get {
+ return this.columnPaDiaMax;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FrazEiezColumn {
+ get {
+ return this.columnFrazEiez;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TDIColumn {
+ get {
+ return this.columnTDI;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlaccheVasColumn {
+ get {
+ return this.columnPlaccheVas;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn NoteCardioColumn {
+ get {
+ return this.columnNoteCardio;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlaccheVas_LabelColumn {
+ get {
+ return this.columnPlaccheVas_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FamMCCVColumn {
+ get {
+ return this.columnFamMCCV;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FamMCCV_LabelColumn {
+ get {
+ return this.columnFamMCCV_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IpertensColumn {
+ get {
+ return this.columnIpertens;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Ipertens_LabelColumn {
+ get {
+ return this.columnIpertens_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IpertensYtdColumn {
+ get {
+ return this.columnIpertensYtd;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IpertensYtd_LabelColumn {
+ get {
+ return this.columnIpertensYtd_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DiabeteColumn {
+ get {
+ return this.columnDiabete;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Diabete_LabelColumn {
+ get {
+ return this.columnDiabete_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DiabeteYtdColumn {
+ get {
+ return this.columnDiabeteYtd;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DiabeteYtd_LabelColumn {
+ get {
+ return this.columnDiabeteYtd_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IpercolestColumn {
+ get {
+ return this.columnIpercolest;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Ipercolest_LabelColumn {
+ get {
+ return this.columnIpercolest_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IpercolestYtdColumn {
+ get {
+ return this.columnIpercolestYtd;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IpercolestYtd_LabelColumn {
+ get {
+ return this.columnIpercolestYtd_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FumoColumn {
+ get {
+ return this.columnFumo;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Fumo_LabelColumn {
+ get {
+ return this.columnFumo_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FumoYtdColumn {
+ get {
+ return this.columnFumoYtd;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FumoYtd_LabelColumn {
+ get {
+ return this.columnFumoYtd_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn AlcoolColumn {
+ get {
+ return this.columnAlcool;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Alcool_LabelColumn {
+ get {
+ return this.columnAlcool_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn AlcoolYtdColumn {
+ get {
+ return this.columnAlcoolYtd;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn AlcoolYtd_LabelColumn {
+ get {
+ return this.columnAlcoolYtd_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn SovrappColumn {
+ get {
+ return this.columnSovrapp;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Sovrapp_LabelColumn {
+ get {
+ return this.columnSovrapp_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn SovrappYtdColumn {
+ get {
+ return this.columnSovrappYtd;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn SovrappYtd_LabelColumn {
+ get {
+ return this.columnSovrappYtd_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn SedentColumn {
+ get {
+ return this.columnSedent;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Sedent_LabelColumn {
+ get {
+ return this.columnSedent_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn AdesTerapColumn {
+ get {
+ return this.columnAdesTerap;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn AdesTerap_LabelColumn {
+ get {
+ return this.columnAdesTerap_Label;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn NoteRelFinColumn {
+ get {
+ return this.columnNoteRelFin;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Score1Column {
+ get {
+ return this.columnScore1;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn Score2Column {
+ get {
+ return this.columnScore2;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MedicoRefColumn {
+ get {
+ return this.columnMedicoRef;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ public int Count {
+ get {
+ return this.Rows.Count;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public stp_rep_DatiFullByPazienteDataRow this[int index] {
+ get {
+ return ((stp_rep_DatiFullByPazienteDataRow)(this.Rows[index]));
+ }
+ }
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event stp_rep_DatiFullByPazienteDataRowChangeEventHandler stp_rep_DatiFullByPazienteDataRowChanging;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event stp_rep_DatiFullByPazienteDataRowChangeEventHandler stp_rep_DatiFullByPazienteDataRowChanged;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event stp_rep_DatiFullByPazienteDataRowChangeEventHandler stp_rep_DatiFullByPazienteDataRowDeleting;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event stp_rep_DatiFullByPazienteDataRowChangeEventHandler stp_rep_DatiFullByPazienteDataRowDeleted;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void Addstp_rep_DatiFullByPazienteDataRow(stp_rep_DatiFullByPazienteDataRow row) {
+ this.Rows.Add(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public stp_rep_DatiFullByPazienteDataRow Addstp_rep_DatiFullByPazienteDataRow(
+ int IdxPaziente,
+ System.DateTime DataVisita,
+ string Gruppo,
+ string Cognome,
+ string Nome,
+ System.DateTime DataNasc,
+ string LuogoNascita,
+ string Sesso,
+ string CodF,
+ string Indirizzo,
+ double Eta,
+ string RecTel,
+ string Medico,
+ string NotePaziente,
+ double Glicemia,
+ double EmoglGlicata,
+ double ColesTot,
+ double LDL,
+ double HDL,
+ double Trigliceridi,
+ double ColRapLDLHDL,
+ double Omocisteina,
+ double MHTFR,
+ double FattII,
+ double FattV,
+ double GradTransm,
+ double LungTelom,
+ double RespSilenz,
+ double Altezza,
+ double Peso,
+ double PlicaBicipite,
+ double PlicaTricipite,
+ double PlicaSottoscapola,
+ double PlicaPettorale,
+ double PlicaAddominale,
+ double PlicaSoprailiaca,
+ double PlicaCoscia,
+ double CirconfVitaGlutei,
+ double CirconfAvamb,
+ double GrassoTroncoPerc,
+ double GrassoViscInd,
+ double TRomberg,
+ double TFukuda,
+ double TGUG,
+ double TGUG1,
+ double FPrensile,
+ double DensCorp,
+ double GrassoTotPerc,
+ double GrassoTot,
+ double MassaMagraPerc,
+ double MassaMagraKgCm,
+ double BMI,
+ double MetBasaleDie,
+ double MetBasaleH,
+ int Lavoro,
+ int StileVita,
+ int FreqAll,
+ int MezzoTrasp,
+ int ScoreAttiv,
+ double MET_Lavoro,
+ double MET_AttFisica,
+ double OreSonno,
+ double OreSeduto,
+ double OrePasti,
+ double OreSpostAuto,
+ double OreSpostAtt,
+ double OreLavoro,
+ double OreIgiene,
+ double OreAttFisica,
+ double OrePulizia,
+ double OreCane,
+ double ConsCalDie,
+ int Verdure,
+ int Legumi,
+ int Frutta,
+ int Noci,
+ int Cereali,
+ int Pesce,
+ int Grassi,
+ int Vino,
+ int CarneLatt,
+ int ScoreDietMed,
+ string NoteStileVita,
+ string Lavoro_label,
+ string StileVita_label,
+ string FreqAll_label,
+ string MezzoTrasp_label,
+ string Verdure_label,
+ string Legumi_label,
+ string Frutta_label,
+ string Noci_label,
+ string Cereali_label,
+ string Pesce_label,
+ string Grassi_label,
+ string Vino_label,
+ string CarneLatt_label,
+ int TestTMT_A,
+ string TestTMT_A_label,
+ int TestTMT_B,
+ string TestTMT_B_label,
+ int TestTMT_BA,
+ string TestTMT_BA_label,
+ int Test15ParReyImm,
+ string Test15ParReyImm_label,
+ int Test15ParReyDif,
+ string Test15ParReyDif_label,
+ int ApprSuSpanViSpa,
+ string ApprSuSpanViSpa_label,
+ int StroopTestInterfErr,
+ string StroopTestInterfErr_label,
+ int TestStimeCognErr,
+ string TestStimeCognErr_label,
+ int TestStimeCognBiz,
+ string TestStimeCognBiz_label,
+ int TorreLondra,
+ string TorreLondra_label,
+ int PaSis,
+ int PaDia,
+ double QR1,
+ double QR1_Kg,
+ double VO2,
+ double VO2_Kg,
+ int FC_QR1,
+ double PolsoO2,
+ int PaSisMax,
+ int PaDiaMax,
+ double FrazEiez,
+ double TDI,
+ double PlaccheVas,
+ string NoteCardio,
+ string PlaccheVas_Label,
+ int FamMCCV,
+ string FamMCCV_Label,
+ int Ipertens,
+ string Ipertens_Label,
+ int IpertensYtd,
+ string IpertensYtd_Label,
+ int Diabete,
+ string Diabete_Label,
+ int DiabeteYtd,
+ string DiabeteYtd_Label,
+ int Ipercolest,
+ string Ipercolest_Label,
+ int IpercolestYtd,
+ string IpercolestYtd_Label,
+ int Fumo,
+ string Fumo_Label,
+ int FumoYtd,
+ string FumoYtd_Label,
+ int Alcool,
+ string Alcool_Label,
+ int AlcoolYtd,
+ string AlcoolYtd_Label,
+ int Sovrapp,
+ string Sovrapp_Label,
+ int SovrappYtd,
+ string SovrappYtd_Label,
+ int Sedent,
+ string Sedent_Label,
+ int AdesTerap,
+ string AdesTerap_Label,
+ string NoteRelFin,
+ double Score1,
+ double Score2,
+ string MedicoRef) {
+ stp_rep_DatiFullByPazienteDataRow rowstp_rep_DatiFullByPazienteDataRow = ((stp_rep_DatiFullByPazienteDataRow)(this.NewRow()));
+ object[] columnValuesArray = new object[] {
+ IdxPaziente,
+ DataVisita,
+ Gruppo,
+ Cognome,
+ Nome,
+ DataNasc,
+ LuogoNascita,
+ Sesso,
+ CodF,
+ Indirizzo,
+ Eta,
+ RecTel,
+ Medico,
+ NotePaziente,
+ Glicemia,
+ EmoglGlicata,
+ ColesTot,
+ LDL,
+ HDL,
+ Trigliceridi,
+ ColRapLDLHDL,
+ Omocisteina,
+ MHTFR,
+ FattII,
+ FattV,
+ GradTransm,
+ LungTelom,
+ RespSilenz,
+ Altezza,
+ Peso,
+ PlicaBicipite,
+ PlicaTricipite,
+ PlicaSottoscapola,
+ PlicaPettorale,
+ PlicaAddominale,
+ PlicaSoprailiaca,
+ PlicaCoscia,
+ CirconfVitaGlutei,
+ CirconfAvamb,
+ GrassoTroncoPerc,
+ GrassoViscInd,
+ TRomberg,
+ TFukuda,
+ TGUG,
+ TGUG1,
+ FPrensile,
+ DensCorp,
+ GrassoTotPerc,
+ GrassoTot,
+ MassaMagraPerc,
+ MassaMagraKgCm,
+ BMI,
+ MetBasaleDie,
+ MetBasaleH,
+ Lavoro,
+ StileVita,
+ FreqAll,
+ MezzoTrasp,
+ ScoreAttiv,
+ MET_Lavoro,
+ MET_AttFisica,
+ OreSonno,
+ OreSeduto,
+ OrePasti,
+ OreSpostAuto,
+ OreSpostAtt,
+ OreLavoro,
+ OreIgiene,
+ OreAttFisica,
+ OrePulizia,
+ OreCane,
+ ConsCalDie,
+ Verdure,
+ Legumi,
+ Frutta,
+ Noci,
+ Cereali,
+ Pesce,
+ Grassi,
+ Vino,
+ CarneLatt,
+ ScoreDietMed,
+ NoteStileVita,
+ Lavoro_label,
+ StileVita_label,
+ FreqAll_label,
+ MezzoTrasp_label,
+ Verdure_label,
+ Legumi_label,
+ Frutta_label,
+ Noci_label,
+ Cereali_label,
+ Pesce_label,
+ Grassi_label,
+ Vino_label,
+ CarneLatt_label,
+ TestTMT_A,
+ TestTMT_A_label,
+ TestTMT_B,
+ TestTMT_B_label,
+ TestTMT_BA,
+ TestTMT_BA_label,
+ Test15ParReyImm,
+ Test15ParReyImm_label,
+ Test15ParReyDif,
+ Test15ParReyDif_label,
+ ApprSuSpanViSpa,
+ ApprSuSpanViSpa_label,
+ StroopTestInterfErr,
+ StroopTestInterfErr_label,
+ TestStimeCognErr,
+ TestStimeCognErr_label,
+ TestStimeCognBiz,
+ TestStimeCognBiz_label,
+ TorreLondra,
+ TorreLondra_label,
+ PaSis,
+ PaDia,
+ QR1,
+ QR1_Kg,
+ VO2,
+ VO2_Kg,
+ FC_QR1,
+ PolsoO2,
+ PaSisMax,
+ PaDiaMax,
+ FrazEiez,
+ TDI,
+ PlaccheVas,
+ NoteCardio,
+ PlaccheVas_Label,
+ FamMCCV,
+ FamMCCV_Label,
+ Ipertens,
+ Ipertens_Label,
+ IpertensYtd,
+ IpertensYtd_Label,
+ Diabete,
+ Diabete_Label,
+ DiabeteYtd,
+ DiabeteYtd_Label,
+ Ipercolest,
+ Ipercolest_Label,
+ IpercolestYtd,
+ IpercolestYtd_Label,
+ Fumo,
+ Fumo_Label,
+ FumoYtd,
+ FumoYtd_Label,
+ Alcool,
+ Alcool_Label,
+ AlcoolYtd,
+ AlcoolYtd_Label,
+ Sovrapp,
+ Sovrapp_Label,
+ SovrappYtd,
+ SovrappYtd_Label,
+ Sedent,
+ Sedent_Label,
+ AdesTerap,
+ AdesTerap_Label,
+ NoteRelFin,
+ Score1,
+ Score2,
+ MedicoRef};
+ rowstp_rep_DatiFullByPazienteDataRow.ItemArray = columnValuesArray;
+ this.Rows.Add(rowstp_rep_DatiFullByPazienteDataRow);
+ return rowstp_rep_DatiFullByPazienteDataRow;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public override global::System.Data.DataTable Clone() {
+ stp_rep_DatiFullByPazienteDataDataTable cln = ((stp_rep_DatiFullByPazienteDataDataTable)(base.Clone()));
+ cln.InitVars();
+ return cln;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataTable CreateInstance() {
+ return new stp_rep_DatiFullByPazienteDataDataTable();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal void InitVars() {
+ this.columnIdxPaziente = base.Columns["IdxPaziente"];
+ this.columnDataVisita = base.Columns["DataVisita"];
+ this.columnGruppo = base.Columns["Gruppo"];
+ this.columnCognome = base.Columns["Cognome"];
+ this.columnNome = base.Columns["Nome"];
+ this.columnDataNasc = base.Columns["DataNasc"];
+ this.columnLuogoNascita = base.Columns["LuogoNascita"];
+ this.columnSesso = base.Columns["Sesso"];
+ this.columnCodF = base.Columns["CodF"];
+ this.columnIndirizzo = base.Columns["Indirizzo"];
+ this.columnEta = base.Columns["Eta"];
+ this.columnRecTel = base.Columns["RecTel"];
+ this.columnMedico = base.Columns["Medico"];
+ this.columnNotePaziente = base.Columns["NotePaziente"];
+ this.columnGlicemia = base.Columns["Glicemia"];
+ this.columnEmoglGlicata = base.Columns["EmoglGlicata"];
+ this.columnColesTot = base.Columns["ColesTot"];
+ this.columnLDL = base.Columns["LDL"];
+ this.columnHDL = base.Columns["HDL"];
+ this.columnTrigliceridi = base.Columns["Trigliceridi"];
+ this.columnColRapLDLHDL = base.Columns["ColRapLDLHDL"];
+ this.columnOmocisteina = base.Columns["Omocisteina"];
+ this.columnMHTFR = base.Columns["MHTFR"];
+ this.columnFattII = base.Columns["FattII"];
+ this.columnFattV = base.Columns["FattV"];
+ this.columnGradTransm = base.Columns["GradTransm"];
+ this.columnLungTelom = base.Columns["LungTelom"];
+ this.columnRespSilenz = base.Columns["RespSilenz"];
+ this.columnAltezza = base.Columns["Altezza"];
+ this.columnPeso = base.Columns["Peso"];
+ this.columnPlicaBicipite = base.Columns["PlicaBicipite"];
+ this.columnPlicaTricipite = base.Columns["PlicaTricipite"];
+ this.columnPlicaSottoscapola = base.Columns["PlicaSottoscapola"];
+ this.columnPlicaPettorale = base.Columns["PlicaPettorale"];
+ this.columnPlicaAddominale = base.Columns["PlicaAddominale"];
+ this.columnPlicaSoprailiaca = base.Columns["PlicaSoprailiaca"];
+ this.columnPlicaCoscia = base.Columns["PlicaCoscia"];
+ this.columnCirconfVitaGlutei = base.Columns["CirconfVitaGlutei"];
+ this.columnCirconfAvamb = base.Columns["CirconfAvamb"];
+ this.columnGrassoTroncoPerc = base.Columns["GrassoTroncoPerc"];
+ this.columnGrassoViscInd = base.Columns["GrassoViscInd"];
+ this.columnTRomberg = base.Columns["TRomberg"];
+ this.columnTFukuda = base.Columns["TFukuda"];
+ this.columnTGUG = base.Columns["TGUG"];
+ this.columnTGUG1 = base.Columns["TGUG1"];
+ this.columnFPrensile = base.Columns["FPrensile"];
+ this.columnDensCorp = base.Columns["DensCorp"];
+ this.columnGrassoTotPerc = base.Columns["GrassoTotPerc"];
+ this.columnGrassoTot = base.Columns["GrassoTot"];
+ this.columnMassaMagraPerc = base.Columns["MassaMagraPerc"];
+ this.columnMassaMagraKgCm = base.Columns["MassaMagraKgCm"];
+ this.columnBMI = base.Columns["BMI"];
+ this.columnMetBasaleDie = base.Columns["MetBasaleDie"];
+ this.columnMetBasaleH = base.Columns["MetBasaleH"];
+ this.columnLavoro = base.Columns["Lavoro"];
+ this.columnStileVita = base.Columns["StileVita"];
+ this.columnFreqAll = base.Columns["FreqAll"];
+ this.columnMezzoTrasp = base.Columns["MezzoTrasp"];
+ this.columnScoreAttiv = base.Columns["ScoreAttiv"];
+ this.columnMET_Lavoro = base.Columns["MET_Lavoro"];
+ this.columnMET_AttFisica = base.Columns["MET_AttFisica"];
+ this.columnOreSonno = base.Columns["OreSonno"];
+ this.columnOreSeduto = base.Columns["OreSeduto"];
+ this.columnOrePasti = base.Columns["OrePasti"];
+ this.columnOreSpostAuto = base.Columns["OreSpostAuto"];
+ this.columnOreSpostAtt = base.Columns["OreSpostAtt"];
+ this.columnOreLavoro = base.Columns["OreLavoro"];
+ this.columnOreIgiene = base.Columns["OreIgiene"];
+ this.columnOreAttFisica = base.Columns["OreAttFisica"];
+ this.columnOrePulizia = base.Columns["OrePulizia"];
+ this.columnOreCane = base.Columns["OreCane"];
+ this.columnConsCalDie = base.Columns["ConsCalDie"];
+ this.columnVerdure = base.Columns["Verdure"];
+ this.columnLegumi = base.Columns["Legumi"];
+ this.columnFrutta = base.Columns["Frutta"];
+ this.columnNoci = base.Columns["Noci"];
+ this.columnCereali = base.Columns["Cereali"];
+ this.columnPesce = base.Columns["Pesce"];
+ this.columnGrassi = base.Columns["Grassi"];
+ this.columnVino = base.Columns["Vino"];
+ this.columnCarneLatt = base.Columns["CarneLatt"];
+ this.columnScoreDietMed = base.Columns["ScoreDietMed"];
+ this.columnNoteStileVita = base.Columns["NoteStileVita"];
+ this.columnLavoro_label = base.Columns["Lavoro_label"];
+ this.columnStileVita_label = base.Columns["StileVita_label"];
+ this.columnFreqAll_label = base.Columns["FreqAll_label"];
+ this.columnMezzoTrasp_label = base.Columns["MezzoTrasp_label"];
+ this.columnVerdure_label = base.Columns["Verdure_label"];
+ this.columnLegumi_label = base.Columns["Legumi_label"];
+ this.columnFrutta_label = base.Columns["Frutta_label"];
+ this.columnNoci_label = base.Columns["Noci_label"];
+ this.columnCereali_label = base.Columns["Cereali_label"];
+ this.columnPesce_label = base.Columns["Pesce_label"];
+ this.columnGrassi_label = base.Columns["Grassi_label"];
+ this.columnVino_label = base.Columns["Vino_label"];
+ this.columnCarneLatt_label = base.Columns["CarneLatt_label"];
+ this.columnTestTMT_A = base.Columns["TestTMT_A"];
+ this.columnTestTMT_A_label = base.Columns["TestTMT_A_label"];
+ this.columnTestTMT_B = base.Columns["TestTMT_B"];
+ this.columnTestTMT_B_label = base.Columns["TestTMT_B_label"];
+ this.columnTestTMT_BA = base.Columns["TestTMT_BA"];
+ this.columnTestTMT_BA_label = base.Columns["TestTMT_BA_label"];
+ this.columnTest15ParReyImm = base.Columns["Test15ParReyImm"];
+ this.columnTest15ParReyImm_label = base.Columns["Test15ParReyImm_label"];
+ this.columnTest15ParReyDif = base.Columns["Test15ParReyDif"];
+ this.columnTest15ParReyDif_label = base.Columns["Test15ParReyDif_label"];
+ this.columnApprSuSpanViSpa = base.Columns["ApprSuSpanViSpa"];
+ this.columnApprSuSpanViSpa_label = base.Columns["ApprSuSpanViSpa_label"];
+ this.columnStroopTestInterfErr = base.Columns["StroopTestInterfErr"];
+ this.columnStroopTestInterfErr_label = base.Columns["StroopTestInterfErr_label"];
+ this.columnTestStimeCognErr = base.Columns["TestStimeCognErr"];
+ this.columnTestStimeCognErr_label = base.Columns["TestStimeCognErr_label"];
+ this.columnTestStimeCognBiz = base.Columns["TestStimeCognBiz"];
+ this.columnTestStimeCognBiz_label = base.Columns["TestStimeCognBiz_label"];
+ this.columnTorreLondra = base.Columns["TorreLondra"];
+ this.columnTorreLondra_label = base.Columns["TorreLondra_label"];
+ this.columnPaSis = base.Columns["PaSis"];
+ this.columnPaDia = base.Columns["PaDia"];
+ this.columnQR1 = base.Columns["QR1"];
+ this.columnQR1_Kg = base.Columns["QR1_Kg"];
+ this.columnVO2 = base.Columns["VO2"];
+ this.columnVO2_Kg = base.Columns["VO2_Kg"];
+ this.columnFC_QR1 = base.Columns["FC_QR1"];
+ this.columnPolsoO2 = base.Columns["PolsoO2"];
+ this.columnPaSisMax = base.Columns["PaSisMax"];
+ this.columnPaDiaMax = base.Columns["PaDiaMax"];
+ this.columnFrazEiez = base.Columns["FrazEiez"];
+ this.columnTDI = base.Columns["TDI"];
+ this.columnPlaccheVas = base.Columns["PlaccheVas"];
+ this.columnNoteCardio = base.Columns["NoteCardio"];
+ this.columnPlaccheVas_Label = base.Columns["PlaccheVas_Label"];
+ this.columnFamMCCV = base.Columns["FamMCCV"];
+ this.columnFamMCCV_Label = base.Columns["FamMCCV_Label"];
+ this.columnIpertens = base.Columns["Ipertens"];
+ this.columnIpertens_Label = base.Columns["Ipertens_Label"];
+ this.columnIpertensYtd = base.Columns["IpertensYtd"];
+ this.columnIpertensYtd_Label = base.Columns["IpertensYtd_Label"];
+ this.columnDiabete = base.Columns["Diabete"];
+ this.columnDiabete_Label = base.Columns["Diabete_Label"];
+ this.columnDiabeteYtd = base.Columns["DiabeteYtd"];
+ this.columnDiabeteYtd_Label = base.Columns["DiabeteYtd_Label"];
+ this.columnIpercolest = base.Columns["Ipercolest"];
+ this.columnIpercolest_Label = base.Columns["Ipercolest_Label"];
+ this.columnIpercolestYtd = base.Columns["IpercolestYtd"];
+ this.columnIpercolestYtd_Label = base.Columns["IpercolestYtd_Label"];
+ this.columnFumo = base.Columns["Fumo"];
+ this.columnFumo_Label = base.Columns["Fumo_Label"];
+ this.columnFumoYtd = base.Columns["FumoYtd"];
+ this.columnFumoYtd_Label = base.Columns["FumoYtd_Label"];
+ this.columnAlcool = base.Columns["Alcool"];
+ this.columnAlcool_Label = base.Columns["Alcool_Label"];
+ this.columnAlcoolYtd = base.Columns["AlcoolYtd"];
+ this.columnAlcoolYtd_Label = base.Columns["AlcoolYtd_Label"];
+ this.columnSovrapp = base.Columns["Sovrapp"];
+ this.columnSovrapp_Label = base.Columns["Sovrapp_Label"];
+ this.columnSovrappYtd = base.Columns["SovrappYtd"];
+ this.columnSovrappYtd_Label = base.Columns["SovrappYtd_Label"];
+ this.columnSedent = base.Columns["Sedent"];
+ this.columnSedent_Label = base.Columns["Sedent_Label"];
+ this.columnAdesTerap = base.Columns["AdesTerap"];
+ this.columnAdesTerap_Label = base.Columns["AdesTerap_Label"];
+ this.columnNoteRelFin = base.Columns["NoteRelFin"];
+ this.columnScore1 = base.Columns["Score1"];
+ this.columnScore2 = base.Columns["Score2"];
+ this.columnMedicoRef = base.Columns["MedicoRef"];
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitClass() {
+ this.columnIdxPaziente = new global::System.Data.DataColumn("IdxPaziente", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIdxPaziente);
+ this.columnDataVisita = new global::System.Data.DataColumn("DataVisita", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDataVisita);
+ this.columnGruppo = new global::System.Data.DataColumn("Gruppo", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGruppo);
+ this.columnCognome = new global::System.Data.DataColumn("Cognome", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCognome);
+ this.columnNome = new global::System.Data.DataColumn("Nome", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNome);
+ this.columnDataNasc = new global::System.Data.DataColumn("DataNasc", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDataNasc);
+ this.columnLuogoNascita = new global::System.Data.DataColumn("LuogoNascita", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnLuogoNascita);
+ this.columnSesso = new global::System.Data.DataColumn("Sesso", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnSesso);
+ this.columnCodF = new global::System.Data.DataColumn("CodF", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCodF);
+ this.columnIndirizzo = new global::System.Data.DataColumn("Indirizzo", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIndirizzo);
+ this.columnEta = new global::System.Data.DataColumn("Eta", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnEta);
+ this.columnRecTel = new global::System.Data.DataColumn("RecTel", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnRecTel);
+ this.columnMedico = new global::System.Data.DataColumn("Medico", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMedico);
+ this.columnNotePaziente = new global::System.Data.DataColumn("NotePaziente", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNotePaziente);
+ this.columnGlicemia = new global::System.Data.DataColumn("Glicemia", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGlicemia);
+ this.columnEmoglGlicata = new global::System.Data.DataColumn("EmoglGlicata", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnEmoglGlicata);
+ this.columnColesTot = new global::System.Data.DataColumn("ColesTot", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnColesTot);
+ this.columnLDL = new global::System.Data.DataColumn("LDL", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnLDL);
+ this.columnHDL = new global::System.Data.DataColumn("HDL", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnHDL);
+ this.columnTrigliceridi = new global::System.Data.DataColumn("Trigliceridi", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTrigliceridi);
+ this.columnColRapLDLHDL = new global::System.Data.DataColumn("ColRapLDLHDL", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnColRapLDLHDL);
+ this.columnOmocisteina = new global::System.Data.DataColumn("Omocisteina", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOmocisteina);
+ this.columnMHTFR = new global::System.Data.DataColumn("MHTFR", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMHTFR);
+ this.columnFattII = new global::System.Data.DataColumn("FattII", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFattII);
+ this.columnFattV = new global::System.Data.DataColumn("FattV", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFattV);
+ this.columnGradTransm = new global::System.Data.DataColumn("GradTransm", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGradTransm);
+ this.columnLungTelom = new global::System.Data.DataColumn("LungTelom", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnLungTelom);
+ this.columnRespSilenz = new global::System.Data.DataColumn("RespSilenz", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnRespSilenz);
+ this.columnAltezza = new global::System.Data.DataColumn("Altezza", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnAltezza);
+ this.columnPeso = new global::System.Data.DataColumn("Peso", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPeso);
+ this.columnPlicaBicipite = new global::System.Data.DataColumn("PlicaBicipite", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlicaBicipite);
+ this.columnPlicaTricipite = new global::System.Data.DataColumn("PlicaTricipite", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlicaTricipite);
+ this.columnPlicaSottoscapola = new global::System.Data.DataColumn("PlicaSottoscapola", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlicaSottoscapola);
+ this.columnPlicaPettorale = new global::System.Data.DataColumn("PlicaPettorale", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlicaPettorale);
+ this.columnPlicaAddominale = new global::System.Data.DataColumn("PlicaAddominale", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlicaAddominale);
+ this.columnPlicaSoprailiaca = new global::System.Data.DataColumn("PlicaSoprailiaca", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlicaSoprailiaca);
+ this.columnPlicaCoscia = new global::System.Data.DataColumn("PlicaCoscia", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlicaCoscia);
+ this.columnCirconfVitaGlutei = new global::System.Data.DataColumn("CirconfVitaGlutei", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCirconfVitaGlutei);
+ this.columnCirconfAvamb = new global::System.Data.DataColumn("CirconfAvamb", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCirconfAvamb);
+ this.columnGrassoTroncoPerc = new global::System.Data.DataColumn("GrassoTroncoPerc", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGrassoTroncoPerc);
+ this.columnGrassoViscInd = new global::System.Data.DataColumn("GrassoViscInd", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGrassoViscInd);
+ this.columnTRomberg = new global::System.Data.DataColumn("TRomberg", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTRomberg);
+ this.columnTFukuda = new global::System.Data.DataColumn("TFukuda", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTFukuda);
+ this.columnTGUG = new global::System.Data.DataColumn("TGUG", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTGUG);
+ this.columnTGUG1 = new global::System.Data.DataColumn("TGUG1", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTGUG1);
+ this.columnFPrensile = new global::System.Data.DataColumn("FPrensile", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFPrensile);
+ this.columnDensCorp = new global::System.Data.DataColumn("DensCorp", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDensCorp);
+ this.columnGrassoTotPerc = new global::System.Data.DataColumn("GrassoTotPerc", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGrassoTotPerc);
+ this.columnGrassoTot = new global::System.Data.DataColumn("GrassoTot", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGrassoTot);
+ this.columnMassaMagraPerc = new global::System.Data.DataColumn("MassaMagraPerc", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMassaMagraPerc);
+ this.columnMassaMagraKgCm = new global::System.Data.DataColumn("MassaMagraKgCm", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMassaMagraKgCm);
+ this.columnBMI = new global::System.Data.DataColumn("BMI", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnBMI);
+ this.columnMetBasaleDie = new global::System.Data.DataColumn("MetBasaleDie", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMetBasaleDie);
+ this.columnMetBasaleH = new global::System.Data.DataColumn("MetBasaleH", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMetBasaleH);
+ this.columnLavoro = new global::System.Data.DataColumn("Lavoro", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnLavoro);
+ this.columnStileVita = new global::System.Data.DataColumn("StileVita", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnStileVita);
+ this.columnFreqAll = new global::System.Data.DataColumn("FreqAll", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFreqAll);
+ this.columnMezzoTrasp = new global::System.Data.DataColumn("MezzoTrasp", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMezzoTrasp);
+ this.columnScoreAttiv = new global::System.Data.DataColumn("ScoreAttiv", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnScoreAttiv);
+ this.columnMET_Lavoro = new global::System.Data.DataColumn("MET_Lavoro", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMET_Lavoro);
+ this.columnMET_AttFisica = new global::System.Data.DataColumn("MET_AttFisica", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMET_AttFisica);
+ this.columnOreSonno = new global::System.Data.DataColumn("OreSonno", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreSonno);
+ this.columnOreSeduto = new global::System.Data.DataColumn("OreSeduto", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreSeduto);
+ this.columnOrePasti = new global::System.Data.DataColumn("OrePasti", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOrePasti);
+ this.columnOreSpostAuto = new global::System.Data.DataColumn("OreSpostAuto", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreSpostAuto);
+ this.columnOreSpostAtt = new global::System.Data.DataColumn("OreSpostAtt", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreSpostAtt);
+ this.columnOreLavoro = new global::System.Data.DataColumn("OreLavoro", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreLavoro);
+ this.columnOreIgiene = new global::System.Data.DataColumn("OreIgiene", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreIgiene);
+ this.columnOreAttFisica = new global::System.Data.DataColumn("OreAttFisica", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreAttFisica);
+ this.columnOrePulizia = new global::System.Data.DataColumn("OrePulizia", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOrePulizia);
+ this.columnOreCane = new global::System.Data.DataColumn("OreCane", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnOreCane);
+ this.columnConsCalDie = new global::System.Data.DataColumn("ConsCalDie", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnConsCalDie);
+ this.columnVerdure = new global::System.Data.DataColumn("Verdure", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVerdure);
+ this.columnLegumi = new global::System.Data.DataColumn("Legumi", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnLegumi);
+ this.columnFrutta = new global::System.Data.DataColumn("Frutta", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFrutta);
+ this.columnNoci = new global::System.Data.DataColumn("Noci", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNoci);
+ this.columnCereali = new global::System.Data.DataColumn("Cereali", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCereali);
+ this.columnPesce = new global::System.Data.DataColumn("Pesce", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPesce);
+ this.columnGrassi = new global::System.Data.DataColumn("Grassi", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGrassi);
+ this.columnVino = new global::System.Data.DataColumn("Vino", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVino);
+ this.columnCarneLatt = new global::System.Data.DataColumn("CarneLatt", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCarneLatt);
+ this.columnScoreDietMed = new global::System.Data.DataColumn("ScoreDietMed", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnScoreDietMed);
+ this.columnNoteStileVita = new global::System.Data.DataColumn("NoteStileVita", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNoteStileVita);
+ this.columnLavoro_label = new global::System.Data.DataColumn("Lavoro_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnLavoro_label);
+ this.columnStileVita_label = new global::System.Data.DataColumn("StileVita_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnStileVita_label);
+ this.columnFreqAll_label = new global::System.Data.DataColumn("FreqAll_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFreqAll_label);
+ this.columnMezzoTrasp_label = new global::System.Data.DataColumn("MezzoTrasp_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMezzoTrasp_label);
+ this.columnVerdure_label = new global::System.Data.DataColumn("Verdure_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVerdure_label);
+ this.columnLegumi_label = new global::System.Data.DataColumn("Legumi_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnLegumi_label);
+ this.columnFrutta_label = new global::System.Data.DataColumn("Frutta_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFrutta_label);
+ this.columnNoci_label = new global::System.Data.DataColumn("Noci_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNoci_label);
+ this.columnCereali_label = new global::System.Data.DataColumn("Cereali_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCereali_label);
+ this.columnPesce_label = new global::System.Data.DataColumn("Pesce_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPesce_label);
+ this.columnGrassi_label = new global::System.Data.DataColumn("Grassi_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGrassi_label);
+ this.columnVino_label = new global::System.Data.DataColumn("Vino_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVino_label);
+ this.columnCarneLatt_label = new global::System.Data.DataColumn("CarneLatt_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCarneLatt_label);
+ this.columnTestTMT_A = new global::System.Data.DataColumn("TestTMT_A", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTestTMT_A);
+ this.columnTestTMT_A_label = new global::System.Data.DataColumn("TestTMT_A_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTestTMT_A_label);
+ this.columnTestTMT_B = new global::System.Data.DataColumn("TestTMT_B", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTestTMT_B);
+ this.columnTestTMT_B_label = new global::System.Data.DataColumn("TestTMT_B_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTestTMT_B_label);
+ this.columnTestTMT_BA = new global::System.Data.DataColumn("TestTMT_BA", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTestTMT_BA);
+ this.columnTestTMT_BA_label = new global::System.Data.DataColumn("TestTMT_BA_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTestTMT_BA_label);
+ this.columnTest15ParReyImm = new global::System.Data.DataColumn("Test15ParReyImm", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTest15ParReyImm);
+ this.columnTest15ParReyImm_label = new global::System.Data.DataColumn("Test15ParReyImm_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTest15ParReyImm_label);
+ this.columnTest15ParReyDif = new global::System.Data.DataColumn("Test15ParReyDif", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTest15ParReyDif);
+ this.columnTest15ParReyDif_label = new global::System.Data.DataColumn("Test15ParReyDif_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTest15ParReyDif_label);
+ this.columnApprSuSpanViSpa = new global::System.Data.DataColumn("ApprSuSpanViSpa", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnApprSuSpanViSpa);
+ this.columnApprSuSpanViSpa_label = new global::System.Data.DataColumn("ApprSuSpanViSpa_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnApprSuSpanViSpa_label);
+ this.columnStroopTestInterfErr = new global::System.Data.DataColumn("StroopTestInterfErr", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnStroopTestInterfErr);
+ this.columnStroopTestInterfErr_label = new global::System.Data.DataColumn("StroopTestInterfErr_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnStroopTestInterfErr_label);
+ this.columnTestStimeCognErr = new global::System.Data.DataColumn("TestStimeCognErr", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTestStimeCognErr);
+ this.columnTestStimeCognErr_label = new global::System.Data.DataColumn("TestStimeCognErr_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTestStimeCognErr_label);
+ this.columnTestStimeCognBiz = new global::System.Data.DataColumn("TestStimeCognBiz", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTestStimeCognBiz);
+ this.columnTestStimeCognBiz_label = new global::System.Data.DataColumn("TestStimeCognBiz_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTestStimeCognBiz_label);
+ this.columnTorreLondra = new global::System.Data.DataColumn("TorreLondra", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTorreLondra);
+ this.columnTorreLondra_label = new global::System.Data.DataColumn("TorreLondra_label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTorreLondra_label);
+ this.columnPaSis = new global::System.Data.DataColumn("PaSis", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPaSis);
+ this.columnPaDia = new global::System.Data.DataColumn("PaDia", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPaDia);
+ this.columnQR1 = new global::System.Data.DataColumn("QR1", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnQR1);
+ this.columnQR1_Kg = new global::System.Data.DataColumn("QR1_Kg", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnQR1_Kg);
+ this.columnVO2 = new global::System.Data.DataColumn("VO2", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVO2);
+ this.columnVO2_Kg = new global::System.Data.DataColumn("VO2_Kg", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnVO2_Kg);
+ this.columnFC_QR1 = new global::System.Data.DataColumn("FC_QR1", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFC_QR1);
+ this.columnPolsoO2 = new global::System.Data.DataColumn("PolsoO2", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPolsoO2);
+ this.columnPaSisMax = new global::System.Data.DataColumn("PaSisMax", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPaSisMax);
+ this.columnPaDiaMax = new global::System.Data.DataColumn("PaDiaMax", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPaDiaMax);
+ this.columnFrazEiez = new global::System.Data.DataColumn("FrazEiez", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFrazEiez);
+ this.columnTDI = new global::System.Data.DataColumn("TDI", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTDI);
+ this.columnPlaccheVas = new global::System.Data.DataColumn("PlaccheVas", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlaccheVas);
+ this.columnNoteCardio = new global::System.Data.DataColumn("NoteCardio", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNoteCardio);
+ this.columnPlaccheVas_Label = new global::System.Data.DataColumn("PlaccheVas_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlaccheVas_Label);
+ this.columnFamMCCV = new global::System.Data.DataColumn("FamMCCV", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFamMCCV);
+ this.columnFamMCCV_Label = new global::System.Data.DataColumn("FamMCCV_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFamMCCV_Label);
+ this.columnIpertens = new global::System.Data.DataColumn("Ipertens", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIpertens);
+ this.columnIpertens_Label = new global::System.Data.DataColumn("Ipertens_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIpertens_Label);
+ this.columnIpertensYtd = new global::System.Data.DataColumn("IpertensYtd", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIpertensYtd);
+ this.columnIpertensYtd_Label = new global::System.Data.DataColumn("IpertensYtd_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIpertensYtd_Label);
+ this.columnDiabete = new global::System.Data.DataColumn("Diabete", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDiabete);
+ this.columnDiabete_Label = new global::System.Data.DataColumn("Diabete_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDiabete_Label);
+ this.columnDiabeteYtd = new global::System.Data.DataColumn("DiabeteYtd", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDiabeteYtd);
+ this.columnDiabeteYtd_Label = new global::System.Data.DataColumn("DiabeteYtd_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDiabeteYtd_Label);
+ this.columnIpercolest = new global::System.Data.DataColumn("Ipercolest", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIpercolest);
+ this.columnIpercolest_Label = new global::System.Data.DataColumn("Ipercolest_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIpercolest_Label);
+ this.columnIpercolestYtd = new global::System.Data.DataColumn("IpercolestYtd", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIpercolestYtd);
+ this.columnIpercolestYtd_Label = new global::System.Data.DataColumn("IpercolestYtd_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIpercolestYtd_Label);
+ this.columnFumo = new global::System.Data.DataColumn("Fumo", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFumo);
+ this.columnFumo_Label = new global::System.Data.DataColumn("Fumo_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFumo_Label);
+ this.columnFumoYtd = new global::System.Data.DataColumn("FumoYtd", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFumoYtd);
+ this.columnFumoYtd_Label = new global::System.Data.DataColumn("FumoYtd_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFumoYtd_Label);
+ this.columnAlcool = new global::System.Data.DataColumn("Alcool", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnAlcool);
+ this.columnAlcool_Label = new global::System.Data.DataColumn("Alcool_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnAlcool_Label);
+ this.columnAlcoolYtd = new global::System.Data.DataColumn("AlcoolYtd", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnAlcoolYtd);
+ this.columnAlcoolYtd_Label = new global::System.Data.DataColumn("AlcoolYtd_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnAlcoolYtd_Label);
+ this.columnSovrapp = new global::System.Data.DataColumn("Sovrapp", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnSovrapp);
+ this.columnSovrapp_Label = new global::System.Data.DataColumn("Sovrapp_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnSovrapp_Label);
+ this.columnSovrappYtd = new global::System.Data.DataColumn("SovrappYtd", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnSovrappYtd);
+ this.columnSovrappYtd_Label = new global::System.Data.DataColumn("SovrappYtd_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnSovrappYtd_Label);
+ this.columnSedent = new global::System.Data.DataColumn("Sedent", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnSedent);
+ this.columnSedent_Label = new global::System.Data.DataColumn("Sedent_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnSedent_Label);
+ this.columnAdesTerap = new global::System.Data.DataColumn("AdesTerap", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnAdesTerap);
+ this.columnAdesTerap_Label = new global::System.Data.DataColumn("AdesTerap_Label", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnAdesTerap_Label);
+ this.columnNoteRelFin = new global::System.Data.DataColumn("NoteRelFin", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnNoteRelFin);
+ this.columnScore1 = new global::System.Data.DataColumn("Score1", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnScore1);
+ this.columnScore2 = new global::System.Data.DataColumn("Score2", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnScore2);
+ this.columnMedicoRef = new global::System.Data.DataColumn("MedicoRef", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMedicoRef);
+ this.columnIdxPaziente.ReadOnly = true;
+ this.columnDataVisita.ReadOnly = true;
+ this.columnGruppo.AllowDBNull = false;
+ this.columnGruppo.MaxLength = 5;
+ this.columnCognome.AllowDBNull = false;
+ this.columnCognome.MaxLength = 50;
+ this.columnNome.AllowDBNull = false;
+ this.columnNome.MaxLength = 50;
+ this.columnDataNasc.AllowDBNull = false;
+ this.columnLuogoNascita.AllowDBNull = false;
+ this.columnLuogoNascita.MaxLength = 50;
+ this.columnSesso.AllowDBNull = false;
+ this.columnSesso.MaxLength = 1;
+ this.columnCodF.AllowDBNull = false;
+ this.columnCodF.MaxLength = 20;
+ this.columnIndirizzo.AllowDBNull = false;
+ this.columnIndirizzo.MaxLength = 50;
+ this.columnEta.ReadOnly = true;
+ this.columnRecTel.AllowDBNull = false;
+ this.columnRecTel.MaxLength = 50;
+ this.columnMedico.AllowDBNull = false;
+ this.columnMedico.MaxLength = 50;
+ this.columnNotePaziente.AllowDBNull = false;
+ this.columnNotePaziente.MaxLength = 500;
+ this.columnColRapLDLHDL.ReadOnly = true;
+ this.columnGrassoTotPerc.ReadOnly = true;
+ this.columnGrassoTot.ReadOnly = true;
+ this.columnMassaMagraPerc.ReadOnly = true;
+ this.columnMassaMagraKgCm.ReadOnly = true;
+ this.columnBMI.ReadOnly = true;
+ this.columnMetBasaleDie.ReadOnly = true;
+ this.columnMetBasaleH.ReadOnly = true;
+ this.columnOreSonno.ReadOnly = true;
+ this.columnConsCalDie.ReadOnly = true;
+ this.columnScoreDietMed.ReadOnly = true;
+ this.columnNoteStileVita.MaxLength = 250;
+ this.columnLavoro_label.MaxLength = 50;
+ this.columnStileVita_label.MaxLength = 50;
+ this.columnFreqAll_label.MaxLength = 50;
+ this.columnMezzoTrasp_label.MaxLength = 50;
+ this.columnVerdure_label.MaxLength = 50;
+ this.columnLegumi_label.MaxLength = 50;
+ this.columnFrutta_label.MaxLength = 50;
+ this.columnNoci_label.MaxLength = 50;
+ this.columnCereali_label.MaxLength = 50;
+ this.columnPesce_label.MaxLength = 50;
+ this.columnGrassi_label.MaxLength = 50;
+ this.columnVino_label.MaxLength = 50;
+ this.columnCarneLatt_label.MaxLength = 50;
+ this.columnTestTMT_A_label.MaxLength = 50;
+ this.columnTestTMT_B_label.MaxLength = 50;
+ this.columnTestTMT_BA_label.MaxLength = 50;
+ this.columnTest15ParReyImm_label.MaxLength = 50;
+ this.columnTest15ParReyDif_label.MaxLength = 50;
+ this.columnApprSuSpanViSpa_label.MaxLength = 50;
+ this.columnStroopTestInterfErr_label.MaxLength = 50;
+ this.columnTestStimeCognErr_label.MaxLength = 50;
+ this.columnTestStimeCognBiz_label.MaxLength = 50;
+ this.columnTorreLondra_label.MaxLength = 50;
+ this.columnNoteCardio.MaxLength = 500;
+ this.columnPlaccheVas_Label.MaxLength = 50;
+ this.columnFamMCCV_Label.MaxLength = 50;
+ this.columnIpertens_Label.MaxLength = 50;
+ this.columnIpertensYtd_Label.MaxLength = 50;
+ this.columnDiabete_Label.MaxLength = 50;
+ this.columnDiabeteYtd_Label.MaxLength = 50;
+ this.columnIpercolest_Label.MaxLength = 50;
+ this.columnIpercolestYtd_Label.MaxLength = 50;
+ this.columnFumo_Label.MaxLength = 50;
+ this.columnFumoYtd_Label.MaxLength = 50;
+ this.columnAlcool_Label.MaxLength = 50;
+ this.columnAlcoolYtd_Label.MaxLength = 50;
+ this.columnSovrapp_Label.MaxLength = 50;
+ this.columnSovrappYtd_Label.MaxLength = 50;
+ this.columnSedent_Label.MaxLength = 50;
+ this.columnAdesTerap_Label.MaxLength = 50;
+ this.columnNoteRelFin.MaxLength = 4000;
+ this.columnMedicoRef.MaxLength = 50;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public stp_rep_DatiFullByPazienteDataRow Newstp_rep_DatiFullByPazienteDataRow() {
+ return ((stp_rep_DatiFullByPazienteDataRow)(this.NewRow()));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
+ return new stp_rep_DatiFullByPazienteDataRow(builder);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Type GetRowType() {
+ return typeof(stp_rep_DatiFullByPazienteDataRow);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanged(e);
+ if ((this.stp_rep_DatiFullByPazienteDataRowChanged != null)) {
+ this.stp_rep_DatiFullByPazienteDataRowChanged(this, new stp_rep_DatiFullByPazienteDataRowChangeEvent(((stp_rep_DatiFullByPazienteDataRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanging(e);
+ if ((this.stp_rep_DatiFullByPazienteDataRowChanging != null)) {
+ this.stp_rep_DatiFullByPazienteDataRowChanging(this, new stp_rep_DatiFullByPazienteDataRowChangeEvent(((stp_rep_DatiFullByPazienteDataRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleted(e);
+ if ((this.stp_rep_DatiFullByPazienteDataRowDeleted != null)) {
+ this.stp_rep_DatiFullByPazienteDataRowDeleted(this, new stp_rep_DatiFullByPazienteDataRowChangeEvent(((stp_rep_DatiFullByPazienteDataRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleting(e);
+ if ((this.stp_rep_DatiFullByPazienteDataRowDeleting != null)) {
+ this.stp_rep_DatiFullByPazienteDataRowDeleting(this, new stp_rep_DatiFullByPazienteDataRowChangeEvent(((stp_rep_DatiFullByPazienteDataRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void Removestp_rep_DatiFullByPazienteDataRow(stp_rep_DatiFullByPazienteDataRow row) {
+ this.Rows.Remove(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
+ global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
+ global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
+ DS_Applicazione ds = new DS_Applicazione();
+ global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
+ any1.Namespace = "http://www.w3.org/2001/XMLSchema";
+ any1.MinOccurs = new decimal(0);
+ any1.MaxOccurs = decimal.MaxValue;
+ any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any1);
+ global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
+ any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
+ any2.MinOccurs = new decimal(1);
+ any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any2);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute1.Name = "namespace";
+ attribute1.FixedValue = ds.Namespace;
+ type.Attributes.Add(attribute1);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute2.Name = "tableTypeName";
+ attribute2.FixedValue = "stp_rep_DatiFullByPazienteDataDataTable";
+ type.Attributes.Add(attribute2);
+ type.Particle = sequence;
+ global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
+ if (xs.Contains(dsSchema.TargetNamespace)) {
+ global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
+ global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
+ try {
+ global::System.Xml.Schema.XmlSchema schema = null;
+ dsSchema.Write(s1);
+ for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
+ schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
+ s2.SetLength(0);
+ schema.Write(s2);
+ if ((s1.Length == s2.Length)) {
+ s1.Position = 0;
+ s2.Position = 0;
+ for (; ((s1.Position != s1.Length)
+ && (s1.ReadByte() == s2.ReadByte())); ) {
+ ;
+ }
+ if ((s1.Position == s1.Length)) {
+ return type;
+ }
+ }
+ }
+ }
+ finally {
+ if ((s1 != null)) {
+ s1.Close();
+ }
+ if ((s2 != null)) {
+ s2.Close();
+ }
+ }
+ }
+ xs.Add(dsSchema);
+ return type;
+ }
+ }
+
+ ///
+ ///Represents the strongly named DataTable class.
+ ///
+ [global::System.Serializable()]
+ [global::System.Xml.Serialization.XmlSchemaProviderAttribute("GetTypedTableSchema")]
+ public partial class VisBioMecAntDataTable : global::System.Data.TypedTableBase {
+
+ private global::System.Data.DataColumn columnIdxPaziente;
+
+ private global::System.Data.DataColumn columnDataVisita;
+
+ private global::System.Data.DataColumn columnEta;
+
+ private global::System.Data.DataColumn columnSesso;
+
+ private global::System.Data.DataColumn columnAltezza;
+
+ private global::System.Data.DataColumn columnPeso;
+
+ private global::System.Data.DataColumn columnPlicaBicipite;
+
+ private global::System.Data.DataColumn columnPlicaTricipite;
+
+ private global::System.Data.DataColumn columnPlicaSottoscapola;
+
+ private global::System.Data.DataColumn columnPlicaPettorale;
+
+ private global::System.Data.DataColumn columnPlicaAddominale;
+
+ private global::System.Data.DataColumn columnPlicaSoprailiaca;
+
+ private global::System.Data.DataColumn columnPlicaCoscia;
+
+ private global::System.Data.DataColumn columnCirconfAvamb;
+
+ private global::System.Data.DataColumn columnCirconfVita;
+
+ private global::System.Data.DataColumn columnCirconfGlutei;
+
+ private global::System.Data.DataColumn columnCirconfQuadricipite;
+
+ private global::System.Data.DataColumn columnDensCorp;
+
+ private global::System.Data.DataColumn columnGrassoTroncoPerc;
+
+ private global::System.Data.DataColumn columnGrassoViscInd;
+
+ private global::System.Data.DataColumn columnTRomberg;
+
+ private global::System.Data.DataColumn columnTFukuda;
+
+ private global::System.Data.DataColumn columnTFukudaIpot;
+
+ private global::System.Data.DataColumn columnTGUG;
+
+ private global::System.Data.DataColumn columnTGUG1;
+
+ private global::System.Data.DataColumn columnFPrensile;
+
+ private global::System.Data.DataColumn columnGrassoTotPerc;
+
+ private global::System.Data.DataColumn columnGrassoTot;
+
+ private global::System.Data.DataColumn columnMassaMagraPerc;
+
+ private global::System.Data.DataColumn columnMassaMagraKgCm;
+
+ private global::System.Data.DataColumn columnBMI;
+
+ private global::System.Data.DataColumn columnMetBasaleDie;
+
+ private global::System.Data.DataColumn columnMetBasaleH;
+
+ private global::System.Data.DataColumn columnScoreFPrensile;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisBioMecAntDataTable() {
+ this.TableName = "VisBioMecAnt";
+ this.BeginInit();
+ this.InitClass();
+ this.EndInit();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal VisBioMecAntDataTable(global::System.Data.DataTable table) {
+ this.TableName = table.TableName;
+ if ((table.CaseSensitive != table.DataSet.CaseSensitive)) {
+ this.CaseSensitive = table.CaseSensitive;
+ }
+ if ((table.Locale.ToString() != table.DataSet.Locale.ToString())) {
+ this.Locale = table.Locale;
+ }
+ if ((table.Namespace != table.DataSet.Namespace)) {
+ this.Namespace = table.Namespace;
+ }
+ this.Prefix = table.Prefix;
+ this.MinimumCapacity = table.MinimumCapacity;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected VisBioMecAntDataTable(global::System.Runtime.Serialization.SerializationInfo info, global::System.Runtime.Serialization.StreamingContext context) :
+ base(info, context) {
+ this.InitVars();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn IdxPazienteColumn {
+ get {
+ return this.columnIdxPaziente;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DataVisitaColumn {
+ get {
+ return this.columnDataVisita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn EtaColumn {
+ get {
+ return this.columnEta;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn SessoColumn {
+ get {
+ return this.columnSesso;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn AltezzaColumn {
+ get {
+ return this.columnAltezza;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PesoColumn {
+ get {
+ return this.columnPeso;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlicaBicipiteColumn {
+ get {
+ return this.columnPlicaBicipite;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlicaTricipiteColumn {
+ get {
+ return this.columnPlicaTricipite;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlicaSottoscapolaColumn {
+ get {
+ return this.columnPlicaSottoscapola;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlicaPettoraleColumn {
+ get {
+ return this.columnPlicaPettorale;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlicaAddominaleColumn {
+ get {
+ return this.columnPlicaAddominale;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlicaSoprailiacaColumn {
+ get {
+ return this.columnPlicaSoprailiaca;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn PlicaCosciaColumn {
+ get {
+ return this.columnPlicaCoscia;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CirconfAvambColumn {
+ get {
+ return this.columnCirconfAvamb;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CirconfVitaColumn {
+ get {
+ return this.columnCirconfVita;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CirconfGluteiColumn {
+ get {
+ return this.columnCirconfGlutei;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn CirconfQuadricipiteColumn {
+ get {
+ return this.columnCirconfQuadricipite;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn DensCorpColumn {
+ get {
+ return this.columnDensCorp;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GrassoTroncoPercColumn {
+ get {
+ return this.columnGrassoTroncoPerc;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GrassoViscIndColumn {
+ get {
+ return this.columnGrassoViscInd;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TRombergColumn {
+ get {
+ return this.columnTRomberg;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TFukudaColumn {
+ get {
+ return this.columnTFukuda;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TFukudaIpotColumn {
+ get {
+ return this.columnTFukudaIpot;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TGUGColumn {
+ get {
+ return this.columnTGUG;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn TGUG1Column {
+ get {
+ return this.columnTGUG1;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn FPrensileColumn {
+ get {
+ return this.columnFPrensile;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GrassoTotPercColumn {
+ get {
+ return this.columnGrassoTotPerc;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn GrassoTotColumn {
+ get {
+ return this.columnGrassoTot;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MassaMagraPercColumn {
+ get {
+ return this.columnMassaMagraPerc;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MassaMagraKgCmColumn {
+ get {
+ return this.columnMassaMagraKgCm;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn BMIColumn {
+ get {
+ return this.columnBMI;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MetBasaleDieColumn {
+ get {
+ return this.columnMetBasaleDie;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn MetBasaleHColumn {
+ get {
+ return this.columnMetBasaleH;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataColumn ScoreFPrensileColumn {
+ get {
+ return this.columnScoreFPrensile;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Browsable(false)]
+ public int Count {
+ get {
+ return this.Rows.Count;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisBioMecAntRow this[int index] {
+ get {
+ return ((VisBioMecAntRow)(this.Rows[index]));
+ }
+ }
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisBioMecAntRowChangeEventHandler VisBioMecAntRowChanging;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisBioMecAntRowChangeEventHandler VisBioMecAntRowChanged;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisBioMecAntRowChangeEventHandler VisBioMecAntRowDeleting;
+
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public event VisBioMecAntRowChangeEventHandler VisBioMecAntRowDeleted;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void AddVisBioMecAntRow(VisBioMecAntRow row) {
+ this.Rows.Add(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisBioMecAntRow AddVisBioMecAntRow(
+ AnagPazientiRow parentAnagPazientiRowByAnagPazienti_v_VisBioMecAnt,
+ System.DateTime DataVisita,
+ double Eta,
+ string Sesso,
+ double Altezza,
+ double Peso,
+ double PlicaBicipite,
+ double PlicaTricipite,
+ double PlicaSottoscapola,
+ double PlicaPettorale,
+ double PlicaAddominale,
+ double PlicaSoprailiaca,
+ double PlicaCoscia,
+ double CirconfAvamb,
+ double CirconfVita,
+ double CirconfGlutei,
+ double CirconfQuadricipite,
+ double DensCorp,
+ double GrassoTroncoPerc,
+ double GrassoViscInd,
+ double TRomberg,
+ double TFukuda,
+ int TFukudaIpot,
+ double TGUG,
+ double TGUG1,
+ double FPrensile,
+ double GrassoTotPerc,
+ double GrassoTot,
+ double MassaMagraPerc,
+ double MassaMagraKgCm,
+ double BMI,
+ double MetBasaleDie,
+ double MetBasaleH,
+ string ScoreFPrensile) {
+ VisBioMecAntRow rowVisBioMecAntRow = ((VisBioMecAntRow)(this.NewRow()));
+ object[] columnValuesArray = new object[] {
+ null,
+ DataVisita,
+ Eta,
+ Sesso,
+ Altezza,
+ Peso,
+ PlicaBicipite,
+ PlicaTricipite,
+ PlicaSottoscapola,
+ PlicaPettorale,
+ PlicaAddominale,
+ PlicaSoprailiaca,
+ PlicaCoscia,
+ CirconfAvamb,
+ CirconfVita,
+ CirconfGlutei,
+ CirconfQuadricipite,
+ DensCorp,
+ GrassoTroncoPerc,
+ GrassoViscInd,
+ TRomberg,
+ TFukuda,
+ TFukudaIpot,
+ TGUG,
+ TGUG1,
+ FPrensile,
+ GrassoTotPerc,
+ GrassoTot,
+ MassaMagraPerc,
+ MassaMagraKgCm,
+ BMI,
+ MetBasaleDie,
+ MetBasaleH,
+ ScoreFPrensile};
+ if ((parentAnagPazientiRowByAnagPazienti_v_VisBioMecAnt != null)) {
+ columnValuesArray[0] = parentAnagPazientiRowByAnagPazienti_v_VisBioMecAnt[0];
+ }
+ rowVisBioMecAntRow.ItemArray = columnValuesArray;
+ this.Rows.Add(rowVisBioMecAntRow);
+ return rowVisBioMecAntRow;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisBioMecAntRow FindByIdxPazienteDataVisita(int IdxPaziente, System.DateTime DataVisita) {
+ return ((VisBioMecAntRow)(this.Rows.Find(new object[] {
+ IdxPaziente,
+ DataVisita})));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public override global::System.Data.DataTable Clone() {
+ VisBioMecAntDataTable cln = ((VisBioMecAntDataTable)(base.Clone()));
+ cln.InitVars();
+ return cln;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataTable CreateInstance() {
+ return new VisBioMecAntDataTable();
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal void InitVars() {
+ this.columnIdxPaziente = base.Columns["IdxPaziente"];
+ this.columnDataVisita = base.Columns["DataVisita"];
+ this.columnEta = base.Columns["Eta"];
+ this.columnSesso = base.Columns["Sesso"];
+ this.columnAltezza = base.Columns["Altezza"];
+ this.columnPeso = base.Columns["Peso"];
+ this.columnPlicaBicipite = base.Columns["PlicaBicipite"];
+ this.columnPlicaTricipite = base.Columns["PlicaTricipite"];
+ this.columnPlicaSottoscapola = base.Columns["PlicaSottoscapola"];
+ this.columnPlicaPettorale = base.Columns["PlicaPettorale"];
+ this.columnPlicaAddominale = base.Columns["PlicaAddominale"];
+ this.columnPlicaSoprailiaca = base.Columns["PlicaSoprailiaca"];
+ this.columnPlicaCoscia = base.Columns["PlicaCoscia"];
+ this.columnCirconfAvamb = base.Columns["CirconfAvamb"];
+ this.columnCirconfVita = base.Columns["CirconfVita"];
+ this.columnCirconfGlutei = base.Columns["CirconfGlutei"];
+ this.columnCirconfQuadricipite = base.Columns["CirconfQuadricipite"];
+ this.columnDensCorp = base.Columns["DensCorp"];
+ this.columnGrassoTroncoPerc = base.Columns["GrassoTroncoPerc"];
+ this.columnGrassoViscInd = base.Columns["GrassoViscInd"];
+ this.columnTRomberg = base.Columns["TRomberg"];
+ this.columnTFukuda = base.Columns["TFukuda"];
+ this.columnTFukudaIpot = base.Columns["TFukudaIpot"];
+ this.columnTGUG = base.Columns["TGUG"];
+ this.columnTGUG1 = base.Columns["TGUG1"];
+ this.columnFPrensile = base.Columns["FPrensile"];
+ this.columnGrassoTotPerc = base.Columns["GrassoTotPerc"];
+ this.columnGrassoTot = base.Columns["GrassoTot"];
+ this.columnMassaMagraPerc = base.Columns["MassaMagraPerc"];
+ this.columnMassaMagraKgCm = base.Columns["MassaMagraKgCm"];
+ this.columnBMI = base.Columns["BMI"];
+ this.columnMetBasaleDie = base.Columns["MetBasaleDie"];
+ this.columnMetBasaleH = base.Columns["MetBasaleH"];
+ this.columnScoreFPrensile = base.Columns["ScoreFPrensile"];
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitClass() {
+ this.columnIdxPaziente = new global::System.Data.DataColumn("IdxPaziente", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnIdxPaziente);
+ this.columnDataVisita = new global::System.Data.DataColumn("DataVisita", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDataVisita);
+ this.columnEta = new global::System.Data.DataColumn("Eta", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnEta);
+ this.columnSesso = new global::System.Data.DataColumn("Sesso", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnSesso);
+ this.columnAltezza = new global::System.Data.DataColumn("Altezza", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnAltezza);
+ this.columnPeso = new global::System.Data.DataColumn("Peso", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPeso);
+ this.columnPlicaBicipite = new global::System.Data.DataColumn("PlicaBicipite", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlicaBicipite);
+ this.columnPlicaTricipite = new global::System.Data.DataColumn("PlicaTricipite", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlicaTricipite);
+ this.columnPlicaSottoscapola = new global::System.Data.DataColumn("PlicaSottoscapola", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlicaSottoscapola);
+ this.columnPlicaPettorale = new global::System.Data.DataColumn("PlicaPettorale", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlicaPettorale);
+ this.columnPlicaAddominale = new global::System.Data.DataColumn("PlicaAddominale", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlicaAddominale);
+ this.columnPlicaSoprailiaca = new global::System.Data.DataColumn("PlicaSoprailiaca", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlicaSoprailiaca);
+ this.columnPlicaCoscia = new global::System.Data.DataColumn("PlicaCoscia", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnPlicaCoscia);
+ this.columnCirconfAvamb = new global::System.Data.DataColumn("CirconfAvamb", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCirconfAvamb);
+ this.columnCirconfVita = new global::System.Data.DataColumn("CirconfVita", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCirconfVita);
+ this.columnCirconfGlutei = new global::System.Data.DataColumn("CirconfGlutei", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCirconfGlutei);
+ this.columnCirconfQuadricipite = new global::System.Data.DataColumn("CirconfQuadricipite", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnCirconfQuadricipite);
+ this.columnDensCorp = new global::System.Data.DataColumn("DensCorp", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnDensCorp);
+ this.columnGrassoTroncoPerc = new global::System.Data.DataColumn("GrassoTroncoPerc", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGrassoTroncoPerc);
+ this.columnGrassoViscInd = new global::System.Data.DataColumn("GrassoViscInd", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGrassoViscInd);
+ this.columnTRomberg = new global::System.Data.DataColumn("TRomberg", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTRomberg);
+ this.columnTFukuda = new global::System.Data.DataColumn("TFukuda", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTFukuda);
+ this.columnTFukudaIpot = new global::System.Data.DataColumn("TFukudaIpot", typeof(int), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTFukudaIpot);
+ this.columnTGUG = new global::System.Data.DataColumn("TGUG", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTGUG);
+ this.columnTGUG1 = new global::System.Data.DataColumn("TGUG1", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnTGUG1);
+ this.columnFPrensile = new global::System.Data.DataColumn("FPrensile", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnFPrensile);
+ this.columnGrassoTotPerc = new global::System.Data.DataColumn("GrassoTotPerc", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGrassoTotPerc);
+ this.columnGrassoTot = new global::System.Data.DataColumn("GrassoTot", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnGrassoTot);
+ this.columnMassaMagraPerc = new global::System.Data.DataColumn("MassaMagraPerc", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMassaMagraPerc);
+ this.columnMassaMagraKgCm = new global::System.Data.DataColumn("MassaMagraKgCm", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMassaMagraKgCm);
+ this.columnBMI = new global::System.Data.DataColumn("BMI", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnBMI);
+ this.columnMetBasaleDie = new global::System.Data.DataColumn("MetBasaleDie", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMetBasaleDie);
+ this.columnMetBasaleH = new global::System.Data.DataColumn("MetBasaleH", typeof(double), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnMetBasaleH);
+ this.columnScoreFPrensile = new global::System.Data.DataColumn("ScoreFPrensile", typeof(string), null, global::System.Data.MappingType.Element);
+ base.Columns.Add(this.columnScoreFPrensile);
+ this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
+ this.columnIdxPaziente,
+ this.columnDataVisita}, true));
+ this.columnIdxPaziente.AllowDBNull = false;
+ this.columnDataVisita.AllowDBNull = false;
+ this.columnEta.ReadOnly = true;
+ this.columnSesso.AllowDBNull = false;
+ this.columnSesso.MaxLength = 1;
+ this.columnAltezza.AllowDBNull = false;
+ this.columnPeso.AllowDBNull = false;
+ this.columnPlicaBicipite.AllowDBNull = false;
+ this.columnPlicaTricipite.AllowDBNull = false;
+ this.columnPlicaSottoscapola.AllowDBNull = false;
+ this.columnPlicaPettorale.AllowDBNull = false;
+ this.columnPlicaAddominale.AllowDBNull = false;
+ this.columnPlicaSoprailiaca.AllowDBNull = false;
+ this.columnPlicaCoscia.AllowDBNull = false;
+ this.columnCirconfAvamb.AllowDBNull = false;
+ this.columnCirconfVita.AllowDBNull = false;
+ this.columnCirconfGlutei.AllowDBNull = false;
+ this.columnCirconfQuadricipite.AllowDBNull = false;
+ this.columnGrassoTroncoPerc.AllowDBNull = false;
+ this.columnGrassoViscInd.AllowDBNull = false;
+ this.columnTRomberg.AllowDBNull = false;
+ this.columnTFukuda.AllowDBNull = false;
+ this.columnTFukudaIpot.AllowDBNull = false;
+ this.columnTGUG.AllowDBNull = false;
+ this.columnTGUG1.AllowDBNull = false;
+ this.columnFPrensile.AllowDBNull = false;
+ this.columnGrassoTotPerc.ReadOnly = true;
+ this.columnGrassoTot.ReadOnly = true;
+ this.columnMassaMagraPerc.ReadOnly = true;
+ this.columnMassaMagraKgCm.ReadOnly = true;
+ this.columnBMI.ReadOnly = true;
+ this.columnMetBasaleDie.ReadOnly = true;
+ this.columnMetBasaleH.ReadOnly = true;
+ this.columnScoreFPrensile.ReadOnly = true;
+ this.columnScoreFPrensile.MaxLength = 50;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisBioMecAntRow NewVisBioMecAntRow() {
+ return ((VisBioMecAntRow)(this.NewRow()));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Data.DataRow NewRowFromBuilder(global::System.Data.DataRowBuilder builder) {
+ return new VisBioMecAntRow(builder);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override global::System.Type GetRowType() {
+ return typeof(VisBioMecAntRow);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanged(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanged(e);
+ if ((this.VisBioMecAntRowChanged != null)) {
+ this.VisBioMecAntRowChanged(this, new VisBioMecAntRowChangeEvent(((VisBioMecAntRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowChanging(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowChanging(e);
+ if ((this.VisBioMecAntRowChanging != null)) {
+ this.VisBioMecAntRowChanging(this, new VisBioMecAntRowChangeEvent(((VisBioMecAntRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleted(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleted(e);
+ if ((this.VisBioMecAntRowDeleted != null)) {
+ this.VisBioMecAntRowDeleted(this, new VisBioMecAntRowChangeEvent(((VisBioMecAntRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected override void OnRowDeleting(global::System.Data.DataRowChangeEventArgs e) {
+ base.OnRowDeleting(e);
+ if ((this.VisBioMecAntRowDeleting != null)) {
+ this.VisBioMecAntRowDeleting(this, new VisBioMecAntRowChangeEvent(((VisBioMecAntRow)(e.Row)), e.Action));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void RemoveVisBioMecAntRow(VisBioMecAntRow row) {
+ this.Rows.Remove(row);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public static global::System.Xml.Schema.XmlSchemaComplexType GetTypedTableSchema(global::System.Xml.Schema.XmlSchemaSet xs) {
+ global::System.Xml.Schema.XmlSchemaComplexType type = new global::System.Xml.Schema.XmlSchemaComplexType();
+ global::System.Xml.Schema.XmlSchemaSequence sequence = new global::System.Xml.Schema.XmlSchemaSequence();
+ DS_Applicazione ds = new DS_Applicazione();
+ global::System.Xml.Schema.XmlSchemaAny any1 = new global::System.Xml.Schema.XmlSchemaAny();
+ any1.Namespace = "http://www.w3.org/2001/XMLSchema";
+ any1.MinOccurs = new decimal(0);
+ any1.MaxOccurs = decimal.MaxValue;
+ any1.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any1);
+ global::System.Xml.Schema.XmlSchemaAny any2 = new global::System.Xml.Schema.XmlSchemaAny();
+ any2.Namespace = "urn:schemas-microsoft-com:xml-diffgram-v1";
+ any2.MinOccurs = new decimal(1);
+ any2.ProcessContents = global::System.Xml.Schema.XmlSchemaContentProcessing.Lax;
+ sequence.Items.Add(any2);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute1 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute1.Name = "namespace";
+ attribute1.FixedValue = ds.Namespace;
+ type.Attributes.Add(attribute1);
+ global::System.Xml.Schema.XmlSchemaAttribute attribute2 = new global::System.Xml.Schema.XmlSchemaAttribute();
+ attribute2.Name = "tableTypeName";
+ attribute2.FixedValue = "VisBioMecAntDataTable";
+ type.Attributes.Add(attribute2);
+ type.Particle = sequence;
+ global::System.Xml.Schema.XmlSchema dsSchema = ds.GetSchemaSerializable();
+ if (xs.Contains(dsSchema.TargetNamespace)) {
+ global::System.IO.MemoryStream s1 = new global::System.IO.MemoryStream();
+ global::System.IO.MemoryStream s2 = new global::System.IO.MemoryStream();
+ try {
+ global::System.Xml.Schema.XmlSchema schema = null;
+ dsSchema.Write(s1);
+ for (global::System.Collections.IEnumerator schemas = xs.Schemas(dsSchema.TargetNamespace).GetEnumerator(); schemas.MoveNext(); ) {
+ schema = ((global::System.Xml.Schema.XmlSchema)(schemas.Current));
+ s2.SetLength(0);
+ schema.Write(s2);
+ if ((s1.Length == s2.Length)) {
+ s1.Position = 0;
+ s2.Position = 0;
+ for (; ((s1.Position != s1.Length)
+ && (s1.ReadByte() == s2.ReadByte())); ) {
+ ;
+ }
+ if ((s1.Position == s1.Length)) {
+ return type;
+ }
+ }
+ }
+ }
+ finally {
+ if ((s1 != null)) {
+ s1.Close();
+ }
+ if ((s2 != null)) {
+ s2.Close();
+ }
+ }
+ }
+ xs.Add(dsSchema);
+ return type;
+ }
+ }
+
+ ///
+ ///Represents strongly named DataRow class.
+ ///
+ public partial class AnagPazientiRow : global::System.Data.DataRow {
+
+ private AnagPazientiDataTable tableAnagPazienti;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal AnagPazientiRow(global::System.Data.DataRowBuilder rb) :
+ base(rb) {
+ this.tableAnagPazienti = ((AnagPazientiDataTable)(this.Table));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int IdxPaziente {
+ get {
+ return ((int)(this[this.tableAnagPazienti.IdxPazienteColumn]));
+ }
+ set {
+ this[this.tableAnagPazienti.IdxPazienteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Gruppo {
+ get {
+ return ((string)(this[this.tableAnagPazienti.GruppoColumn]));
+ }
+ set {
+ this[this.tableAnagPazienti.GruppoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Cognome {
+ get {
+ return ((string)(this[this.tableAnagPazienti.CognomeColumn]));
+ }
+ set {
+ this[this.tableAnagPazienti.CognomeColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Nome {
+ get {
+ return ((string)(this[this.tableAnagPazienti.NomeColumn]));
+ }
+ set {
+ this[this.tableAnagPazienti.NomeColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public System.DateTime DataNasc {
+ get {
+ return ((global::System.DateTime)(this[this.tableAnagPazienti.DataNascColumn]));
+ }
+ set {
+ this[this.tableAnagPazienti.DataNascColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string LuogoNascita {
+ get {
+ return ((string)(this[this.tableAnagPazienti.LuogoNascitaColumn]));
+ }
+ set {
+ this[this.tableAnagPazienti.LuogoNascitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Sesso {
+ get {
+ return ((string)(this[this.tableAnagPazienti.SessoColumn]));
+ }
+ set {
+ this[this.tableAnagPazienti.SessoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string CodF {
+ get {
+ return ((string)(this[this.tableAnagPazienti.CodFColumn]));
+ }
+ set {
+ this[this.tableAnagPazienti.CodFColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Indirizzo {
+ get {
+ return ((string)(this[this.tableAnagPazienti.IndirizzoColumn]));
+ }
+ set {
+ this[this.tableAnagPazienti.IndirizzoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Eta {
+ get {
+ try {
+ return ((double)(this[this.tableAnagPazienti.EtaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Eta\' in table \'AnagPazienti\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableAnagPazienti.EtaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string RecTel {
+ get {
+ return ((string)(this[this.tableAnagPazienti.RecTelColumn]));
+ }
+ set {
+ this[this.tableAnagPazienti.RecTelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Medico {
+ get {
+ return ((string)(this[this.tableAnagPazienti.MedicoColumn]));
+ }
+ set {
+ this[this.tableAnagPazienti.MedicoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Note {
+ get {
+ return ((string)(this[this.tableAnagPazienti.NoteColumn]));
+ }
+ set {
+ this[this.tableAnagPazienti.NoteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsEtaNull() {
+ return this.IsNull(this.tableAnagPazienti.EtaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetEtaNull() {
+ this[this.tableAnagPazienti.EtaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisLabRow[] GetVisLabRows() {
+ if ((this.Table.ChildRelations["FK_VisClinGen_AnagPazienti"] == null)) {
+ return new VisLabRow[0];
+ }
+ else {
+ return ((VisLabRow[])(base.GetChildRows(this.Table.ChildRelations["FK_VisClinGen_AnagPazienti"])));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisAnamCliRow[] GetVisAnamCliRows() {
+ if ((this.Table.ChildRelations["FK_VisAnamCli_AnagPazienti"] == null)) {
+ return new VisAnamCliRow[0];
+ }
+ else {
+ return ((VisAnamCliRow[])(base.GetChildRows(this.Table.ChildRelations["FK_VisAnamCli_AnagPazienti"])));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisCardioPolRow[] GetVisCardioPolRows() {
+ if ((this.Table.ChildRelations["FK_VisCardioPol_AnagPazienti"] == null)) {
+ return new VisCardioPolRow[0];
+ }
+ else {
+ return ((VisCardioPolRow[])(base.GetChildRows(this.Table.ChildRelations["FK_VisCardioPol_AnagPazienti"])));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisPsicoRow[] GetVisPsicoRows() {
+ if ((this.Table.ChildRelations["FK_VisPsico_AnagPazienti"] == null)) {
+ return new VisPsicoRow[0];
+ }
+ else {
+ return ((VisPsicoRow[])(base.GetChildRows(this.Table.ChildRelations["FK_VisPsico_AnagPazienti"])));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisStileVitaRow[] GetVisStileVitaRows() {
+ if ((this.Table.ChildRelations["FK_VisStileVita_AnagPazienti"] == null)) {
+ return new VisStileVitaRow[0];
+ }
+ else {
+ return ((VisStileVitaRow[])(base.GetChildRows(this.Table.ChildRelations["FK_VisStileVita_AnagPazienti"])));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisRelazFinRow[] GetVisRelazFinRows() {
+ if ((this.Table.ChildRelations["FK_VisRelazFin_AnagPazienti"] == null)) {
+ return new VisRelazFinRow[0];
+ }
+ else {
+ return ((VisRelazFinRow[])(base.GetChildRows(this.Table.ChildRelations["FK_VisRelazFin_AnagPazienti"])));
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisBioMecAntRow[] GetVisBioMecAntRows() {
+ if ((this.Table.ChildRelations["AnagPazienti_v_VisBioMecAnt"] == null)) {
+ return new VisBioMecAntRow[0];
+ }
+ else {
+ return ((VisBioMecAntRow[])(base.GetChildRows(this.Table.ChildRelations["AnagPazienti_v_VisBioMecAnt"])));
+ }
+ }
+ }
+
+ ///
+ ///Represents strongly named DataRow class.
+ ///
+ public partial class ElencoVisiteRow : global::System.Data.DataRow {
+
+ private ElencoVisiteDataTable tableElencoVisite;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal ElencoVisiteRow(global::System.Data.DataRowBuilder rb) :
+ base(rb) {
+ this.tableElencoVisite = ((ElencoVisiteDataTable)(this.Table));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public System.DateTime DataVisita {
+ get {
+ return ((global::System.DateTime)(this[this.tableElencoVisite.DataVisitaColumn]));
+ }
+ set {
+ this[this.tableElencoVisite.DataVisitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int VAC {
+ get {
+ try {
+ return ((int)(this[this.tableElencoVisite.VACColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'VAC\' in table \'ElencoVisite\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableElencoVisite.VACColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int VBMA {
+ get {
+ try {
+ return ((int)(this[this.tableElencoVisite.VBMAColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'VBMA\' in table \'ElencoVisite\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableElencoVisite.VBMAColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int VCP {
+ get {
+ try {
+ return ((int)(this[this.tableElencoVisite.VCPColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'VCP\' in table \'ElencoVisite\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableElencoVisite.VCPColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int VL {
+ get {
+ try {
+ return ((int)(this[this.tableElencoVisite.VLColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'VL\' in table \'ElencoVisite\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableElencoVisite.VLColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int VP {
+ get {
+ try {
+ return ((int)(this[this.tableElencoVisite.VPColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'VP\' in table \'ElencoVisite\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableElencoVisite.VPColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int VSV {
+ get {
+ try {
+ return ((int)(this[this.tableElencoVisite.VSVColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'VSV\' in table \'ElencoVisite\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableElencoVisite.VSVColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int VRF {
+ get {
+ try {
+ return ((int)(this[this.tableElencoVisite.VRFColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'VRF\' in table \'ElencoVisite\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableElencoVisite.VRFColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsVACNull() {
+ return this.IsNull(this.tableElencoVisite.VACColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetVACNull() {
+ this[this.tableElencoVisite.VACColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsVBMANull() {
+ return this.IsNull(this.tableElencoVisite.VBMAColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetVBMANull() {
+ this[this.tableElencoVisite.VBMAColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsVCPNull() {
+ return this.IsNull(this.tableElencoVisite.VCPColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetVCPNull() {
+ this[this.tableElencoVisite.VCPColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsVLNull() {
+ return this.IsNull(this.tableElencoVisite.VLColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetVLNull() {
+ this[this.tableElencoVisite.VLColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsVPNull() {
+ return this.IsNull(this.tableElencoVisite.VPColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetVPNull() {
+ this[this.tableElencoVisite.VPColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsVSVNull() {
+ return this.IsNull(this.tableElencoVisite.VSVColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetVSVNull() {
+ this[this.tableElencoVisite.VSVColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsVRFNull() {
+ return this.IsNull(this.tableElencoVisite.VRFColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetVRFNull() {
+ this[this.tableElencoVisite.VRFColumn] = global::System.Convert.DBNull;
+ }
+ }
+
+ ///
+ ///Represents strongly named DataRow class.
+ ///
+ public partial class VisLabRow : global::System.Data.DataRow {
+
+ private VisLabDataTable tableVisLab;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal VisLabRow(global::System.Data.DataRowBuilder rb) :
+ base(rb) {
+ this.tableVisLab = ((VisLabDataTable)(this.Table));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int IdxPaziente {
+ get {
+ return ((int)(this[this.tableVisLab.IdxPazienteColumn]));
+ }
+ set {
+ this[this.tableVisLab.IdxPazienteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public System.DateTime DataVisita {
+ get {
+ return ((global::System.DateTime)(this[this.tableVisLab.DataVisitaColumn]));
+ }
+ set {
+ this[this.tableVisLab.DataVisitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Glicemia {
+ get {
+ return ((double)(this[this.tableVisLab.GlicemiaColumn]));
+ }
+ set {
+ this[this.tableVisLab.GlicemiaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double EmoglGlicata {
+ get {
+ return ((double)(this[this.tableVisLab.EmoglGlicataColumn]));
+ }
+ set {
+ this[this.tableVisLab.EmoglGlicataColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double ColesTot {
+ get {
+ return ((double)(this[this.tableVisLab.ColesTotColumn]));
+ }
+ set {
+ this[this.tableVisLab.ColesTotColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double LDL {
+ get {
+ return ((double)(this[this.tableVisLab.LDLColumn]));
+ }
+ set {
+ this[this.tableVisLab.LDLColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double HDL {
+ get {
+ return ((double)(this[this.tableVisLab.HDLColumn]));
+ }
+ set {
+ this[this.tableVisLab.HDLColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Trigliceridi {
+ get {
+ return ((double)(this[this.tableVisLab.TrigliceridiColumn]));
+ }
+ set {
+ this[this.tableVisLab.TrigliceridiColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double ColRapLDLHDL {
+ get {
+ try {
+ return ((double)(this[this.tableVisLab.ColRapLDLHDLColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'ColRapLDLHDL\' in table \'VisLab\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisLab.ColRapLDLHDLColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Omocisteina {
+ get {
+ return ((double)(this[this.tableVisLab.OmocisteinaColumn]));
+ }
+ set {
+ this[this.tableVisLab.OmocisteinaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double MHTFR {
+ get {
+ return ((double)(this[this.tableVisLab.MHTFRColumn]));
+ }
+ set {
+ this[this.tableVisLab.MHTFRColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double FattII {
+ get {
+ return ((double)(this[this.tableVisLab.FattIIColumn]));
+ }
+ set {
+ this[this.tableVisLab.FattIIColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double FattV {
+ get {
+ return ((double)(this[this.tableVisLab.FattVColumn]));
+ }
+ set {
+ this[this.tableVisLab.FattVColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double GradTransm {
+ get {
+ return ((double)(this[this.tableVisLab.GradTransmColumn]));
+ }
+ set {
+ this[this.tableVisLab.GradTransmColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double LungTelom {
+ get {
+ return ((double)(this[this.tableVisLab.LungTelomColumn]));
+ }
+ set {
+ this[this.tableVisLab.LungTelomColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double RespSilenz {
+ get {
+ return ((double)(this[this.tableVisLab.RespSilenzColumn]));
+ }
+ set {
+ this[this.tableVisLab.RespSilenzColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Folatemia {
+ get {
+ return ((double)(this[this.tableVisLab.FolatemiaColumn]));
+ }
+ set {
+ this[this.tableVisLab.FolatemiaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiRow AnagPazientiRow {
+ get {
+ return ((AnagPazientiRow)(this.GetParentRow(this.Table.ParentRelations["FK_VisClinGen_AnagPazienti"])));
+ }
+ set {
+ this.SetParentRow(value, this.Table.ParentRelations["FK_VisClinGen_AnagPazienti"]);
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsColRapLDLHDLNull() {
+ return this.IsNull(this.tableVisLab.ColRapLDLHDLColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetColRapLDLHDLNull() {
+ this[this.tableVisLab.ColRapLDLHDLColumn] = global::System.Convert.DBNull;
+ }
+ }
+
+ ///
+ ///Represents strongly named DataRow class.
+ ///
+ public partial class VisAnamCliRow : global::System.Data.DataRow {
+
+ private VisAnamCliDataTable tableVisAnamCli;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal VisAnamCliRow(global::System.Data.DataRowBuilder rb) :
+ base(rb) {
+ this.tableVisAnamCli = ((VisAnamCliDataTable)(this.Table));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int IdxPaziente {
+ get {
+ return ((int)(this[this.tableVisAnamCli.IdxPazienteColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.IdxPazienteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public System.DateTime DataVisita {
+ get {
+ return ((global::System.DateTime)(this[this.tableVisAnamCli.DataVisitaColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.DataVisitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int FamMCCV {
+ get {
+ return ((int)(this[this.tableVisAnamCli.FamMCCVColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.FamMCCVColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Ipertens {
+ get {
+ return ((int)(this[this.tableVisAnamCli.IpertensColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.IpertensColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int IpertensYtd {
+ get {
+ return ((int)(this[this.tableVisAnamCli.IpertensYtdColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.IpertensYtdColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Diabete {
+ get {
+ return ((int)(this[this.tableVisAnamCli.DiabeteColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.DiabeteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int DiabeteYtd {
+ get {
+ return ((int)(this[this.tableVisAnamCli.DiabeteYtdColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.DiabeteYtdColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Ipercolest {
+ get {
+ return ((int)(this[this.tableVisAnamCli.IpercolestColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.IpercolestColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int IpercolestYtd {
+ get {
+ return ((int)(this[this.tableVisAnamCli.IpercolestYtdColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.IpercolestYtdColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Fumo {
+ get {
+ return ((int)(this[this.tableVisAnamCli.FumoColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.FumoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int FumoYtd {
+ get {
+ return ((int)(this[this.tableVisAnamCli.FumoYtdColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.FumoYtdColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Alcool {
+ get {
+ return ((int)(this[this.tableVisAnamCli.AlcoolColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.AlcoolColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int AlcoolYtd {
+ get {
+ return ((int)(this[this.tableVisAnamCli.AlcoolYtdColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.AlcoolYtdColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Sovrapp {
+ get {
+ return ((int)(this[this.tableVisAnamCli.SovrappColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.SovrappColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int SovrappYtd {
+ get {
+ return ((int)(this[this.tableVisAnamCli.SovrappYtdColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.SovrappYtdColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Sedent {
+ get {
+ return ((int)(this[this.tableVisAnamCli.SedentColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.SedentColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int AdesTerap {
+ get {
+ return ((int)(this[this.tableVisAnamCli.AdesTerapColumn]));
+ }
+ set {
+ this[this.tableVisAnamCli.AdesTerapColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiRow AnagPazientiRow {
+ get {
+ return ((AnagPazientiRow)(this.GetParentRow(this.Table.ParentRelations["FK_VisAnamCli_AnagPazienti"])));
+ }
+ set {
+ this.SetParentRow(value, this.Table.ParentRelations["FK_VisAnamCli_AnagPazienti"]);
+ }
+ }
+ }
+
+ ///
+ ///Represents strongly named DataRow class.
+ ///
+ public partial class VisCardioPolRow : global::System.Data.DataRow {
+
+ private VisCardioPolDataTable tableVisCardioPol;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal VisCardioPolRow(global::System.Data.DataRowBuilder rb) :
+ base(rb) {
+ this.tableVisCardioPol = ((VisCardioPolDataTable)(this.Table));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int IdxPaziente {
+ get {
+ return ((int)(this[this.tableVisCardioPol.IdxPazienteColumn]));
+ }
+ set {
+ this[this.tableVisCardioPol.IdxPazienteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public System.DateTime DataVisita {
+ get {
+ return ((global::System.DateTime)(this[this.tableVisCardioPol.DataVisitaColumn]));
+ }
+ set {
+ this[this.tableVisCardioPol.DataVisitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int PaSis {
+ get {
+ return ((int)(this[this.tableVisCardioPol.PaSisColumn]));
+ }
+ set {
+ this[this.tableVisCardioPol.PaSisColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int PaDia {
+ get {
+ return ((int)(this[this.tableVisCardioPol.PaDiaColumn]));
+ }
+ set {
+ this[this.tableVisCardioPol.PaDiaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double QR1 {
+ get {
+ return ((double)(this[this.tableVisCardioPol.QR1Column]));
+ }
+ set {
+ this[this.tableVisCardioPol.QR1Column] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double QR1_Kg {
+ get {
+ try {
+ return ((double)(this[this.tableVisCardioPol.QR1_KgColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'QR1_Kg\' in table \'VisCardioPol\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisCardioPol.QR1_KgColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double VO2 {
+ get {
+ try {
+ return ((double)(this[this.tableVisCardioPol.VO2Column]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'VO2\' in table \'VisCardioPol\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisCardioPol.VO2Column] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double VO2_Kg {
+ get {
+ return ((double)(this[this.tableVisCardioPol.VO2_KgColumn]));
+ }
+ set {
+ this[this.tableVisCardioPol.VO2_KgColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int FC_QR1 {
+ get {
+ return ((int)(this[this.tableVisCardioPol.FC_QR1Column]));
+ }
+ set {
+ this[this.tableVisCardioPol.FC_QR1Column] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PolsoO2 {
+ get {
+ try {
+ return ((double)(this[this.tableVisCardioPol.PolsoO2Column]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PolsoO2\' in table \'VisCardioPol\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisCardioPol.PolsoO2Column] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int PaSisMax {
+ get {
+ return ((int)(this[this.tableVisCardioPol.PaSisMaxColumn]));
+ }
+ set {
+ this[this.tableVisCardioPol.PaSisMaxColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int PaDiaMax {
+ get {
+ return ((int)(this[this.tableVisCardioPol.PaDiaMaxColumn]));
+ }
+ set {
+ this[this.tableVisCardioPol.PaDiaMaxColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double FrazEiez {
+ get {
+ return ((double)(this[this.tableVisCardioPol.FrazEiezColumn]));
+ }
+ set {
+ this[this.tableVisCardioPol.FrazEiezColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double TDI {
+ get {
+ return ((double)(this[this.tableVisCardioPol.TDIColumn]));
+ }
+ set {
+ this[this.tableVisCardioPol.TDIColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlaccheVas {
+ get {
+ return ((double)(this[this.tableVisCardioPol.PlaccheVasColumn]));
+ }
+ set {
+ this[this.tableVisCardioPol.PlaccheVasColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Note {
+ get {
+ return ((string)(this[this.tableVisCardioPol.NoteColumn]));
+ }
+ set {
+ this[this.tableVisCardioPol.NoteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiRow AnagPazientiRow {
+ get {
+ return ((AnagPazientiRow)(this.GetParentRow(this.Table.ParentRelations["FK_VisCardioPol_AnagPazienti"])));
+ }
+ set {
+ this.SetParentRow(value, this.Table.ParentRelations["FK_VisCardioPol_AnagPazienti"]);
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsQR1_KgNull() {
+ return this.IsNull(this.tableVisCardioPol.QR1_KgColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetQR1_KgNull() {
+ this[this.tableVisCardioPol.QR1_KgColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsVO2Null() {
+ return this.IsNull(this.tableVisCardioPol.VO2Column);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetVO2Null() {
+ this[this.tableVisCardioPol.VO2Column] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPolsoO2Null() {
+ return this.IsNull(this.tableVisCardioPol.PolsoO2Column);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPolsoO2Null() {
+ this[this.tableVisCardioPol.PolsoO2Column] = global::System.Convert.DBNull;
+ }
+ }
+
+ ///
+ ///Represents strongly named DataRow class.
+ ///
+ public partial class VisPsicoRow : global::System.Data.DataRow {
+
+ private VisPsicoDataTable tableVisPsico;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal VisPsicoRow(global::System.Data.DataRowBuilder rb) :
+ base(rb) {
+ this.tableVisPsico = ((VisPsicoDataTable)(this.Table));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int IdxPaziente {
+ get {
+ return ((int)(this[this.tableVisPsico.IdxPazienteColumn]));
+ }
+ set {
+ this[this.tableVisPsico.IdxPazienteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public System.DateTime DataVisita {
+ get {
+ return ((global::System.DateTime)(this[this.tableVisPsico.DataVisitaColumn]));
+ }
+ set {
+ this[this.tableVisPsico.DataVisitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Test15ParReyImm {
+ get {
+ return ((int)(this[this.tableVisPsico.Test15ParReyImmColumn]));
+ }
+ set {
+ this[this.tableVisPsico.Test15ParReyImmColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Test15ParReyDif {
+ get {
+ return ((int)(this[this.tableVisPsico.Test15ParReyDifColumn]));
+ }
+ set {
+ this[this.tableVisPsico.Test15ParReyDifColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int FigComplRey_Copia {
+ get {
+ return ((int)(this[this.tableVisPsico.FigComplRey_CopiaColumn]));
+ }
+ set {
+ this[this.tableVisPsico.FigComplRey_CopiaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int FigComplRey_RipDiff {
+ get {
+ return ((int)(this[this.tableVisPsico.FigComplRey_RipDiffColumn]));
+ }
+ set {
+ this[this.tableVisPsico.FigComplRey_RipDiffColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int StroopTestInterfErr {
+ get {
+ return ((int)(this[this.tableVisPsico.StroopTestInterfErrColumn]));
+ }
+ set {
+ this[this.tableVisPsico.StroopTestInterfErrColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int StroopTestInterfTemp {
+ get {
+ return ((int)(this[this.tableVisPsico.StroopTestInterfTempColumn]));
+ }
+ set {
+ this[this.tableVisPsico.StroopTestInterfTempColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiRow AnagPazientiRow {
+ get {
+ return ((AnagPazientiRow)(this.GetParentRow(this.Table.ParentRelations["FK_VisPsico_AnagPazienti"])));
+ }
+ set {
+ this.SetParentRow(value, this.Table.ParentRelations["FK_VisPsico_AnagPazienti"]);
+ }
+ }
+ }
+
+ ///
+ ///Represents strongly named DataRow class.
+ ///
+ public partial class VisStileVitaRow : global::System.Data.DataRow {
+
+ private VisStileVitaDataTable tableVisStileVita;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal VisStileVitaRow(global::System.Data.DataRowBuilder rb) :
+ base(rb) {
+ this.tableVisStileVita = ((VisStileVitaDataTable)(this.Table));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int IdxPaziente {
+ get {
+ return ((int)(this[this.tableVisStileVita.IdxPazienteColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.IdxPazienteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public System.DateTime DataVisita {
+ get {
+ return ((global::System.DateTime)(this[this.tableVisStileVita.DataVisitaColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.DataVisitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Eta {
+ get {
+ try {
+ return ((double)(this[this.tableVisStileVita.EtaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Eta\' in table \'VisStileVita\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisStileVita.EtaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Sesso {
+ get {
+ return ((string)(this[this.tableVisStileVita.SessoColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.SessoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Lavoro {
+ get {
+ return ((int)(this[this.tableVisStileVita.LavoroColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.LavoroColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int StileVita {
+ get {
+ return ((int)(this[this.tableVisStileVita.StileVitaColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.StileVitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int FreqAll {
+ get {
+ return ((int)(this[this.tableVisStileVita.FreqAllColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.FreqAllColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int MezzoTrasp {
+ get {
+ return ((int)(this[this.tableVisStileVita.MezzoTraspColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.MezzoTraspColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int ScoreAttiv {
+ get {
+ try {
+ return ((int)(this[this.tableVisStileVita.ScoreAttivColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'ScoreAttiv\' in table \'VisStileVita\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisStileVita.ScoreAttivColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double MET_Lavoro {
+ get {
+ return ((double)(this[this.tableVisStileVita.MET_LavoroColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.MET_LavoroColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double MET_AttFisica {
+ get {
+ return ((double)(this[this.tableVisStileVita.MET_AttFisicaColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.MET_AttFisicaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreSonno {
+ get {
+ try {
+ return ((double)(this[this.tableVisStileVita.OreSonnoColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'OreSonno\' in table \'VisStileVita\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisStileVita.OreSonnoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreSeduto {
+ get {
+ return ((double)(this[this.tableVisStileVita.OreSedutoColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.OreSedutoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OrePasti {
+ get {
+ return ((double)(this[this.tableVisStileVita.OrePastiColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.OrePastiColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreSpostAuto {
+ get {
+ return ((double)(this[this.tableVisStileVita.OreSpostAutoColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.OreSpostAutoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreSpostAtt {
+ get {
+ return ((double)(this[this.tableVisStileVita.OreSpostAttColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.OreSpostAttColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreLavoro {
+ get {
+ return ((double)(this[this.tableVisStileVita.OreLavoroColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.OreLavoroColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreIgiene {
+ get {
+ return ((double)(this[this.tableVisStileVita.OreIgieneColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.OreIgieneColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreAttFisica {
+ get {
+ return ((double)(this[this.tableVisStileVita.OreAttFisicaColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.OreAttFisicaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OrePulizia {
+ get {
+ return ((double)(this[this.tableVisStileVita.OrePuliziaColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.OrePuliziaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreCane {
+ get {
+ return ((double)(this[this.tableVisStileVita.OreCaneColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.OreCaneColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double ConsCalDie {
+ get {
+ try {
+ return ((double)(this[this.tableVisStileVita.ConsCalDieColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'ConsCalDie\' in table \'VisStileVita\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisStileVita.ConsCalDieColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Verdure {
+ get {
+ return ((int)(this[this.tableVisStileVita.VerdureColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.VerdureColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Legumi {
+ get {
+ return ((int)(this[this.tableVisStileVita.LegumiColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.LegumiColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Frutta {
+ get {
+ return ((int)(this[this.tableVisStileVita.FruttaColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.FruttaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Noci {
+ get {
+ return ((int)(this[this.tableVisStileVita.NociColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.NociColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Cereali {
+ get {
+ return ((int)(this[this.tableVisStileVita.CerealiColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.CerealiColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Pesce {
+ get {
+ return ((int)(this[this.tableVisStileVita.PesceColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.PesceColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Grassi {
+ get {
+ return ((int)(this[this.tableVisStileVita.GrassiColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.GrassiColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Vino {
+ get {
+ return ((int)(this[this.tableVisStileVita.VinoColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.VinoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int CarneLatt {
+ get {
+ return ((int)(this[this.tableVisStileVita.CarneLattColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.CarneLattColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int ScoreDietMed {
+ get {
+ try {
+ return ((int)(this[this.tableVisStileVita.ScoreDietMedColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'ScoreDietMed\' in table \'VisStileVita\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisStileVita.ScoreDietMedColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Note {
+ get {
+ return ((string)(this[this.tableVisStileVita.NoteColumn]));
+ }
+ set {
+ this[this.tableVisStileVita.NoteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Peso {
+ get {
+ try {
+ return ((double)(this[this.tableVisStileVita.PesoColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Peso\' in table \'VisStileVita\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisStileVita.PesoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiRow AnagPazientiRow {
+ get {
+ return ((AnagPazientiRow)(this.GetParentRow(this.Table.ParentRelations["FK_VisStileVita_AnagPazienti"])));
+ }
+ set {
+ this.SetParentRow(value, this.Table.ParentRelations["FK_VisStileVita_AnagPazienti"]);
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsEtaNull() {
+ return this.IsNull(this.tableVisStileVita.EtaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetEtaNull() {
+ this[this.tableVisStileVita.EtaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsScoreAttivNull() {
+ return this.IsNull(this.tableVisStileVita.ScoreAttivColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetScoreAttivNull() {
+ this[this.tableVisStileVita.ScoreAttivColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsOreSonnoNull() {
+ return this.IsNull(this.tableVisStileVita.OreSonnoColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetOreSonnoNull() {
+ this[this.tableVisStileVita.OreSonnoColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsConsCalDieNull() {
+ return this.IsNull(this.tableVisStileVita.ConsCalDieColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetConsCalDieNull() {
+ this[this.tableVisStileVita.ConsCalDieColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsScoreDietMedNull() {
+ return this.IsNull(this.tableVisStileVita.ScoreDietMedColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetScoreDietMedNull() {
+ this[this.tableVisStileVita.ScoreDietMedColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPesoNull() {
+ return this.IsNull(this.tableVisStileVita.PesoColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPesoNull() {
+ this[this.tableVisStileVita.PesoColumn] = global::System.Convert.DBNull;
+ }
+ }
+
+ ///
+ ///Represents strongly named DataRow class.
+ ///
+ public partial class VisRelazFinRow : global::System.Data.DataRow {
+
+ private VisRelazFinDataTable tableVisRelazFin;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal VisRelazFinRow(global::System.Data.DataRowBuilder rb) :
+ base(rb) {
+ this.tableVisRelazFin = ((VisRelazFinDataTable)(this.Table));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int IdxPaziente {
+ get {
+ return ((int)(this[this.tableVisRelazFin.IdxPazienteColumn]));
+ }
+ set {
+ this[this.tableVisRelazFin.IdxPazienteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public System.DateTime DataVisita {
+ get {
+ return ((global::System.DateTime)(this[this.tableVisRelazFin.DataVisitaColumn]));
+ }
+ set {
+ this[this.tableVisRelazFin.DataVisitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Note {
+ get {
+ return ((string)(this[this.tableVisRelazFin.NoteColumn]));
+ }
+ set {
+ this[this.tableVisRelazFin.NoteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Score1 {
+ get {
+ return ((double)(this[this.tableVisRelazFin.Score1Column]));
+ }
+ set {
+ this[this.tableVisRelazFin.Score1Column] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Score2 {
+ get {
+ return ((double)(this[this.tableVisRelazFin.Score2Column]));
+ }
+ set {
+ this[this.tableVisRelazFin.Score2Column] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiRow AnagPazientiRow {
+ get {
+ return ((AnagPazientiRow)(this.GetParentRow(this.Table.ParentRelations["FK_VisRelazFin_AnagPazienti"])));
+ }
+ set {
+ this.SetParentRow(value, this.Table.ParentRelations["FK_VisRelazFin_AnagPazienti"]);
+ }
+ }
+ }
+
+ ///
+ ///Represents strongly named DataRow class.
+ ///
+ public partial class stp_rep_DatiFullByPazienteDataRow : global::System.Data.DataRow {
+
+ private stp_rep_DatiFullByPazienteDataDataTable tablestp_rep_DatiFullByPazienteData;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal stp_rep_DatiFullByPazienteDataRow(global::System.Data.DataRowBuilder rb) :
+ base(rb) {
+ this.tablestp_rep_DatiFullByPazienteData = ((stp_rep_DatiFullByPazienteDataDataTable)(this.Table));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int IdxPaziente {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.IdxPazienteColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'IdxPaziente\' in table \'stp_rep_DatiFullByPazienteData\' is D" +
+ "BNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.IdxPazienteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public System.DateTime DataVisita {
+ get {
+ try {
+ return ((global::System.DateTime)(this[this.tablestp_rep_DatiFullByPazienteData.DataVisitaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'DataVisita\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.DataVisitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Gruppo {
+ get {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.GruppoColumn]));
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.GruppoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Cognome {
+ get {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.CognomeColumn]));
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.CognomeColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Nome {
+ get {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.NomeColumn]));
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.NomeColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public System.DateTime DataNasc {
+ get {
+ return ((global::System.DateTime)(this[this.tablestp_rep_DatiFullByPazienteData.DataNascColumn]));
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.DataNascColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string LuogoNascita {
+ get {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.LuogoNascitaColumn]));
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.LuogoNascitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Sesso {
+ get {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.SessoColumn]));
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.SessoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string CodF {
+ get {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.CodFColumn]));
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.CodFColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Indirizzo {
+ get {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.IndirizzoColumn]));
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.IndirizzoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Eta {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.EtaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Eta\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.EtaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string RecTel {
+ get {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.RecTelColumn]));
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.RecTelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Medico {
+ get {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.MedicoColumn]));
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.MedicoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string NotePaziente {
+ get {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.NotePazienteColumn]));
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.NotePazienteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Glicemia {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.GlicemiaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Glicemia\' in table \'stp_rep_DatiFullByPazienteData\' is DBNu" +
+ "ll.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.GlicemiaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double EmoglGlicata {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.EmoglGlicataColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'EmoglGlicata\' in table \'stp_rep_DatiFullByPazienteData\' is " +
+ "DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.EmoglGlicataColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double ColesTot {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.ColesTotColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'ColesTot\' in table \'stp_rep_DatiFullByPazienteData\' is DBNu" +
+ "ll.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.ColesTotColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double LDL {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.LDLColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'LDL\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.LDLColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double HDL {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.HDLColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'HDL\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.HDLColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Trigliceridi {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.TrigliceridiColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Trigliceridi\' in table \'stp_rep_DatiFullByPazienteData\' is " +
+ "DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TrigliceridiColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double ColRapLDLHDL {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.ColRapLDLHDLColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'ColRapLDLHDL\' in table \'stp_rep_DatiFullByPazienteData\' is " +
+ "DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.ColRapLDLHDLColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Omocisteina {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.OmocisteinaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Omocisteina\' in table \'stp_rep_DatiFullByPazienteData\' is D" +
+ "BNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.OmocisteinaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double MHTFR {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.MHTFRColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'MHTFR\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull." +
+ "", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.MHTFRColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double FattII {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.FattIIColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'FattII\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull" +
+ ".", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.FattIIColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double FattV {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.FattVColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'FattV\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull." +
+ "", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.FattVColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double GradTransm {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.GradTransmColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'GradTransm\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.GradTransmColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double LungTelom {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.LungTelomColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'LungTelom\' in table \'stp_rep_DatiFullByPazienteData\' is DBN" +
+ "ull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.LungTelomColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double RespSilenz {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.RespSilenzColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'RespSilenz\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.RespSilenzColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Altezza {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.AltezzaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Altezza\' in table \'stp_rep_DatiFullByPazienteData\' is DBNul" +
+ "l.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.AltezzaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Peso {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.PesoColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Peso\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PesoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlicaBicipite {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.PlicaBicipiteColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PlicaBicipite\' in table \'stp_rep_DatiFullByPazienteData\' is" +
+ " DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlicaBicipiteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlicaTricipite {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.PlicaTricipiteColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PlicaTricipite\' in table \'stp_rep_DatiFullByPazienteData\' i" +
+ "s DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlicaTricipiteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlicaSottoscapola {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.PlicaSottoscapolaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PlicaSottoscapola\' in table \'stp_rep_DatiFullByPazienteData" +
+ "\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlicaSottoscapolaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlicaPettorale {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.PlicaPettoraleColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PlicaPettorale\' in table \'stp_rep_DatiFullByPazienteData\' i" +
+ "s DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlicaPettoraleColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlicaAddominale {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.PlicaAddominaleColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PlicaAddominale\' in table \'stp_rep_DatiFullByPazienteData\' " +
+ "is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlicaAddominaleColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlicaSoprailiaca {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.PlicaSoprailiacaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PlicaSoprailiaca\' in table \'stp_rep_DatiFullByPazienteData\'" +
+ " is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlicaSoprailiacaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlicaCoscia {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.PlicaCosciaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PlicaCoscia\' in table \'stp_rep_DatiFullByPazienteData\' is D" +
+ "BNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlicaCosciaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double CirconfVitaGlutei {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.CirconfVitaGluteiColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'CirconfVitaGlutei\' in table \'stp_rep_DatiFullByPazienteData" +
+ "\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.CirconfVitaGluteiColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double CirconfAvamb {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.CirconfAvambColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'CirconfAvamb\' in table \'stp_rep_DatiFullByPazienteData\' is " +
+ "DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.CirconfAvambColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double GrassoTroncoPerc {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.GrassoTroncoPercColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'GrassoTroncoPerc\' in table \'stp_rep_DatiFullByPazienteData\'" +
+ " is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.GrassoTroncoPercColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double GrassoViscInd {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.GrassoViscIndColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'GrassoViscInd\' in table \'stp_rep_DatiFullByPazienteData\' is" +
+ " DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.GrassoViscIndColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double TRomberg {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.TRombergColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TRomberg\' in table \'stp_rep_DatiFullByPazienteData\' is DBNu" +
+ "ll.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TRombergColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double TFukuda {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.TFukudaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TFukuda\' in table \'stp_rep_DatiFullByPazienteData\' is DBNul" +
+ "l.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TFukudaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double TGUG {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.TGUGColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TGUG\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TGUGColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double TGUG1 {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.TGUG1Column]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TGUG1\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull." +
+ "", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TGUG1Column] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double FPrensile {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.FPrensileColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'FPrensile\' in table \'stp_rep_DatiFullByPazienteData\' is DBN" +
+ "ull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.FPrensileColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double DensCorp {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.DensCorpColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'DensCorp\' in table \'stp_rep_DatiFullByPazienteData\' is DBNu" +
+ "ll.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.DensCorpColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double GrassoTotPerc {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.GrassoTotPercColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'GrassoTotPerc\' in table \'stp_rep_DatiFullByPazienteData\' is" +
+ " DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.GrassoTotPercColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double GrassoTot {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.GrassoTotColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'GrassoTot\' in table \'stp_rep_DatiFullByPazienteData\' is DBN" +
+ "ull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.GrassoTotColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double MassaMagraPerc {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.MassaMagraPercColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'MassaMagraPerc\' in table \'stp_rep_DatiFullByPazienteData\' i" +
+ "s DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.MassaMagraPercColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double MassaMagraKgCm {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.MassaMagraKgCmColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'MassaMagraKgCm\' in table \'stp_rep_DatiFullByPazienteData\' i" +
+ "s DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.MassaMagraKgCmColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double BMI {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.BMIColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'BMI\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.BMIColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double MetBasaleDie {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.MetBasaleDieColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'MetBasaleDie\' in table \'stp_rep_DatiFullByPazienteData\' is " +
+ "DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.MetBasaleDieColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double MetBasaleH {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.MetBasaleHColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'MetBasaleH\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.MetBasaleHColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Lavoro {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.LavoroColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Lavoro\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull" +
+ ".", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.LavoroColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int StileVita {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.StileVitaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'StileVita\' in table \'stp_rep_DatiFullByPazienteData\' is DBN" +
+ "ull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.StileVitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int FreqAll {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.FreqAllColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'FreqAll\' in table \'stp_rep_DatiFullByPazienteData\' is DBNul" +
+ "l.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.FreqAllColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int MezzoTrasp {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.MezzoTraspColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'MezzoTrasp\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.MezzoTraspColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int ScoreAttiv {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.ScoreAttivColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'ScoreAttiv\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.ScoreAttivColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double MET_Lavoro {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.MET_LavoroColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'MET_Lavoro\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.MET_LavoroColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double MET_AttFisica {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.MET_AttFisicaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'MET_AttFisica\' in table \'stp_rep_DatiFullByPazienteData\' is" +
+ " DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.MET_AttFisicaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreSonno {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.OreSonnoColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'OreSonno\' in table \'stp_rep_DatiFullByPazienteData\' is DBNu" +
+ "ll.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreSonnoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreSeduto {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.OreSedutoColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'OreSeduto\' in table \'stp_rep_DatiFullByPazienteData\' is DBN" +
+ "ull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreSedutoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OrePasti {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.OrePastiColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'OrePasti\' in table \'stp_rep_DatiFullByPazienteData\' is DBNu" +
+ "ll.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.OrePastiColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreSpostAuto {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.OreSpostAutoColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'OreSpostAuto\' in table \'stp_rep_DatiFullByPazienteData\' is " +
+ "DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreSpostAutoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreSpostAtt {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.OreSpostAttColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'OreSpostAtt\' in table \'stp_rep_DatiFullByPazienteData\' is D" +
+ "BNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreSpostAttColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreLavoro {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.OreLavoroColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'OreLavoro\' in table \'stp_rep_DatiFullByPazienteData\' is DBN" +
+ "ull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreLavoroColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreIgiene {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.OreIgieneColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'OreIgiene\' in table \'stp_rep_DatiFullByPazienteData\' is DBN" +
+ "ull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreIgieneColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreAttFisica {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.OreAttFisicaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'OreAttFisica\' in table \'stp_rep_DatiFullByPazienteData\' is " +
+ "DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreAttFisicaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OrePulizia {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.OrePuliziaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'OrePulizia\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.OrePuliziaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double OreCane {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.OreCaneColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'OreCane\' in table \'stp_rep_DatiFullByPazienteData\' is DBNul" +
+ "l.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreCaneColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double ConsCalDie {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.ConsCalDieColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'ConsCalDie\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.ConsCalDieColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Verdure {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.VerdureColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Verdure\' in table \'stp_rep_DatiFullByPazienteData\' is DBNul" +
+ "l.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.VerdureColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Legumi {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.LegumiColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Legumi\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull" +
+ ".", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.LegumiColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Frutta {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.FruttaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Frutta\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull" +
+ ".", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.FruttaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Noci {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.NociColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Noci\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.NociColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Cereali {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.CerealiColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Cereali\' in table \'stp_rep_DatiFullByPazienteData\' is DBNul" +
+ "l.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.CerealiColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Pesce {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.PesceColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Pesce\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull." +
+ "", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PesceColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Grassi {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.GrassiColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Grassi\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull" +
+ ".", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.GrassiColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Vino {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.VinoColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Vino\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.VinoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int CarneLatt {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.CarneLattColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'CarneLatt\' in table \'stp_rep_DatiFullByPazienteData\' is DBN" +
+ "ull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.CarneLattColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int ScoreDietMed {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.ScoreDietMedColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'ScoreDietMed\' in table \'stp_rep_DatiFullByPazienteData\' is " +
+ "DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.ScoreDietMedColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string NoteStileVita {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.NoteStileVitaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'NoteStileVita\' in table \'stp_rep_DatiFullByPazienteData\' is" +
+ " DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.NoteStileVitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Lavoro_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Lavoro_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Lavoro_label\' in table \'stp_rep_DatiFullByPazienteData\' is " +
+ "DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Lavoro_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string StileVita_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.StileVita_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'StileVita_label\' in table \'stp_rep_DatiFullByPazienteData\' " +
+ "is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.StileVita_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string FreqAll_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.FreqAll_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'FreqAll_label\' in table \'stp_rep_DatiFullByPazienteData\' is" +
+ " DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.FreqAll_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string MezzoTrasp_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.MezzoTrasp_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'MezzoTrasp_label\' in table \'stp_rep_DatiFullByPazienteData\'" +
+ " is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.MezzoTrasp_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Verdure_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Verdure_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Verdure_label\' in table \'stp_rep_DatiFullByPazienteData\' is" +
+ " DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Verdure_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Legumi_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Legumi_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Legumi_label\' in table \'stp_rep_DatiFullByPazienteData\' is " +
+ "DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Legumi_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Frutta_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Frutta_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Frutta_label\' in table \'stp_rep_DatiFullByPazienteData\' is " +
+ "DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Frutta_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Noci_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Noci_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Noci_label\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Noci_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Cereali_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Cereali_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Cereali_label\' in table \'stp_rep_DatiFullByPazienteData\' is" +
+ " DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Cereali_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Pesce_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Pesce_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Pesce_label\' in table \'stp_rep_DatiFullByPazienteData\' is D" +
+ "BNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Pesce_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Grassi_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Grassi_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Grassi_label\' in table \'stp_rep_DatiFullByPazienteData\' is " +
+ "DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Grassi_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Vino_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Vino_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Vino_label\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Vino_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string CarneLatt_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.CarneLatt_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'CarneLatt_label\' in table \'stp_rep_DatiFullByPazienteData\' " +
+ "is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.CarneLatt_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int TestTMT_A {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_AColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TestTMT_A\' in table \'stp_rep_DatiFullByPazienteData\' is DBN" +
+ "ull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_AColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string TestTMT_A_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_A_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TestTMT_A_label\' in table \'stp_rep_DatiFullByPazienteData\' " +
+ "is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_A_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int TestTMT_B {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_BColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TestTMT_B\' in table \'stp_rep_DatiFullByPazienteData\' is DBN" +
+ "ull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_BColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string TestTMT_B_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_B_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TestTMT_B_label\' in table \'stp_rep_DatiFullByPazienteData\' " +
+ "is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_B_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int TestTMT_BA {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_BAColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TestTMT_BA\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_BAColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string TestTMT_BA_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_BA_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TestTMT_BA_label\' in table \'stp_rep_DatiFullByPazienteData\'" +
+ " is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_BA_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Test15ParReyImm {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.Test15ParReyImmColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Test15ParReyImm\' in table \'stp_rep_DatiFullByPazienteData\' " +
+ "is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Test15ParReyImmColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Test15ParReyImm_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Test15ParReyImm_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Test15ParReyImm_label\' in table \'stp_rep_DatiFullByPaziente" +
+ "Data\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Test15ParReyImm_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Test15ParReyDif {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.Test15ParReyDifColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Test15ParReyDif\' in table \'stp_rep_DatiFullByPazienteData\' " +
+ "is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Test15ParReyDifColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Test15ParReyDif_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Test15ParReyDif_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Test15ParReyDif_label\' in table \'stp_rep_DatiFullByPaziente" +
+ "Data\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Test15ParReyDif_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int ApprSuSpanViSpa {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.ApprSuSpanViSpaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'ApprSuSpanViSpa\' in table \'stp_rep_DatiFullByPazienteData\' " +
+ "is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.ApprSuSpanViSpaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string ApprSuSpanViSpa_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.ApprSuSpanViSpa_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'ApprSuSpanViSpa_label\' in table \'stp_rep_DatiFullByPaziente" +
+ "Data\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.ApprSuSpanViSpa_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int StroopTestInterfErr {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.StroopTestInterfErrColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'StroopTestInterfErr\' in table \'stp_rep_DatiFullByPazienteDa" +
+ "ta\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.StroopTestInterfErrColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string StroopTestInterfErr_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.StroopTestInterfErr_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'StroopTestInterfErr_label\' in table \'stp_rep_DatiFullByPazi" +
+ "enteData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.StroopTestInterfErr_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int TestStimeCognErr {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.TestStimeCognErrColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TestStimeCognErr\' in table \'stp_rep_DatiFullByPazienteData\'" +
+ " is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestStimeCognErrColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string TestStimeCognErr_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.TestStimeCognErr_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TestStimeCognErr_label\' in table \'stp_rep_DatiFullByPazient" +
+ "eData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestStimeCognErr_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int TestStimeCognBiz {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.TestStimeCognBizColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TestStimeCognBiz\' in table \'stp_rep_DatiFullByPazienteData\'" +
+ " is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestStimeCognBizColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string TestStimeCognBiz_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.TestStimeCognBiz_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TestStimeCognBiz_label\' in table \'stp_rep_DatiFullByPazient" +
+ "eData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestStimeCognBiz_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int TorreLondra {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.TorreLondraColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TorreLondra\' in table \'stp_rep_DatiFullByPazienteData\' is D" +
+ "BNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TorreLondraColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string TorreLondra_label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.TorreLondra_labelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TorreLondra_label\' in table \'stp_rep_DatiFullByPazienteData" +
+ "\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TorreLondra_labelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int PaSis {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.PaSisColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PaSis\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull." +
+ "", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PaSisColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int PaDia {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.PaDiaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PaDia\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull." +
+ "", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PaDiaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double QR1 {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.QR1Column]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'QR1\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.QR1Column] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double QR1_Kg {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.QR1_KgColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'QR1_Kg\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull" +
+ ".", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.QR1_KgColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double VO2 {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.VO2Column]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'VO2\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.VO2Column] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double VO2_Kg {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.VO2_KgColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'VO2_Kg\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull" +
+ ".", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.VO2_KgColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int FC_QR1 {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.FC_QR1Column]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'FC_QR1\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull" +
+ ".", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.FC_QR1Column] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PolsoO2 {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.PolsoO2Column]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PolsoO2\' in table \'stp_rep_DatiFullByPazienteData\' is DBNul" +
+ "l.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PolsoO2Column] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int PaSisMax {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.PaSisMaxColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PaSisMax\' in table \'stp_rep_DatiFullByPazienteData\' is DBNu" +
+ "ll.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PaSisMaxColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int PaDiaMax {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.PaDiaMaxColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PaDiaMax\' in table \'stp_rep_DatiFullByPazienteData\' is DBNu" +
+ "ll.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PaDiaMaxColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double FrazEiez {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.FrazEiezColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'FrazEiez\' in table \'stp_rep_DatiFullByPazienteData\' is DBNu" +
+ "ll.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.FrazEiezColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double TDI {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.TDIColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'TDI\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.TDIColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlaccheVas {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.PlaccheVasColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PlaccheVas\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlaccheVasColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string NoteCardio {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.NoteCardioColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'NoteCardio\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.NoteCardioColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string PlaccheVas_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.PlaccheVas_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'PlaccheVas_Label\' in table \'stp_rep_DatiFullByPazienteData\'" +
+ " is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlaccheVas_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int FamMCCV {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.FamMCCVColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'FamMCCV\' in table \'stp_rep_DatiFullByPazienteData\' is DBNul" +
+ "l.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.FamMCCVColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string FamMCCV_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.FamMCCV_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'FamMCCV_Label\' in table \'stp_rep_DatiFullByPazienteData\' is" +
+ " DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.FamMCCV_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Ipertens {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.IpertensColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Ipertens\' in table \'stp_rep_DatiFullByPazienteData\' is DBNu" +
+ "ll.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.IpertensColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Ipertens_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Ipertens_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Ipertens_Label\' in table \'stp_rep_DatiFullByPazienteData\' i" +
+ "s DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Ipertens_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int IpertensYtd {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.IpertensYtdColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'IpertensYtd\' in table \'stp_rep_DatiFullByPazienteData\' is D" +
+ "BNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.IpertensYtdColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string IpertensYtd_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.IpertensYtd_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'IpertensYtd_Label\' in table \'stp_rep_DatiFullByPazienteData" +
+ "\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.IpertensYtd_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Diabete {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.DiabeteColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Diabete\' in table \'stp_rep_DatiFullByPazienteData\' is DBNul" +
+ "l.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.DiabeteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Diabete_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Diabete_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Diabete_Label\' in table \'stp_rep_DatiFullByPazienteData\' is" +
+ " DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Diabete_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int DiabeteYtd {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.DiabeteYtdColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'DiabeteYtd\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.DiabeteYtdColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string DiabeteYtd_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.DiabeteYtd_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'DiabeteYtd_Label\' in table \'stp_rep_DatiFullByPazienteData\'" +
+ " is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.DiabeteYtd_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Ipercolest {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.IpercolestColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Ipercolest\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.IpercolestColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Ipercolest_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Ipercolest_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Ipercolest_Label\' in table \'stp_rep_DatiFullByPazienteData\'" +
+ " is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Ipercolest_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int IpercolestYtd {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.IpercolestYtdColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'IpercolestYtd\' in table \'stp_rep_DatiFullByPazienteData\' is" +
+ " DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.IpercolestYtdColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string IpercolestYtd_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.IpercolestYtd_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'IpercolestYtd_Label\' in table \'stp_rep_DatiFullByPazienteDa" +
+ "ta\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.IpercolestYtd_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Fumo {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.FumoColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Fumo\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.FumoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Fumo_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Fumo_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Fumo_Label\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Fumo_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int FumoYtd {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.FumoYtdColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'FumoYtd\' in table \'stp_rep_DatiFullByPazienteData\' is DBNul" +
+ "l.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.FumoYtdColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string FumoYtd_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.FumoYtd_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'FumoYtd_Label\' in table \'stp_rep_DatiFullByPazienteData\' is" +
+ " DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.FumoYtd_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Alcool {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.AlcoolColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Alcool\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull" +
+ ".", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.AlcoolColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Alcool_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Alcool_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Alcool_Label\' in table \'stp_rep_DatiFullByPazienteData\' is " +
+ "DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Alcool_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int AlcoolYtd {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.AlcoolYtdColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'AlcoolYtd\' in table \'stp_rep_DatiFullByPazienteData\' is DBN" +
+ "ull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.AlcoolYtdColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string AlcoolYtd_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.AlcoolYtd_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'AlcoolYtd_Label\' in table \'stp_rep_DatiFullByPazienteData\' " +
+ "is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.AlcoolYtd_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Sovrapp {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.SovrappColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Sovrapp\' in table \'stp_rep_DatiFullByPazienteData\' is DBNul" +
+ "l.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.SovrappColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Sovrapp_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Sovrapp_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Sovrapp_Label\' in table \'stp_rep_DatiFullByPazienteData\' is" +
+ " DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Sovrapp_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int SovrappYtd {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.SovrappYtdColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'SovrappYtd\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.SovrappYtdColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string SovrappYtd_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.SovrappYtd_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'SovrappYtd_Label\' in table \'stp_rep_DatiFullByPazienteData\'" +
+ " is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.SovrappYtd_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int Sedent {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.SedentColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Sedent\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull" +
+ ".", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.SedentColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Sedent_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.Sedent_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Sedent_Label\' in table \'stp_rep_DatiFullByPazienteData\' is " +
+ "DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Sedent_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int AdesTerap {
+ get {
+ try {
+ return ((int)(this[this.tablestp_rep_DatiFullByPazienteData.AdesTerapColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'AdesTerap\' in table \'stp_rep_DatiFullByPazienteData\' is DBN" +
+ "ull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.AdesTerapColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string AdesTerap_Label {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.AdesTerap_LabelColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'AdesTerap_Label\' in table \'stp_rep_DatiFullByPazienteData\' " +
+ "is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.AdesTerap_LabelColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string NoteRelFin {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.NoteRelFinColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'NoteRelFin\' in table \'stp_rep_DatiFullByPazienteData\' is DB" +
+ "Null.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.NoteRelFinColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Score1 {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.Score1Column]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Score1\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull" +
+ ".", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Score1Column] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Score2 {
+ get {
+ try {
+ return ((double)(this[this.tablestp_rep_DatiFullByPazienteData.Score2Column]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Score2\' in table \'stp_rep_DatiFullByPazienteData\' is DBNull" +
+ ".", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.Score2Column] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string MedicoRef {
+ get {
+ try {
+ return ((string)(this[this.tablestp_rep_DatiFullByPazienteData.MedicoRefColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'MedicoRef\' in table \'stp_rep_DatiFullByPazienteData\' is DBN" +
+ "ull.", e);
+ }
+ }
+ set {
+ this[this.tablestp_rep_DatiFullByPazienteData.MedicoRefColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsIdxPazienteNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.IdxPazienteColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetIdxPazienteNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.IdxPazienteColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsDataVisitaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.DataVisitaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetDataVisitaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.DataVisitaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsEtaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.EtaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetEtaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.EtaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsGlicemiaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.GlicemiaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetGlicemiaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.GlicemiaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsEmoglGlicataNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.EmoglGlicataColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetEmoglGlicataNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.EmoglGlicataColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsColesTotNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.ColesTotColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetColesTotNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.ColesTotColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsLDLNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.LDLColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetLDLNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.LDLColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsHDLNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.HDLColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetHDLNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.HDLColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTrigliceridiNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TrigliceridiColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTrigliceridiNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TrigliceridiColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsColRapLDLHDLNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.ColRapLDLHDLColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetColRapLDLHDLNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.ColRapLDLHDLColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsOmocisteinaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.OmocisteinaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetOmocisteinaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.OmocisteinaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsMHTFRNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.MHTFRColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetMHTFRNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.MHTFRColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFattIINull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.FattIIColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFattIINull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.FattIIColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFattVNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.FattVColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFattVNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.FattVColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsGradTransmNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.GradTransmColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetGradTransmNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.GradTransmColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsLungTelomNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.LungTelomColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetLungTelomNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.LungTelomColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsRespSilenzNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.RespSilenzColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetRespSilenzNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.RespSilenzColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsAltezzaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.AltezzaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetAltezzaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.AltezzaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPesoNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PesoColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPesoNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PesoColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPlicaBicipiteNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PlicaBicipiteColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPlicaBicipiteNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlicaBicipiteColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPlicaTricipiteNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PlicaTricipiteColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPlicaTricipiteNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlicaTricipiteColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPlicaSottoscapolaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PlicaSottoscapolaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPlicaSottoscapolaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlicaSottoscapolaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPlicaPettoraleNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PlicaPettoraleColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPlicaPettoraleNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlicaPettoraleColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPlicaAddominaleNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PlicaAddominaleColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPlicaAddominaleNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlicaAddominaleColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPlicaSoprailiacaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PlicaSoprailiacaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPlicaSoprailiacaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlicaSoprailiacaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPlicaCosciaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PlicaCosciaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPlicaCosciaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlicaCosciaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsCirconfVitaGluteiNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.CirconfVitaGluteiColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetCirconfVitaGluteiNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.CirconfVitaGluteiColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsCirconfAvambNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.CirconfAvambColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetCirconfAvambNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.CirconfAvambColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsGrassoTroncoPercNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.GrassoTroncoPercColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetGrassoTroncoPercNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.GrassoTroncoPercColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsGrassoViscIndNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.GrassoViscIndColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetGrassoViscIndNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.GrassoViscIndColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTRombergNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TRombergColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTRombergNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TRombergColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTFukudaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TFukudaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTFukudaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TFukudaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTGUGNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TGUGColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTGUGNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TGUGColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTGUG1Null() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TGUG1Column);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTGUG1Null() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TGUG1Column] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFPrensileNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.FPrensileColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFPrensileNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.FPrensileColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsDensCorpNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.DensCorpColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetDensCorpNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.DensCorpColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsGrassoTotPercNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.GrassoTotPercColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetGrassoTotPercNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.GrassoTotPercColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsGrassoTotNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.GrassoTotColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetGrassoTotNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.GrassoTotColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsMassaMagraPercNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.MassaMagraPercColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetMassaMagraPercNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.MassaMagraPercColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsMassaMagraKgCmNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.MassaMagraKgCmColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetMassaMagraKgCmNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.MassaMagraKgCmColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsBMINull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.BMIColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetBMINull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.BMIColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsMetBasaleDieNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.MetBasaleDieColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetMetBasaleDieNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.MetBasaleDieColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsMetBasaleHNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.MetBasaleHColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetMetBasaleHNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.MetBasaleHColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsLavoroNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.LavoroColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetLavoroNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.LavoroColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsStileVitaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.StileVitaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetStileVitaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.StileVitaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFreqAllNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.FreqAllColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFreqAllNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.FreqAllColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsMezzoTraspNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.MezzoTraspColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetMezzoTraspNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.MezzoTraspColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsScoreAttivNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.ScoreAttivColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetScoreAttivNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.ScoreAttivColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsMET_LavoroNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.MET_LavoroColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetMET_LavoroNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.MET_LavoroColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsMET_AttFisicaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.MET_AttFisicaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetMET_AttFisicaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.MET_AttFisicaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsOreSonnoNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.OreSonnoColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetOreSonnoNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreSonnoColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsOreSedutoNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.OreSedutoColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetOreSedutoNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreSedutoColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsOrePastiNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.OrePastiColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetOrePastiNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.OrePastiColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsOreSpostAutoNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.OreSpostAutoColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetOreSpostAutoNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreSpostAutoColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsOreSpostAttNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.OreSpostAttColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetOreSpostAttNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreSpostAttColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsOreLavoroNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.OreLavoroColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetOreLavoroNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreLavoroColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsOreIgieneNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.OreIgieneColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetOreIgieneNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreIgieneColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsOreAttFisicaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.OreAttFisicaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetOreAttFisicaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreAttFisicaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsOrePuliziaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.OrePuliziaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetOrePuliziaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.OrePuliziaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsOreCaneNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.OreCaneColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetOreCaneNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.OreCaneColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsConsCalDieNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.ConsCalDieColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetConsCalDieNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.ConsCalDieColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsVerdureNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.VerdureColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetVerdureNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.VerdureColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsLegumiNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.LegumiColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetLegumiNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.LegumiColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFruttaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.FruttaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFruttaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.FruttaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsNociNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.NociColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetNociNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.NociColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsCerealiNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.CerealiColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetCerealiNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.CerealiColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPesceNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PesceColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPesceNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PesceColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsGrassiNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.GrassiColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetGrassiNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.GrassiColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsVinoNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.VinoColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetVinoNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.VinoColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsCarneLattNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.CarneLattColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetCarneLattNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.CarneLattColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsScoreDietMedNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.ScoreDietMedColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetScoreDietMedNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.ScoreDietMedColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsNoteStileVitaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.NoteStileVitaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetNoteStileVitaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.NoteStileVitaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsLavoro_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Lavoro_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetLavoro_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Lavoro_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsStileVita_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.StileVita_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetStileVita_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.StileVita_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFreqAll_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.FreqAll_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFreqAll_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.FreqAll_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsMezzoTrasp_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.MezzoTrasp_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetMezzoTrasp_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.MezzoTrasp_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsVerdure_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Verdure_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetVerdure_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Verdure_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsLegumi_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Legumi_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetLegumi_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Legumi_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFrutta_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Frutta_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFrutta_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Frutta_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsNoci_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Noci_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetNoci_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Noci_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsCereali_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Cereali_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetCereali_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Cereali_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPesce_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Pesce_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPesce_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Pesce_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsGrassi_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Grassi_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetGrassi_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Grassi_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsVino_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Vino_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetVino_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Vino_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsCarneLatt_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.CarneLatt_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetCarneLatt_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.CarneLatt_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTestTMT_ANull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TestTMT_AColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTestTMT_ANull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_AColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTestTMT_A_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TestTMT_A_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTestTMT_A_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_A_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTestTMT_BNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TestTMT_BColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTestTMT_BNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_BColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTestTMT_B_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TestTMT_B_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTestTMT_B_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_B_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTestTMT_BANull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TestTMT_BAColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTestTMT_BANull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_BAColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTestTMT_BA_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TestTMT_BA_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTestTMT_BA_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestTMT_BA_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTest15ParReyImmNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Test15ParReyImmColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTest15ParReyImmNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Test15ParReyImmColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTest15ParReyImm_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Test15ParReyImm_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTest15ParReyImm_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Test15ParReyImm_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTest15ParReyDifNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Test15ParReyDifColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTest15ParReyDifNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Test15ParReyDifColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTest15ParReyDif_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Test15ParReyDif_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTest15ParReyDif_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Test15ParReyDif_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsApprSuSpanViSpaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.ApprSuSpanViSpaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetApprSuSpanViSpaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.ApprSuSpanViSpaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsApprSuSpanViSpa_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.ApprSuSpanViSpa_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetApprSuSpanViSpa_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.ApprSuSpanViSpa_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsStroopTestInterfErrNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.StroopTestInterfErrColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetStroopTestInterfErrNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.StroopTestInterfErrColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsStroopTestInterfErr_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.StroopTestInterfErr_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetStroopTestInterfErr_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.StroopTestInterfErr_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTestStimeCognErrNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TestStimeCognErrColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTestStimeCognErrNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestStimeCognErrColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTestStimeCognErr_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TestStimeCognErr_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTestStimeCognErr_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestStimeCognErr_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTestStimeCognBizNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TestStimeCognBizColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTestStimeCognBizNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestStimeCognBizColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTestStimeCognBiz_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TestStimeCognBiz_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTestStimeCognBiz_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TestStimeCognBiz_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTorreLondraNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TorreLondraColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTorreLondraNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TorreLondraColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTorreLondra_labelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TorreLondra_labelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTorreLondra_labelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TorreLondra_labelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPaSisNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PaSisColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPaSisNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PaSisColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPaDiaNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PaDiaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPaDiaNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PaDiaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsQR1Null() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.QR1Column);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetQR1Null() {
+ this[this.tablestp_rep_DatiFullByPazienteData.QR1Column] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsQR1_KgNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.QR1_KgColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetQR1_KgNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.QR1_KgColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsVO2Null() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.VO2Column);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetVO2Null() {
+ this[this.tablestp_rep_DatiFullByPazienteData.VO2Column] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsVO2_KgNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.VO2_KgColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetVO2_KgNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.VO2_KgColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFC_QR1Null() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.FC_QR1Column);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFC_QR1Null() {
+ this[this.tablestp_rep_DatiFullByPazienteData.FC_QR1Column] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPolsoO2Null() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PolsoO2Column);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPolsoO2Null() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PolsoO2Column] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPaSisMaxNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PaSisMaxColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPaSisMaxNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PaSisMaxColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPaDiaMaxNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PaDiaMaxColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPaDiaMaxNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PaDiaMaxColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFrazEiezNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.FrazEiezColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFrazEiezNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.FrazEiezColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsTDINull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.TDIColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetTDINull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.TDIColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPlaccheVasNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PlaccheVasColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPlaccheVasNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlaccheVasColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsNoteCardioNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.NoteCardioColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetNoteCardioNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.NoteCardioColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsPlaccheVas_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.PlaccheVas_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetPlaccheVas_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.PlaccheVas_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFamMCCVNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.FamMCCVColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFamMCCVNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.FamMCCVColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFamMCCV_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.FamMCCV_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFamMCCV_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.FamMCCV_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsIpertensNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.IpertensColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetIpertensNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.IpertensColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsIpertens_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Ipertens_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetIpertens_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Ipertens_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsIpertensYtdNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.IpertensYtdColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetIpertensYtdNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.IpertensYtdColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsIpertensYtd_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.IpertensYtd_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetIpertensYtd_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.IpertensYtd_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsDiabeteNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.DiabeteColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetDiabeteNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.DiabeteColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsDiabete_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Diabete_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetDiabete_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Diabete_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsDiabeteYtdNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.DiabeteYtdColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetDiabeteYtdNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.DiabeteYtdColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsDiabeteYtd_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.DiabeteYtd_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetDiabeteYtd_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.DiabeteYtd_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsIpercolestNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.IpercolestColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetIpercolestNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.IpercolestColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsIpercolest_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Ipercolest_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetIpercolest_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Ipercolest_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsIpercolestYtdNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.IpercolestYtdColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetIpercolestYtdNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.IpercolestYtdColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsIpercolestYtd_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.IpercolestYtd_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetIpercolestYtd_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.IpercolestYtd_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFumoNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.FumoColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFumoNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.FumoColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFumo_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Fumo_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFumo_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Fumo_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFumoYtdNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.FumoYtdColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFumoYtdNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.FumoYtdColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsFumoYtd_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.FumoYtd_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetFumoYtd_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.FumoYtd_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsAlcoolNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.AlcoolColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetAlcoolNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.AlcoolColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsAlcool_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Alcool_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetAlcool_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Alcool_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsAlcoolYtdNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.AlcoolYtdColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetAlcoolYtdNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.AlcoolYtdColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsAlcoolYtd_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.AlcoolYtd_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetAlcoolYtd_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.AlcoolYtd_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsSovrappNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.SovrappColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetSovrappNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.SovrappColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsSovrapp_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Sovrapp_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetSovrapp_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Sovrapp_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsSovrappYtdNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.SovrappYtdColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetSovrappYtdNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.SovrappYtdColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsSovrappYtd_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.SovrappYtd_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetSovrappYtd_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.SovrappYtd_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsSedentNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.SedentColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetSedentNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.SedentColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsSedent_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Sedent_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetSedent_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Sedent_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsAdesTerapNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.AdesTerapColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetAdesTerapNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.AdesTerapColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsAdesTerap_LabelNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.AdesTerap_LabelColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetAdesTerap_LabelNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.AdesTerap_LabelColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsNoteRelFinNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.NoteRelFinColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetNoteRelFinNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.NoteRelFinColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsScore1Null() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Score1Column);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetScore1Null() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Score1Column] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsScore2Null() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.Score2Column);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetScore2Null() {
+ this[this.tablestp_rep_DatiFullByPazienteData.Score2Column] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsMedicoRefNull() {
+ return this.IsNull(this.tablestp_rep_DatiFullByPazienteData.MedicoRefColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetMedicoRefNull() {
+ this[this.tablestp_rep_DatiFullByPazienteData.MedicoRefColumn] = global::System.Convert.DBNull;
+ }
+ }
+
+ ///
+ ///Represents strongly named DataRow class.
+ ///
+ public partial class VisBioMecAntRow : global::System.Data.DataRow {
+
+ private VisBioMecAntDataTable tableVisBioMecAnt;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal VisBioMecAntRow(global::System.Data.DataRowBuilder rb) :
+ base(rb) {
+ this.tableVisBioMecAnt = ((VisBioMecAntDataTable)(this.Table));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int IdxPaziente {
+ get {
+ return ((int)(this[this.tableVisBioMecAnt.IdxPazienteColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.IdxPazienteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public System.DateTime DataVisita {
+ get {
+ return ((global::System.DateTime)(this[this.tableVisBioMecAnt.DataVisitaColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.DataVisitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Eta {
+ get {
+ try {
+ return ((double)(this[this.tableVisBioMecAnt.EtaColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'Eta\' in table \'VisBioMecAnt\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisBioMecAnt.EtaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string Sesso {
+ get {
+ return ((string)(this[this.tableVisBioMecAnt.SessoColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.SessoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Altezza {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.AltezzaColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.AltezzaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double Peso {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.PesoColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.PesoColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlicaBicipite {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.PlicaBicipiteColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.PlicaBicipiteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlicaTricipite {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.PlicaTricipiteColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.PlicaTricipiteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlicaSottoscapola {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.PlicaSottoscapolaColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.PlicaSottoscapolaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlicaPettorale {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.PlicaPettoraleColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.PlicaPettoraleColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlicaAddominale {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.PlicaAddominaleColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.PlicaAddominaleColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlicaSoprailiaca {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.PlicaSoprailiacaColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.PlicaSoprailiacaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double PlicaCoscia {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.PlicaCosciaColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.PlicaCosciaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double CirconfAvamb {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.CirconfAvambColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.CirconfAvambColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double CirconfVita {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.CirconfVitaColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.CirconfVitaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double CirconfGlutei {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.CirconfGluteiColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.CirconfGluteiColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double CirconfQuadricipite {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.CirconfQuadricipiteColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.CirconfQuadricipiteColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double DensCorp {
+ get {
+ try {
+ return ((double)(this[this.tableVisBioMecAnt.DensCorpColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'DensCorp\' in table \'VisBioMecAnt\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisBioMecAnt.DensCorpColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double GrassoTroncoPerc {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.GrassoTroncoPercColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.GrassoTroncoPercColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double GrassoViscInd {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.GrassoViscIndColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.GrassoViscIndColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double TRomberg {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.TRombergColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.TRombergColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double TFukuda {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.TFukudaColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.TFukudaColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public int TFukudaIpot {
+ get {
+ return ((int)(this[this.tableVisBioMecAnt.TFukudaIpotColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.TFukudaIpotColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double TGUG {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.TGUGColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.TGUGColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double TGUG1 {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.TGUG1Column]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.TGUG1Column] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double FPrensile {
+ get {
+ return ((double)(this[this.tableVisBioMecAnt.FPrensileColumn]));
+ }
+ set {
+ this[this.tableVisBioMecAnt.FPrensileColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double GrassoTotPerc {
+ get {
+ try {
+ return ((double)(this[this.tableVisBioMecAnt.GrassoTotPercColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'GrassoTotPerc\' in table \'VisBioMecAnt\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisBioMecAnt.GrassoTotPercColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double GrassoTot {
+ get {
+ try {
+ return ((double)(this[this.tableVisBioMecAnt.GrassoTotColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'GrassoTot\' in table \'VisBioMecAnt\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisBioMecAnt.GrassoTotColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double MassaMagraPerc {
+ get {
+ try {
+ return ((double)(this[this.tableVisBioMecAnt.MassaMagraPercColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'MassaMagraPerc\' in table \'VisBioMecAnt\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisBioMecAnt.MassaMagraPercColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double MassaMagraKgCm {
+ get {
+ try {
+ return ((double)(this[this.tableVisBioMecAnt.MassaMagraKgCmColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'MassaMagraKgCm\' in table \'VisBioMecAnt\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisBioMecAnt.MassaMagraKgCmColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double BMI {
+ get {
+ try {
+ return ((double)(this[this.tableVisBioMecAnt.BMIColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'BMI\' in table \'VisBioMecAnt\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisBioMecAnt.BMIColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double MetBasaleDie {
+ get {
+ try {
+ return ((double)(this[this.tableVisBioMecAnt.MetBasaleDieColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'MetBasaleDie\' in table \'VisBioMecAnt\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisBioMecAnt.MetBasaleDieColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public double MetBasaleH {
+ get {
+ try {
+ return ((double)(this[this.tableVisBioMecAnt.MetBasaleHColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'MetBasaleH\' in table \'VisBioMecAnt\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisBioMecAnt.MetBasaleHColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public string ScoreFPrensile {
+ get {
+ try {
+ return ((string)(this[this.tableVisBioMecAnt.ScoreFPrensileColumn]));
+ }
+ catch (global::System.InvalidCastException e) {
+ throw new global::System.Data.StrongTypingException("The value for column \'ScoreFPrensile\' in table \'VisBioMecAnt\' is DBNull.", e);
+ }
+ }
+ set {
+ this[this.tableVisBioMecAnt.ScoreFPrensileColumn] = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiRow AnagPazientiRow {
+ get {
+ return ((AnagPazientiRow)(this.GetParentRow(this.Table.ParentRelations["AnagPazienti_v_VisBioMecAnt"])));
+ }
+ set {
+ this.SetParentRow(value, this.Table.ParentRelations["AnagPazienti_v_VisBioMecAnt"]);
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsEtaNull() {
+ return this.IsNull(this.tableVisBioMecAnt.EtaColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetEtaNull() {
+ this[this.tableVisBioMecAnt.EtaColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsDensCorpNull() {
+ return this.IsNull(this.tableVisBioMecAnt.DensCorpColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetDensCorpNull() {
+ this[this.tableVisBioMecAnt.DensCorpColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsGrassoTotPercNull() {
+ return this.IsNull(this.tableVisBioMecAnt.GrassoTotPercColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetGrassoTotPercNull() {
+ this[this.tableVisBioMecAnt.GrassoTotPercColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsGrassoTotNull() {
+ return this.IsNull(this.tableVisBioMecAnt.GrassoTotColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetGrassoTotNull() {
+ this[this.tableVisBioMecAnt.GrassoTotColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsMassaMagraPercNull() {
+ return this.IsNull(this.tableVisBioMecAnt.MassaMagraPercColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetMassaMagraPercNull() {
+ this[this.tableVisBioMecAnt.MassaMagraPercColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsMassaMagraKgCmNull() {
+ return this.IsNull(this.tableVisBioMecAnt.MassaMagraKgCmColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetMassaMagraKgCmNull() {
+ this[this.tableVisBioMecAnt.MassaMagraKgCmColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsBMINull() {
+ return this.IsNull(this.tableVisBioMecAnt.BMIColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetBMINull() {
+ this[this.tableVisBioMecAnt.BMIColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsMetBasaleDieNull() {
+ return this.IsNull(this.tableVisBioMecAnt.MetBasaleDieColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetMetBasaleDieNull() {
+ this[this.tableVisBioMecAnt.MetBasaleDieColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsMetBasaleHNull() {
+ return this.IsNull(this.tableVisBioMecAnt.MetBasaleHColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetMetBasaleHNull() {
+ this[this.tableVisBioMecAnt.MetBasaleHColumn] = global::System.Convert.DBNull;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool IsScoreFPrensileNull() {
+ return this.IsNull(this.tableVisBioMecAnt.ScoreFPrensileColumn);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public void SetScoreFPrensileNull() {
+ this[this.tableVisBioMecAnt.ScoreFPrensileColumn] = global::System.Convert.DBNull;
+ }
+ }
+
+ ///
+ ///Row event argument class
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public class AnagPazientiRowChangeEvent : global::System.EventArgs {
+
+ private AnagPazientiRow eventRow;
+
+ private global::System.Data.DataRowAction eventAction;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiRowChangeEvent(AnagPazientiRow row, global::System.Data.DataRowAction action) {
+ this.eventRow = row;
+ this.eventAction = action;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiRow Row {
+ get {
+ return this.eventRow;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataRowAction Action {
+ get {
+ return this.eventAction;
+ }
+ }
+ }
+
+ ///
+ ///Row event argument class
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public class ElencoVisiteRowChangeEvent : global::System.EventArgs {
+
+ private ElencoVisiteRow eventRow;
+
+ private global::System.Data.DataRowAction eventAction;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public ElencoVisiteRowChangeEvent(ElencoVisiteRow row, global::System.Data.DataRowAction action) {
+ this.eventRow = row;
+ this.eventAction = action;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public ElencoVisiteRow Row {
+ get {
+ return this.eventRow;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataRowAction Action {
+ get {
+ return this.eventAction;
+ }
+ }
+ }
+
+ ///
+ ///Row event argument class
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public class VisLabRowChangeEvent : global::System.EventArgs {
+
+ private VisLabRow eventRow;
+
+ private global::System.Data.DataRowAction eventAction;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisLabRowChangeEvent(VisLabRow row, global::System.Data.DataRowAction action) {
+ this.eventRow = row;
+ this.eventAction = action;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisLabRow Row {
+ get {
+ return this.eventRow;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataRowAction Action {
+ get {
+ return this.eventAction;
+ }
+ }
+ }
+
+ ///
+ ///Row event argument class
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public class VisAnamCliRowChangeEvent : global::System.EventArgs {
+
+ private VisAnamCliRow eventRow;
+
+ private global::System.Data.DataRowAction eventAction;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisAnamCliRowChangeEvent(VisAnamCliRow row, global::System.Data.DataRowAction action) {
+ this.eventRow = row;
+ this.eventAction = action;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisAnamCliRow Row {
+ get {
+ return this.eventRow;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataRowAction Action {
+ get {
+ return this.eventAction;
+ }
+ }
+ }
+
+ ///
+ ///Row event argument class
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public class VisCardioPolRowChangeEvent : global::System.EventArgs {
+
+ private VisCardioPolRow eventRow;
+
+ private global::System.Data.DataRowAction eventAction;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisCardioPolRowChangeEvent(VisCardioPolRow row, global::System.Data.DataRowAction action) {
+ this.eventRow = row;
+ this.eventAction = action;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisCardioPolRow Row {
+ get {
+ return this.eventRow;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataRowAction Action {
+ get {
+ return this.eventAction;
+ }
+ }
+ }
+
+ ///
+ ///Row event argument class
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public class VisPsicoRowChangeEvent : global::System.EventArgs {
+
+ private VisPsicoRow eventRow;
+
+ private global::System.Data.DataRowAction eventAction;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisPsicoRowChangeEvent(VisPsicoRow row, global::System.Data.DataRowAction action) {
+ this.eventRow = row;
+ this.eventAction = action;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisPsicoRow Row {
+ get {
+ return this.eventRow;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataRowAction Action {
+ get {
+ return this.eventAction;
+ }
+ }
+ }
+
+ ///
+ ///Row event argument class
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public class VisStileVitaRowChangeEvent : global::System.EventArgs {
+
+ private VisStileVitaRow eventRow;
+
+ private global::System.Data.DataRowAction eventAction;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisStileVitaRowChangeEvent(VisStileVitaRow row, global::System.Data.DataRowAction action) {
+ this.eventRow = row;
+ this.eventAction = action;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisStileVitaRow Row {
+ get {
+ return this.eventRow;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataRowAction Action {
+ get {
+ return this.eventAction;
+ }
+ }
+ }
+
+ ///
+ ///Row event argument class
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public class VisRelazFinRowChangeEvent : global::System.EventArgs {
+
+ private VisRelazFinRow eventRow;
+
+ private global::System.Data.DataRowAction eventAction;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisRelazFinRowChangeEvent(VisRelazFinRow row, global::System.Data.DataRowAction action) {
+ this.eventRow = row;
+ this.eventAction = action;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisRelazFinRow Row {
+ get {
+ return this.eventRow;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataRowAction Action {
+ get {
+ return this.eventAction;
+ }
+ }
+ }
+
+ ///
+ ///Row event argument class
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public class stp_rep_DatiFullByPazienteDataRowChangeEvent : global::System.EventArgs {
+
+ private stp_rep_DatiFullByPazienteDataRow eventRow;
+
+ private global::System.Data.DataRowAction eventAction;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public stp_rep_DatiFullByPazienteDataRowChangeEvent(stp_rep_DatiFullByPazienteDataRow row, global::System.Data.DataRowAction action) {
+ this.eventRow = row;
+ this.eventAction = action;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public stp_rep_DatiFullByPazienteDataRow Row {
+ get {
+ return this.eventRow;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataRowAction Action {
+ get {
+ return this.eventAction;
+ }
+ }
+ }
+
+ ///
+ ///Row event argument class
+ ///
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public class VisBioMecAntRowChangeEvent : global::System.EventArgs {
+
+ private VisBioMecAntRow eventRow;
+
+ private global::System.Data.DataRowAction eventAction;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisBioMecAntRowChangeEvent(VisBioMecAntRow row, global::System.Data.DataRowAction action) {
+ this.eventRow = row;
+ this.eventAction = action;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisBioMecAntRow Row {
+ get {
+ return this.eventRow;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public global::System.Data.DataRowAction Action {
+ get {
+ return this.eventAction;
+ }
+ }
+ }
+ }
+}
+namespace MedPred_Data.DS_ApplicazioneTableAdapters {
+
+
+ ///
+ ///Represents the connection and commands used to retrieve and save data.
+ ///
+ [global::System.ComponentModel.DesignerCategoryAttribute("code")]
+ [global::System.ComponentModel.ToolboxItem(true)]
+ [global::System.ComponentModel.DataObjectAttribute(true)]
+ [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
+ ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public partial class AnagPazientiTableAdapter : global::System.ComponentModel.Component {
+
+ private global::System.Data.SqlClient.SqlDataAdapter _adapter;
+
+ private global::System.Data.SqlClient.SqlConnection _connection;
+
+ private global::System.Data.SqlClient.SqlTransaction _transaction;
+
+ private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
+
+ private bool _clearBeforeFill;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public AnagPazientiTableAdapter() {
+ this.ClearBeforeFill = true;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
+ get {
+ if ((this._adapter == null)) {
+ this.InitAdapter();
+ }
+ return this._adapter;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlConnection Connection {
+ get {
+ if ((this._connection == null)) {
+ this.InitConnection();
+ }
+ return this._connection;
+ }
+ set {
+ this._connection = value;
+ if ((this.Adapter.InsertCommand != null)) {
+ this.Adapter.InsertCommand.Connection = value;
+ }
+ if ((this.Adapter.DeleteCommand != null)) {
+ this.Adapter.DeleteCommand.Connection = value;
+ }
+ if ((this.Adapter.UpdateCommand != null)) {
+ this.Adapter.UpdateCommand.Connection = value;
+ }
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ if ((this.CommandCollection[i] != null)) {
+ ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
+ }
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlTransaction Transaction {
+ get {
+ return this._transaction;
+ }
+ set {
+ this._transaction = value;
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ this.CommandCollection[i].Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.DeleteCommand != null))) {
+ this.Adapter.DeleteCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.InsertCommand != null))) {
+ this.Adapter.InsertCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.UpdateCommand != null))) {
+ this.Adapter.UpdateCommand.Transaction = this._transaction;
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
+ get {
+ if ((this._commandCollection == null)) {
+ this.InitCommandCollection();
+ }
+ return this._commandCollection;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool ClearBeforeFill {
+ get {
+ return this._clearBeforeFill;
+ }
+ set {
+ this._clearBeforeFill = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitAdapter() {
+ this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
+ global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
+ tableMapping.SourceTable = "Table";
+ tableMapping.DataSetTable = "AnagPazienti";
+ tableMapping.ColumnMappings.Add("IdxPaziente", "IdxPaziente");
+ tableMapping.ColumnMappings.Add("Gruppo", "Gruppo");
+ tableMapping.ColumnMappings.Add("Cognome", "Cognome");
+ tableMapping.ColumnMappings.Add("Nome", "Nome");
+ tableMapping.ColumnMappings.Add("DataNasc", "DataNasc");
+ tableMapping.ColumnMappings.Add("LuogoNascita", "LuogoNascita");
+ tableMapping.ColumnMappings.Add("Sesso", "Sesso");
+ tableMapping.ColumnMappings.Add("CodF", "CodF");
+ tableMapping.ColumnMappings.Add("Indirizzo", "Indirizzo");
+ tableMapping.ColumnMappings.Add("Eta", "Eta");
+ tableMapping.ColumnMappings.Add("RecTel", "RecTel");
+ tableMapping.ColumnMappings.Add("Medico", "Medico");
+ tableMapping.ColumnMappings.Add("Note", "Note");
+ this._adapter.TableMappings.Add(tableMapping);
+ this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.DeleteCommand.Connection = this.Connection;
+ this._adapter.DeleteCommand.CommandText = @"DELETE FROM [AnagPazienti] WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([Gruppo] = @Original_Gruppo) AND ([Cognome] = @Original_Cognome) AND ([Nome] = @Original_Nome) AND ([DataNasc] = @Original_DataNasc) AND ([LuogoNascita] = @Original_LuogoNascita) AND ([Sesso] = @Original_Sesso) AND ([CodF] = @Original_CodF) AND ([Indirizzo] = @Original_Indirizzo) AND ((@IsNull_Eta = 1 AND [Eta] IS NULL) OR ([Eta] = @Original_Eta)) AND ([RecTel] = @Original_RecTel) AND ([Medico] = @Original_Medico) AND ([Note] = @Original_Note))";
+ this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Gruppo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Gruppo", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Cognome", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Cognome", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Nome", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Nome", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataNasc", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataNasc", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_LuogoNascita", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "LuogoNascita", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Sesso", global::System.Data.SqlDbType.Char, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Sesso", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodF", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodF", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Indirizzo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Indirizzo", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Eta", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Eta", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Eta", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Eta", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_RecTel", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "RecTel", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Medico", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Medico", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Note", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.InsertCommand.Connection = this.Connection;
+ this._adapter.InsertCommand.CommandText = @"INSERT INTO [AnagPazienti] ([Gruppo], [Cognome], [Nome], [DataNasc], [LuogoNascita], [Sesso], [CodF], [Indirizzo], [RecTel], [Medico], [Note]) VALUES (@Gruppo, @Cognome, @Nome, @DataNasc, @LuogoNascita, @Sesso, @CodF, @Indirizzo, @RecTel, @Medico, @Note);
+SELECT IdxPaziente, Gruppo, Cognome, Nome, DataNasc, LuogoNascita, Sesso, CodF, Indirizzo, Eta, RecTel, Medico, Note FROM AnagPazienti WHERE (IdxPaziente = SCOPE_IDENTITY())";
+ this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Gruppo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Gruppo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Cognome", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Cognome", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Nome", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Nome", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataNasc", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataNasc", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@LuogoNascita", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "LuogoNascita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Sesso", global::System.Data.SqlDbType.Char, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Sesso", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodF", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodF", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Indirizzo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Indirizzo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RecTel", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "RecTel", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Medico", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Medico", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Note", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.UpdateCommand.Connection = this.Connection;
+ this._adapter.UpdateCommand.CommandText = @"UPDATE [AnagPazienti] SET [Gruppo] = @Gruppo, [Cognome] = @Cognome, [Nome] = @Nome, [DataNasc] = @DataNasc, [LuogoNascita] = @LuogoNascita, [Sesso] = @Sesso, [CodF] = @CodF, [Indirizzo] = @Indirizzo, [RecTel] = @RecTel, [Medico] = @Medico, [Note] = @Note WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([Gruppo] = @Original_Gruppo) AND ([Cognome] = @Original_Cognome) AND ([Nome] = @Original_Nome) AND ([DataNasc] = @Original_DataNasc) AND ([LuogoNascita] = @Original_LuogoNascita) AND ([Sesso] = @Original_Sesso) AND ([CodF] = @Original_CodF) AND ([Indirizzo] = @Original_Indirizzo) AND ((@IsNull_Eta = 1 AND [Eta] IS NULL) OR ([Eta] = @Original_Eta)) AND ([RecTel] = @Original_RecTel) AND ([Medico] = @Original_Medico) AND ([Note] = @Original_Note));
+SELECT IdxPaziente, Gruppo, Cognome, Nome, DataNasc, LuogoNascita, Sesso, CodF, Indirizzo, Eta, RecTel, Medico, Note FROM AnagPazienti WHERE (IdxPaziente = @IdxPaziente)";
+ this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Gruppo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Gruppo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Cognome", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Cognome", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Nome", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Nome", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataNasc", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataNasc", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@LuogoNascita", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "LuogoNascita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Sesso", global::System.Data.SqlDbType.Char, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Sesso", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodF", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodF", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Indirizzo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Indirizzo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RecTel", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "RecTel", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Medico", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Medico", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Note", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Gruppo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Gruppo", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Cognome", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Cognome", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Nome", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Nome", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataNasc", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataNasc", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_LuogoNascita", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "LuogoNascita", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Sesso", global::System.Data.SqlDbType.Char, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Sesso", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_CodF", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "CodF", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Indirizzo", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Indirizzo", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_Eta", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Eta", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Eta", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Eta", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_RecTel", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "RecTel", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Medico", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Medico", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Note", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitConnection() {
+ this._connection = new global::System.Data.SqlClient.SqlConnection();
+ this._connection.ConnectionString = global::MedPred_Data.Properties.Settings.Default.MedPredConnectionString;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitCommandCollection() {
+ this._commandCollection = new global::System.Data.SqlClient.SqlCommand[6];
+ this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[0].Connection = this.Connection;
+ this._commandCollection[0].CommandText = "SELECT * FROM AnagPazienti";
+ this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
+ this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[1].Connection = this.Connection;
+ this._commandCollection[1].CommandText = "dbo.stp_AP_deleteQuery";
+ this._commandCollection[1].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[2].Connection = this.Connection;
+ this._commandCollection[2].CommandText = "dbo.stp_AP_getByGruppo";
+ this._commandCollection[2].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Gruppo", global::System.Data.SqlDbType.NVarChar, 5, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[3].Connection = this.Connection;
+ this._commandCollection[3].CommandText = "dbo.stp_AP_getByKey";
+ this._commandCollection[3].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[4].Connection = this.Connection;
+ this._commandCollection[4].CommandText = "dbo.stp_AP_insertQuery";
+ this._commandCollection[4].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Gruppo", global::System.Data.SqlDbType.NVarChar, 5, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Cognome", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Nome", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataNasc", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@LuogoNascita", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodF", global::System.Data.SqlDbType.NVarChar, 20, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Indirizzo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Sesso", global::System.Data.SqlDbType.Char, 1, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RecTel", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Medico", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.NVarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[5] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[5].Connection = this.Connection;
+ this._commandCollection[5].CommandText = "dbo.stp_AP_updateQuery";
+ this._commandCollection[5].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Cognome", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Nome", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataNasc", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@LuogoNascita", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CodF", global::System.Data.SqlDbType.NVarChar, 20, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Indirizzo", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Sesso", global::System.Data.SqlDbType.Char, 1, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RecTel", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Medico", global::System.Data.SqlDbType.NVarChar, 50, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.NVarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[5].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
+ public virtual int Fill(DS_Applicazione.AnagPazientiDataTable dataTable) {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ if ((this.ClearBeforeFill == true)) {
+ dataTable.Clear();
+ }
+ int returnValue = this.Adapter.Fill(dataTable);
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
+ public virtual DS_Applicazione.AnagPazientiDataTable GetData() {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ DS_Applicazione.AnagPazientiDataTable dataTable = new DS_Applicazione.AnagPazientiDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.AnagPazientiDataTable getByGruppo(string Gruppo) {
+ this.Adapter.SelectCommand = this.CommandCollection[2];
+ if ((Gruppo == null)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((string)(Gruppo));
+ }
+ DS_Applicazione.AnagPazientiDataTable dataTable = new DS_Applicazione.AnagPazientiDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.AnagPazientiDataTable getByKey(global::System.Nullable IdxPaziente) {
+ this.Adapter.SelectCommand = this.CommandCollection[3];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.AnagPazientiDataTable dataTable = new DS_Applicazione.AnagPazientiDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(DS_Applicazione.AnagPazientiDataTable dataTable) {
+ return this.Adapter.Update(dataTable);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(DS_Applicazione dataSet) {
+ return this.Adapter.Update(dataSet, "AnagPazienti");
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(global::System.Data.DataRow dataRow) {
+ return this.Adapter.Update(new global::System.Data.DataRow[] {
+ dataRow});
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(global::System.Data.DataRow[] dataRows) {
+ return this.Adapter.Update(dataRows);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
+ public virtual int Delete(int Original_IdxPaziente, string Original_Gruppo, string Original_Cognome, string Original_Nome, System.DateTime Original_DataNasc, string Original_LuogoNascita, string Original_Sesso, string Original_CodF, string Original_Indirizzo, global::System.Nullable Original_Eta, string Original_RecTel, string Original_Medico, string Original_Note) {
+ this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_IdxPaziente));
+ if ((Original_Gruppo == null)) {
+ throw new global::System.ArgumentNullException("Original_Gruppo");
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[1].Value = ((string)(Original_Gruppo));
+ }
+ if ((Original_Cognome == null)) {
+ throw new global::System.ArgumentNullException("Original_Cognome");
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[2].Value = ((string)(Original_Cognome));
+ }
+ if ((Original_Nome == null)) {
+ throw new global::System.ArgumentNullException("Original_Nome");
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[3].Value = ((string)(Original_Nome));
+ }
+ this.Adapter.DeleteCommand.Parameters[4].Value = ((System.DateTime)(Original_DataNasc));
+ if ((Original_LuogoNascita == null)) {
+ throw new global::System.ArgumentNullException("Original_LuogoNascita");
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[5].Value = ((string)(Original_LuogoNascita));
+ }
+ if ((Original_Sesso == null)) {
+ throw new global::System.ArgumentNullException("Original_Sesso");
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[6].Value = ((string)(Original_Sesso));
+ }
+ if ((Original_CodF == null)) {
+ throw new global::System.ArgumentNullException("Original_CodF");
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[7].Value = ((string)(Original_CodF));
+ }
+ if ((Original_Indirizzo == null)) {
+ throw new global::System.ArgumentNullException("Original_Indirizzo");
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[8].Value = ((string)(Original_Indirizzo));
+ }
+ if ((Original_Eta.HasValue == true)) {
+ this.Adapter.DeleteCommand.Parameters[9].Value = ((object)(0));
+ this.Adapter.DeleteCommand.Parameters[10].Value = ((double)(Original_Eta.Value));
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[9].Value = ((object)(1));
+ this.Adapter.DeleteCommand.Parameters[10].Value = global::System.DBNull.Value;
+ }
+ if ((Original_RecTel == null)) {
+ throw new global::System.ArgumentNullException("Original_RecTel");
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[11].Value = ((string)(Original_RecTel));
+ }
+ if ((Original_Medico == null)) {
+ throw new global::System.ArgumentNullException("Original_Medico");
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[12].Value = ((string)(Original_Medico));
+ }
+ if ((Original_Note == null)) {
+ throw new global::System.ArgumentNullException("Original_Note");
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[13].Value = ((string)(Original_Note));
+ }
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
+ if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.DeleteCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.DeleteCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
+ public virtual int Insert(string Gruppo, string Cognome, string Nome, System.DateTime DataNasc, string LuogoNascita, string Sesso, string CodF, string Indirizzo, string RecTel, string Medico, string Note) {
+ if ((Gruppo == null)) {
+ throw new global::System.ArgumentNullException("Gruppo");
+ }
+ else {
+ this.Adapter.InsertCommand.Parameters[0].Value = ((string)(Gruppo));
+ }
+ if ((Cognome == null)) {
+ throw new global::System.ArgumentNullException("Cognome");
+ }
+ else {
+ this.Adapter.InsertCommand.Parameters[1].Value = ((string)(Cognome));
+ }
+ if ((Nome == null)) {
+ throw new global::System.ArgumentNullException("Nome");
+ }
+ else {
+ this.Adapter.InsertCommand.Parameters[2].Value = ((string)(Nome));
+ }
+ this.Adapter.InsertCommand.Parameters[3].Value = ((System.DateTime)(DataNasc));
+ if ((LuogoNascita == null)) {
+ throw new global::System.ArgumentNullException("LuogoNascita");
+ }
+ else {
+ this.Adapter.InsertCommand.Parameters[4].Value = ((string)(LuogoNascita));
+ }
+ if ((Sesso == null)) {
+ throw new global::System.ArgumentNullException("Sesso");
+ }
+ else {
+ this.Adapter.InsertCommand.Parameters[5].Value = ((string)(Sesso));
+ }
+ if ((CodF == null)) {
+ throw new global::System.ArgumentNullException("CodF");
+ }
+ else {
+ this.Adapter.InsertCommand.Parameters[6].Value = ((string)(CodF));
+ }
+ if ((Indirizzo == null)) {
+ throw new global::System.ArgumentNullException("Indirizzo");
+ }
+ else {
+ this.Adapter.InsertCommand.Parameters[7].Value = ((string)(Indirizzo));
+ }
+ if ((RecTel == null)) {
+ throw new global::System.ArgumentNullException("RecTel");
+ }
+ else {
+ this.Adapter.InsertCommand.Parameters[8].Value = ((string)(RecTel));
+ }
+ if ((Medico == null)) {
+ throw new global::System.ArgumentNullException("Medico");
+ }
+ else {
+ this.Adapter.InsertCommand.Parameters[9].Value = ((string)(Medico));
+ }
+ if ((Note == null)) {
+ throw new global::System.ArgumentNullException("Note");
+ }
+ else {
+ this.Adapter.InsertCommand.Parameters[10].Value = ((string)(Note));
+ }
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
+ if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.InsertCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.InsertCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
+ public virtual int Update(
+ string Gruppo,
+ string Cognome,
+ string Nome,
+ System.DateTime DataNasc,
+ string LuogoNascita,
+ string Sesso,
+ string CodF,
+ string Indirizzo,
+ string RecTel,
+ string Medico,
+ string Note,
+ int Original_IdxPaziente,
+ string Original_Gruppo,
+ string Original_Cognome,
+ string Original_Nome,
+ System.DateTime Original_DataNasc,
+ string Original_LuogoNascita,
+ string Original_Sesso,
+ string Original_CodF,
+ string Original_Indirizzo,
+ global::System.Nullable Original_Eta,
+ string Original_RecTel,
+ string Original_Medico,
+ string Original_Note,
+ int IdxPaziente) {
+ if ((Gruppo == null)) {
+ throw new global::System.ArgumentNullException("Gruppo");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[0].Value = ((string)(Gruppo));
+ }
+ if ((Cognome == null)) {
+ throw new global::System.ArgumentNullException("Cognome");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(Cognome));
+ }
+ if ((Nome == null)) {
+ throw new global::System.ArgumentNullException("Nome");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[2].Value = ((string)(Nome));
+ }
+ this.Adapter.UpdateCommand.Parameters[3].Value = ((System.DateTime)(DataNasc));
+ if ((LuogoNascita == null)) {
+ throw new global::System.ArgumentNullException("LuogoNascita");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(LuogoNascita));
+ }
+ if ((Sesso == null)) {
+ throw new global::System.ArgumentNullException("Sesso");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(Sesso));
+ }
+ if ((CodF == null)) {
+ throw new global::System.ArgumentNullException("CodF");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[6].Value = ((string)(CodF));
+ }
+ if ((Indirizzo == null)) {
+ throw new global::System.ArgumentNullException("Indirizzo");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[7].Value = ((string)(Indirizzo));
+ }
+ if ((RecTel == null)) {
+ throw new global::System.ArgumentNullException("RecTel");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[8].Value = ((string)(RecTel));
+ }
+ if ((Medico == null)) {
+ throw new global::System.ArgumentNullException("Medico");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[9].Value = ((string)(Medico));
+ }
+ if ((Note == null)) {
+ throw new global::System.ArgumentNullException("Note");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[10].Value = ((string)(Note));
+ }
+ this.Adapter.UpdateCommand.Parameters[11].Value = ((int)(Original_IdxPaziente));
+ if ((Original_Gruppo == null)) {
+ throw new global::System.ArgumentNullException("Original_Gruppo");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[12].Value = ((string)(Original_Gruppo));
+ }
+ if ((Original_Cognome == null)) {
+ throw new global::System.ArgumentNullException("Original_Cognome");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[13].Value = ((string)(Original_Cognome));
+ }
+ if ((Original_Nome == null)) {
+ throw new global::System.ArgumentNullException("Original_Nome");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[14].Value = ((string)(Original_Nome));
+ }
+ this.Adapter.UpdateCommand.Parameters[15].Value = ((System.DateTime)(Original_DataNasc));
+ if ((Original_LuogoNascita == null)) {
+ throw new global::System.ArgumentNullException("Original_LuogoNascita");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[16].Value = ((string)(Original_LuogoNascita));
+ }
+ if ((Original_Sesso == null)) {
+ throw new global::System.ArgumentNullException("Original_Sesso");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[17].Value = ((string)(Original_Sesso));
+ }
+ if ((Original_CodF == null)) {
+ throw new global::System.ArgumentNullException("Original_CodF");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[18].Value = ((string)(Original_CodF));
+ }
+ if ((Original_Indirizzo == null)) {
+ throw new global::System.ArgumentNullException("Original_Indirizzo");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[19].Value = ((string)(Original_Indirizzo));
+ }
+ if ((Original_Eta.HasValue == true)) {
+ this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(0));
+ this.Adapter.UpdateCommand.Parameters[21].Value = ((double)(Original_Eta.Value));
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(1));
+ this.Adapter.UpdateCommand.Parameters[21].Value = global::System.DBNull.Value;
+ }
+ if ((Original_RecTel == null)) {
+ throw new global::System.ArgumentNullException("Original_RecTel");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[22].Value = ((string)(Original_RecTel));
+ }
+ if ((Original_Medico == null)) {
+ throw new global::System.ArgumentNullException("Original_Medico");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[23].Value = ((string)(Original_Medico));
+ }
+ if ((Original_Note == null)) {
+ throw new global::System.ArgumentNullException("Original_Note");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[24].Value = ((string)(Original_Note));
+ }
+ this.Adapter.UpdateCommand.Parameters[25].Value = ((int)(IdxPaziente));
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
+ if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.UpdateCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.UpdateCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
+ public virtual int Update(
+ string Gruppo,
+ string Cognome,
+ string Nome,
+ System.DateTime DataNasc,
+ string LuogoNascita,
+ string Sesso,
+ string CodF,
+ string Indirizzo,
+ string RecTel,
+ string Medico,
+ string Note,
+ int Original_IdxPaziente,
+ string Original_Gruppo,
+ string Original_Cognome,
+ string Original_Nome,
+ System.DateTime Original_DataNasc,
+ string Original_LuogoNascita,
+ string Original_Sesso,
+ string Original_CodF,
+ string Original_Indirizzo,
+ global::System.Nullable Original_Eta,
+ string Original_RecTel,
+ string Original_Medico,
+ string Original_Note) {
+ return this.Update(Gruppo, Cognome, Nome, DataNasc, LuogoNascita, Sesso, CodF, Indirizzo, RecTel, Medico, Note, Original_IdxPaziente, Original_Gruppo, Original_Cognome, Original_Nome, Original_DataNasc, Original_LuogoNascita, Original_Sesso, Original_CodF, Original_Indirizzo, Original_Eta, Original_RecTel, Original_Medico, Original_Note, Original_IdxPaziente);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, false)]
+ public virtual int deleteQuery(global::System.Nullable Original_IdxPaziente) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[1];
+ if ((Original_IdxPaziente.HasValue == true)) {
+ command.Parameters[1].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, false)]
+ public virtual int insertQuery(string Gruppo, string Cognome, string Nome, global::System.Nullable DataNasc, string LuogoNascita, string CodF, string Indirizzo, string Sesso, string RecTel, string Medico, string Note) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[4];
+ if ((Gruppo == null)) {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[1].Value = ((string)(Gruppo));
+ }
+ if ((Cognome == null)) {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[2].Value = ((string)(Cognome));
+ }
+ if ((Nome == null)) {
+ command.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[3].Value = ((string)(Nome));
+ }
+ if ((DataNasc.HasValue == true)) {
+ command.Parameters[4].Value = ((System.DateTime)(DataNasc.Value));
+ }
+ else {
+ command.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ if ((LuogoNascita == null)) {
+ command.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[5].Value = ((string)(LuogoNascita));
+ }
+ if ((CodF == null)) {
+ command.Parameters[6].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[6].Value = ((string)(CodF));
+ }
+ if ((Indirizzo == null)) {
+ command.Parameters[7].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[7].Value = ((string)(Indirizzo));
+ }
+ if ((Sesso == null)) {
+ command.Parameters[8].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[8].Value = ((string)(Sesso));
+ }
+ if ((RecTel == null)) {
+ command.Parameters[9].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[9].Value = ((string)(RecTel));
+ }
+ if ((Medico == null)) {
+ command.Parameters[10].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[10].Value = ((string)(Medico));
+ }
+ if ((Note == null)) {
+ command.Parameters[11].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[11].Value = ((string)(Note));
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, false)]
+ public virtual int updateQuery(string Cognome, string Nome, global::System.Nullable DataNasc, string LuogoNascita, string CodF, string Indirizzo, string Sesso, string RecTel, string Medico, string Note, global::System.Nullable Original_IdxPaziente) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[5];
+ if ((Cognome == null)) {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[1].Value = ((string)(Cognome));
+ }
+ if ((Nome == null)) {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[2].Value = ((string)(Nome));
+ }
+ if ((DataNasc.HasValue == true)) {
+ command.Parameters[3].Value = ((System.DateTime)(DataNasc.Value));
+ }
+ else {
+ command.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ if ((LuogoNascita == null)) {
+ command.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[4].Value = ((string)(LuogoNascita));
+ }
+ if ((CodF == null)) {
+ command.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[5].Value = ((string)(CodF));
+ }
+ if ((Indirizzo == null)) {
+ command.Parameters[6].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[6].Value = ((string)(Indirizzo));
+ }
+ if ((Sesso == null)) {
+ command.Parameters[7].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[7].Value = ((string)(Sesso));
+ }
+ if ((RecTel == null)) {
+ command.Parameters[8].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[8].Value = ((string)(RecTel));
+ }
+ if ((Medico == null)) {
+ command.Parameters[9].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[9].Value = ((string)(Medico));
+ }
+ if ((Note == null)) {
+ command.Parameters[10].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[10].Value = ((string)(Note));
+ }
+ if ((Original_IdxPaziente.HasValue == true)) {
+ command.Parameters[11].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[11].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+ }
+
+ ///
+ ///Represents the connection and commands used to retrieve and save data.
+ ///
+ [global::System.ComponentModel.DesignerCategoryAttribute("code")]
+ [global::System.ComponentModel.ToolboxItem(true)]
+ [global::System.ComponentModel.DataObjectAttribute(true)]
+ [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
+ ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public partial class ElencoVisiteTableAdapter : global::System.ComponentModel.Component {
+
+ private global::System.Data.SqlClient.SqlDataAdapter _adapter;
+
+ private global::System.Data.SqlClient.SqlConnection _connection;
+
+ private global::System.Data.SqlClient.SqlTransaction _transaction;
+
+ private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
+
+ private bool _clearBeforeFill;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public ElencoVisiteTableAdapter() {
+ this.ClearBeforeFill = true;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
+ get {
+ if ((this._adapter == null)) {
+ this.InitAdapter();
+ }
+ return this._adapter;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlConnection Connection {
+ get {
+ if ((this._connection == null)) {
+ this.InitConnection();
+ }
+ return this._connection;
+ }
+ set {
+ this._connection = value;
+ if ((this.Adapter.InsertCommand != null)) {
+ this.Adapter.InsertCommand.Connection = value;
+ }
+ if ((this.Adapter.DeleteCommand != null)) {
+ this.Adapter.DeleteCommand.Connection = value;
+ }
+ if ((this.Adapter.UpdateCommand != null)) {
+ this.Adapter.UpdateCommand.Connection = value;
+ }
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ if ((this.CommandCollection[i] != null)) {
+ ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
+ }
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlTransaction Transaction {
+ get {
+ return this._transaction;
+ }
+ set {
+ this._transaction = value;
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ this.CommandCollection[i].Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.DeleteCommand != null))) {
+ this.Adapter.DeleteCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.InsertCommand != null))) {
+ this.Adapter.InsertCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.UpdateCommand != null))) {
+ this.Adapter.UpdateCommand.Transaction = this._transaction;
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
+ get {
+ if ((this._commandCollection == null)) {
+ this.InitCommandCollection();
+ }
+ return this._commandCollection;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool ClearBeforeFill {
+ get {
+ return this._clearBeforeFill;
+ }
+ set {
+ this._clearBeforeFill = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitAdapter() {
+ this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
+ global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
+ tableMapping.SourceTable = "Table";
+ tableMapping.DataSetTable = "ElencoVisite";
+ tableMapping.ColumnMappings.Add("DataVisita", "DataVisita");
+ tableMapping.ColumnMappings.Add("VGen", "VAC");
+ tableMapping.ColumnMappings.Add("VCiclo", "VBMA");
+ tableMapping.ColumnMappings.Add("VEco", "VCP");
+ tableMapping.ColumnMappings.Add("VBMec", "VL");
+ tableMapping.ColumnMappings.Add("VLab", "VP");
+ tableMapping.ColumnMappings.Add("VPsi", "VSV");
+ tableMapping.ColumnMappings.Add("VAC", "VAC");
+ tableMapping.ColumnMappings.Add("VBMA", "VBMA");
+ tableMapping.ColumnMappings.Add("VCP", "VCP");
+ tableMapping.ColumnMappings.Add("VL", "VL");
+ tableMapping.ColumnMappings.Add("VP", "VP");
+ tableMapping.ColumnMappings.Add("VSV", "VSV");
+ tableMapping.ColumnMappings.Add("VRF", "VRF");
+ this._adapter.TableMappings.Add(tableMapping);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitConnection() {
+ this._connection = new global::System.Data.SqlClient.SqlConnection();
+ this._connection.ConnectionString = global::MedPred_Data.Properties.Settings.Default.MedPredConnectionString;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitCommandCollection() {
+ this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
+ this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[0].Connection = this.Connection;
+ this._commandCollection[0].CommandText = "dbo.stp_EV_getByIdxPaz";
+ this._commandCollection[0].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
+ public virtual int Fill(DS_Applicazione.ElencoVisiteDataTable dataTable, global::System.Nullable IdxPaziente) {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((this.ClearBeforeFill == true)) {
+ dataTable.Clear();
+ }
+ int returnValue = this.Adapter.Fill(dataTable);
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
+ public virtual DS_Applicazione.ElencoVisiteDataTable GetData(global::System.Nullable IdxPaziente) {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.ElencoVisiteDataTable dataTable = new DS_Applicazione.ElencoVisiteDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+ }
+
+ ///
+ ///Represents the connection and commands used to retrieve and save data.
+ ///
+ [global::System.ComponentModel.DesignerCategoryAttribute("code")]
+ [global::System.ComponentModel.ToolboxItem(true)]
+ [global::System.ComponentModel.DataObjectAttribute(true)]
+ [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
+ ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public partial class VisLabTableAdapter : global::System.ComponentModel.Component {
+
+ private global::System.Data.SqlClient.SqlDataAdapter _adapter;
+
+ private global::System.Data.SqlClient.SqlConnection _connection;
+
+ private global::System.Data.SqlClient.SqlTransaction _transaction;
+
+ private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
+
+ private bool _clearBeforeFill;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisLabTableAdapter() {
+ this.ClearBeforeFill = true;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
+ get {
+ if ((this._adapter == null)) {
+ this.InitAdapter();
+ }
+ return this._adapter;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlConnection Connection {
+ get {
+ if ((this._connection == null)) {
+ this.InitConnection();
+ }
+ return this._connection;
+ }
+ set {
+ this._connection = value;
+ if ((this.Adapter.InsertCommand != null)) {
+ this.Adapter.InsertCommand.Connection = value;
+ }
+ if ((this.Adapter.DeleteCommand != null)) {
+ this.Adapter.DeleteCommand.Connection = value;
+ }
+ if ((this.Adapter.UpdateCommand != null)) {
+ this.Adapter.UpdateCommand.Connection = value;
+ }
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ if ((this.CommandCollection[i] != null)) {
+ ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
+ }
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlTransaction Transaction {
+ get {
+ return this._transaction;
+ }
+ set {
+ this._transaction = value;
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ this.CommandCollection[i].Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.DeleteCommand != null))) {
+ this.Adapter.DeleteCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.InsertCommand != null))) {
+ this.Adapter.InsertCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.UpdateCommand != null))) {
+ this.Adapter.UpdateCommand.Transaction = this._transaction;
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
+ get {
+ if ((this._commandCollection == null)) {
+ this.InitCommandCollection();
+ }
+ return this._commandCollection;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool ClearBeforeFill {
+ get {
+ return this._clearBeforeFill;
+ }
+ set {
+ this._clearBeforeFill = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitAdapter() {
+ this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
+ global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
+ tableMapping.SourceTable = "Table";
+ tableMapping.DataSetTable = "VisLab";
+ tableMapping.ColumnMappings.Add("IdxPaziente", "IdxPaziente");
+ tableMapping.ColumnMappings.Add("DataVisita", "DataVisita");
+ tableMapping.ColumnMappings.Add("Glicemia", "Glicemia");
+ tableMapping.ColumnMappings.Add("EmoglGlicata", "EmoglGlicata");
+ tableMapping.ColumnMappings.Add("ColesTot", "ColesTot");
+ tableMapping.ColumnMappings.Add("LDL", "LDL");
+ tableMapping.ColumnMappings.Add("HDL", "HDL");
+ tableMapping.ColumnMappings.Add("Trigliceridi", "Trigliceridi");
+ tableMapping.ColumnMappings.Add("ColRapLDLHDL", "ColRapLDLHDL");
+ tableMapping.ColumnMappings.Add("Omocisteina", "Omocisteina");
+ tableMapping.ColumnMappings.Add("MHTFR", "MHTFR");
+ tableMapping.ColumnMappings.Add("FattII", "FattII");
+ tableMapping.ColumnMappings.Add("FattV", "FattV");
+ tableMapping.ColumnMappings.Add("GradTransm", "GradTransm");
+ tableMapping.ColumnMappings.Add("LungTelom", "LungTelom");
+ tableMapping.ColumnMappings.Add("RespSilenz", "RespSilenz");
+ tableMapping.ColumnMappings.Add("Folatemia", "Folatemia");
+ this._adapter.TableMappings.Add(tableMapping);
+ this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.DeleteCommand.Connection = this.Connection;
+ this._adapter.DeleteCommand.CommandText = @"DELETE FROM [VisLab] WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([DataVisita] = @Original_DataVisita) AND ([Glicemia] = @Original_Glicemia) AND ([EmoglGlicata] = @Original_EmoglGlicata) AND ([ColesTot] = @Original_ColesTot) AND ([LDL] = @Original_LDL) AND ([HDL] = @Original_HDL) AND ([Trigliceridi] = @Original_Trigliceridi) AND ([ColRapLDLHDL] = @Original_ColRapLDLHDL) AND ([Folatemia] = @Original_Folatemia) AND ([Omocisteina] = @Original_Omocisteina) AND ([MHTFR] = @Original_MHTFR) AND ([FattII] = @Original_FattII) AND ([FattV] = @Original_FattV) AND ([GradTransm] = @Original_GradTransm) AND ([LungTelom] = @Original_LungTelom) AND ([RespSilenz] = @Original_RespSilenz))";
+ this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Glicemia", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Glicemia", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EmoglGlicata", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EmoglGlicata", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ColesTot", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ColesTot", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_LDL", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "LDL", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_HDL", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "HDL", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Trigliceridi", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Trigliceridi", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ColRapLDLHDL", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ColRapLDLHDL", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Folatemia", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Folatemia", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Omocisteina", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Omocisteina", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_MHTFR", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "MHTFR", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FattII", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FattII", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FattV", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FattV", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_GradTransm", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "GradTransm", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_LungTelom", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "LungTelom", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_RespSilenz", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "RespSilenz", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.InsertCommand.Connection = this.Connection;
+ this._adapter.InsertCommand.CommandText = @"INSERT INTO [VisLab] ([IdxPaziente], [DataVisita], [Glicemia], [EmoglGlicata], [ColesTot], [LDL], [HDL], [Trigliceridi], [Folatemia], [Omocisteina], [MHTFR], [FattII], [FattV], [GradTransm], [LungTelom], [RespSilenz]) VALUES (@IdxPaziente, @DataVisita, @Glicemia, @EmoglGlicata, @ColesTot, @LDL, @HDL, @Trigliceridi, @Folatemia, @Omocisteina, @MHTFR, @FattII, @FattV, @GradTransm, @LungTelom, @RespSilenz);
+SELECT IdxPaziente, DataVisita, Glicemia, EmoglGlicata, ColesTot, LDL, HDL, Trigliceridi, ColRapLDLHDL, Folatemia, Omocisteina, MHTFR, FattII, FattV, GradTransm, LungTelom, RespSilenz FROM VisLab WHERE (DataVisita = @DataVisita) AND (IdxPaziente = @IdxPaziente)";
+ this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Glicemia", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Glicemia", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EmoglGlicata", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EmoglGlicata", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ColesTot", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ColesTot", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@LDL", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "LDL", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@HDL", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "HDL", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Trigliceridi", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Trigliceridi", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Folatemia", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Folatemia", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Omocisteina", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Omocisteina", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@MHTFR", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "MHTFR", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FattII", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FattII", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FattV", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FattV", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@GradTransm", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "GradTransm", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@LungTelom", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "LungTelom", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RespSilenz", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "RespSilenz", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.UpdateCommand.Connection = this.Connection;
+ this._adapter.UpdateCommand.CommandText = @"UPDATE [VisLab] SET [IdxPaziente] = @IdxPaziente, [DataVisita] = @DataVisita, [Glicemia] = @Glicemia, [EmoglGlicata] = @EmoglGlicata, [ColesTot] = @ColesTot, [LDL] = @LDL, [HDL] = @HDL, [Trigliceridi] = @Trigliceridi, [Folatemia] = @Folatemia, [Omocisteina] = @Omocisteina, [MHTFR] = @MHTFR, [FattII] = @FattII, [FattV] = @FattV, [GradTransm] = @GradTransm, [LungTelom] = @LungTelom, [RespSilenz] = @RespSilenz WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([DataVisita] = @Original_DataVisita) AND ([Glicemia] = @Original_Glicemia) AND ([EmoglGlicata] = @Original_EmoglGlicata) AND ([ColesTot] = @Original_ColesTot) AND ([LDL] = @Original_LDL) AND ([HDL] = @Original_HDL) AND ([Trigliceridi] = @Original_Trigliceridi) AND ([ColRapLDLHDL] = @Original_ColRapLDLHDL) AND ([Folatemia] = @Original_Folatemia) AND ([Omocisteina] = @Original_Omocisteina) AND ([MHTFR] = @Original_MHTFR) AND ([FattII] = @Original_FattII) AND ([FattV] = @Original_FattV) AND ([GradTransm] = @Original_GradTransm) AND ([LungTelom] = @Original_LungTelom) AND ([RespSilenz] = @Original_RespSilenz));
+SELECT IdxPaziente, DataVisita, Glicemia, EmoglGlicata, ColesTot, LDL, HDL, Trigliceridi, ColRapLDLHDL, Folatemia, Omocisteina, MHTFR, FattII, FattV, GradTransm, LungTelom, RespSilenz FROM VisLab WHERE (DataVisita = @DataVisita) AND (IdxPaziente = @IdxPaziente)";
+ this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Glicemia", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Glicemia", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EmoglGlicata", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EmoglGlicata", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ColesTot", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ColesTot", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@LDL", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "LDL", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@HDL", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "HDL", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Trigliceridi", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Trigliceridi", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Folatemia", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Folatemia", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Omocisteina", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Omocisteina", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@MHTFR", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "MHTFR", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FattII", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FattII", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FattV", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FattV", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@GradTransm", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "GradTransm", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@LungTelom", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "LungTelom", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RespSilenz", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "RespSilenz", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Glicemia", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Glicemia", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_EmoglGlicata", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "EmoglGlicata", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ColesTot", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ColesTot", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_LDL", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "LDL", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_HDL", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "HDL", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Trigliceridi", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Trigliceridi", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_ColRapLDLHDL", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "ColRapLDLHDL", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Folatemia", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Folatemia", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Omocisteina", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Omocisteina", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_MHTFR", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "MHTFR", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FattII", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FattII", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FattV", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FattV", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_GradTransm", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "GradTransm", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_LungTelom", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "LungTelom", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_RespSilenz", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "RespSilenz", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitConnection() {
+ this._connection = new global::System.Data.SqlClient.SqlConnection();
+ this._connection.ConnectionString = global::MedPred_Data.Properties.Settings.Default.MedPredConnectionString;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitCommandCollection() {
+ this._commandCollection = new global::System.Data.SqlClient.SqlCommand[5];
+ this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[0].Connection = this.Connection;
+ this._commandCollection[0].CommandText = "SELECT * FROM VisLab";
+ this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
+ this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[1].Connection = this.Connection;
+ this._commandCollection[1].CommandText = "dbo.stp_VLab_DeleteQuery";
+ this._commandCollection[1].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[2].Connection = this.Connection;
+ this._commandCollection[2].CommandText = "dbo.stp_VLab_getByPaziente";
+ this._commandCollection[2].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[3].Connection = this.Connection;
+ this._commandCollection[3].CommandText = "dbo.stp_VLab_InsertQuery";
+ this._commandCollection[3].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Glicemia", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EmoglGlicata", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ColesTot", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@LDL", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@HDL", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Trigliceridi", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Folatemia", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Omocisteina", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@MHTFR", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FattII", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FattV", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@GradTransm", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@LungTelom", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RespSilenz", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[4].Connection = this.Connection;
+ this._commandCollection[4].CommandText = "dbo.stp_VLab_UpdateQuery";
+ this._commandCollection[4].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Glicemia", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@EmoglGlicata", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@ColesTot", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@LDL", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@HDL", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Trigliceridi", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Folatemia", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Omocisteina", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@MHTFR", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FattII", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FattV", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@GradTransm", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@LungTelom", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RespSilenz", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
+ public virtual int Fill(DS_Applicazione.VisLabDataTable dataTable) {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ if ((this.ClearBeforeFill == true)) {
+ dataTable.Clear();
+ }
+ int returnValue = this.Adapter.Fill(dataTable);
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
+ public virtual DS_Applicazione.VisLabDataTable GetData() {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ DS_Applicazione.VisLabDataTable dataTable = new DS_Applicazione.VisLabDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.VisLabDataTable getByPaziente(global::System.Nullable IdxPaziente, global::System.Nullable DataVisita) {
+ this.Adapter.SelectCommand = this.CommandCollection[2];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.VisLabDataTable dataTable = new DS_Applicazione.VisLabDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.VisLabDataTable InsertQuery(
+ global::System.Nullable IdxPaziente,
+ global::System.Nullable DataVisita,
+ global::System.Nullable Glicemia,
+ global::System.Nullable EmoglGlicata,
+ global::System.Nullable ColesTot,
+ global::System.Nullable LDL,
+ global::System.Nullable HDL,
+ global::System.Nullable Trigliceridi,
+ global::System.Nullable Folatemia,
+ global::System.Nullable Omocisteina,
+ global::System.Nullable MHTFR,
+ global::System.Nullable FattII,
+ global::System.Nullable FattV,
+ global::System.Nullable GradTransm,
+ global::System.Nullable LungTelom,
+ global::System.Nullable RespSilenz) {
+ this.Adapter.SelectCommand = this.CommandCollection[3];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ if ((Glicemia.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[3].Value = ((double)(Glicemia.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ if ((EmoglGlicata.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[4].Value = ((double)(EmoglGlicata.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ if ((ColesTot.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[5].Value = ((double)(ColesTot.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ if ((LDL.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[6].Value = ((double)(LDL.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[6].Value = global::System.DBNull.Value;
+ }
+ if ((HDL.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[7].Value = ((double)(HDL.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[7].Value = global::System.DBNull.Value;
+ }
+ if ((Trigliceridi.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[8].Value = ((double)(Trigliceridi.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[8].Value = global::System.DBNull.Value;
+ }
+ if ((Folatemia.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[9].Value = ((double)(Folatemia.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[9].Value = global::System.DBNull.Value;
+ }
+ if ((Omocisteina.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[10].Value = ((double)(Omocisteina.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[10].Value = global::System.DBNull.Value;
+ }
+ if ((MHTFR.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[11].Value = ((double)(MHTFR.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[11].Value = global::System.DBNull.Value;
+ }
+ if ((FattII.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[12].Value = ((double)(FattII.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[12].Value = global::System.DBNull.Value;
+ }
+ if ((FattV.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[13].Value = ((double)(FattV.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[13].Value = global::System.DBNull.Value;
+ }
+ if ((GradTransm.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[14].Value = ((double)(GradTransm.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[14].Value = global::System.DBNull.Value;
+ }
+ if ((LungTelom.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[15].Value = ((double)(LungTelom.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[15].Value = global::System.DBNull.Value;
+ }
+ if ((RespSilenz.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[16].Value = ((double)(RespSilenz.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[16].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.VisLabDataTable dataTable = new DS_Applicazione.VisLabDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.VisLabDataTable UpdateQuery(
+ global::System.Nullable Glicemia,
+ global::System.Nullable EmoglGlicata,
+ global::System.Nullable ColesTot,
+ global::System.Nullable LDL,
+ global::System.Nullable HDL,
+ global::System.Nullable Trigliceridi,
+ global::System.Nullable Folatemia,
+ global::System.Nullable Omocisteina,
+ global::System.Nullable MHTFR,
+ global::System.Nullable FattII,
+ global::System.Nullable FattV,
+ global::System.Nullable GradTransm,
+ global::System.Nullable LungTelom,
+ global::System.Nullable RespSilenz,
+ global::System.Nullable Original_DataVisita,
+ global::System.Nullable Original_IdxPaziente) {
+ this.Adapter.SelectCommand = this.CommandCollection[4];
+ if ((Glicemia.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((double)(Glicemia.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((EmoglGlicata.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((double)(EmoglGlicata.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ if ((ColesTot.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[3].Value = ((double)(ColesTot.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ if ((LDL.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[4].Value = ((double)(LDL.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ if ((HDL.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[5].Value = ((double)(HDL.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ if ((Trigliceridi.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[6].Value = ((double)(Trigliceridi.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[6].Value = global::System.DBNull.Value;
+ }
+ if ((Folatemia.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[7].Value = ((double)(Folatemia.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[7].Value = global::System.DBNull.Value;
+ }
+ if ((Omocisteina.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[8].Value = ((double)(Omocisteina.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[8].Value = global::System.DBNull.Value;
+ }
+ if ((MHTFR.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[9].Value = ((double)(MHTFR.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[9].Value = global::System.DBNull.Value;
+ }
+ if ((FattII.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[10].Value = ((double)(FattII.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[10].Value = global::System.DBNull.Value;
+ }
+ if ((FattV.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[11].Value = ((double)(FattV.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[11].Value = global::System.DBNull.Value;
+ }
+ if ((GradTransm.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[12].Value = ((double)(GradTransm.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[12].Value = global::System.DBNull.Value;
+ }
+ if ((LungTelom.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[13].Value = ((double)(LungTelom.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[13].Value = global::System.DBNull.Value;
+ }
+ if ((RespSilenz.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[14].Value = ((double)(RespSilenz.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[14].Value = global::System.DBNull.Value;
+ }
+ if ((Original_DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[15].Value = ((System.DateTime)(Original_DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[15].Value = global::System.DBNull.Value;
+ }
+ if ((Original_IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[16].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[16].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.VisLabDataTable dataTable = new DS_Applicazione.VisLabDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(DS_Applicazione.VisLabDataTable dataTable) {
+ return this.Adapter.Update(dataTable);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(DS_Applicazione dataSet) {
+ return this.Adapter.Update(dataSet, "VisLab");
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(global::System.Data.DataRow dataRow) {
+ return this.Adapter.Update(new global::System.Data.DataRow[] {
+ dataRow});
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(global::System.Data.DataRow[] dataRows) {
+ return this.Adapter.Update(dataRows);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
+ public virtual int Delete(
+ int Original_IdxPaziente,
+ System.DateTime Original_DataVisita,
+ double Original_Glicemia,
+ double Original_EmoglGlicata,
+ double Original_ColesTot,
+ double Original_LDL,
+ double Original_HDL,
+ double Original_Trigliceridi,
+ double Original_ColRapLDLHDL,
+ double Original_Folatemia,
+ double Original_Omocisteina,
+ double Original_MHTFR,
+ double Original_FattII,
+ double Original_FattV,
+ double Original_GradTransm,
+ double Original_LungTelom,
+ double Original_RespSilenz) {
+ this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_IdxPaziente));
+ this.Adapter.DeleteCommand.Parameters[1].Value = ((System.DateTime)(Original_DataVisita));
+ this.Adapter.DeleteCommand.Parameters[2].Value = ((double)(Original_Glicemia));
+ this.Adapter.DeleteCommand.Parameters[3].Value = ((double)(Original_EmoglGlicata));
+ this.Adapter.DeleteCommand.Parameters[4].Value = ((double)(Original_ColesTot));
+ this.Adapter.DeleteCommand.Parameters[5].Value = ((double)(Original_LDL));
+ this.Adapter.DeleteCommand.Parameters[6].Value = ((double)(Original_HDL));
+ this.Adapter.DeleteCommand.Parameters[7].Value = ((double)(Original_Trigliceridi));
+ this.Adapter.DeleteCommand.Parameters[8].Value = ((double)(Original_ColRapLDLHDL));
+ this.Adapter.DeleteCommand.Parameters[9].Value = ((double)(Original_Folatemia));
+ this.Adapter.DeleteCommand.Parameters[10].Value = ((double)(Original_Omocisteina));
+ this.Adapter.DeleteCommand.Parameters[11].Value = ((double)(Original_MHTFR));
+ this.Adapter.DeleteCommand.Parameters[12].Value = ((double)(Original_FattII));
+ this.Adapter.DeleteCommand.Parameters[13].Value = ((double)(Original_FattV));
+ this.Adapter.DeleteCommand.Parameters[14].Value = ((double)(Original_GradTransm));
+ this.Adapter.DeleteCommand.Parameters[15].Value = ((double)(Original_LungTelom));
+ this.Adapter.DeleteCommand.Parameters[16].Value = ((double)(Original_RespSilenz));
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
+ if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.DeleteCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.DeleteCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
+ public virtual int Insert(
+ int IdxPaziente,
+ System.DateTime DataVisita,
+ double Glicemia,
+ double EmoglGlicata,
+ double ColesTot,
+ double LDL,
+ double HDL,
+ double Trigliceridi,
+ double Folatemia,
+ double Omocisteina,
+ double MHTFR,
+ double FattII,
+ double FattV,
+ double GradTransm,
+ double LungTelom,
+ double RespSilenz) {
+ this.Adapter.InsertCommand.Parameters[0].Value = ((int)(IdxPaziente));
+ this.Adapter.InsertCommand.Parameters[1].Value = ((System.DateTime)(DataVisita));
+ this.Adapter.InsertCommand.Parameters[2].Value = ((double)(Glicemia));
+ this.Adapter.InsertCommand.Parameters[3].Value = ((double)(EmoglGlicata));
+ this.Adapter.InsertCommand.Parameters[4].Value = ((double)(ColesTot));
+ this.Adapter.InsertCommand.Parameters[5].Value = ((double)(LDL));
+ this.Adapter.InsertCommand.Parameters[6].Value = ((double)(HDL));
+ this.Adapter.InsertCommand.Parameters[7].Value = ((double)(Trigliceridi));
+ this.Adapter.InsertCommand.Parameters[8].Value = ((double)(Folatemia));
+ this.Adapter.InsertCommand.Parameters[9].Value = ((double)(Omocisteina));
+ this.Adapter.InsertCommand.Parameters[10].Value = ((double)(MHTFR));
+ this.Adapter.InsertCommand.Parameters[11].Value = ((double)(FattII));
+ this.Adapter.InsertCommand.Parameters[12].Value = ((double)(FattV));
+ this.Adapter.InsertCommand.Parameters[13].Value = ((double)(GradTransm));
+ this.Adapter.InsertCommand.Parameters[14].Value = ((double)(LungTelom));
+ this.Adapter.InsertCommand.Parameters[15].Value = ((double)(RespSilenz));
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
+ if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.InsertCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.InsertCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
+ public virtual int Update(
+ int IdxPaziente,
+ System.DateTime DataVisita,
+ double Glicemia,
+ double EmoglGlicata,
+ double ColesTot,
+ double LDL,
+ double HDL,
+ double Trigliceridi,
+ double Folatemia,
+ double Omocisteina,
+ double MHTFR,
+ double FattII,
+ double FattV,
+ double GradTransm,
+ double LungTelom,
+ double RespSilenz,
+ int Original_IdxPaziente,
+ System.DateTime Original_DataVisita,
+ double Original_Glicemia,
+ double Original_EmoglGlicata,
+ double Original_ColesTot,
+ double Original_LDL,
+ double Original_HDL,
+ double Original_Trigliceridi,
+ double Original_ColRapLDLHDL,
+ double Original_Folatemia,
+ double Original_Omocisteina,
+ double Original_MHTFR,
+ double Original_FattII,
+ double Original_FattV,
+ double Original_GradTransm,
+ double Original_LungTelom,
+ double Original_RespSilenz) {
+ this.Adapter.UpdateCommand.Parameters[0].Value = ((int)(IdxPaziente));
+ this.Adapter.UpdateCommand.Parameters[1].Value = ((System.DateTime)(DataVisita));
+ this.Adapter.UpdateCommand.Parameters[2].Value = ((double)(Glicemia));
+ this.Adapter.UpdateCommand.Parameters[3].Value = ((double)(EmoglGlicata));
+ this.Adapter.UpdateCommand.Parameters[4].Value = ((double)(ColesTot));
+ this.Adapter.UpdateCommand.Parameters[5].Value = ((double)(LDL));
+ this.Adapter.UpdateCommand.Parameters[6].Value = ((double)(HDL));
+ this.Adapter.UpdateCommand.Parameters[7].Value = ((double)(Trigliceridi));
+ this.Adapter.UpdateCommand.Parameters[8].Value = ((double)(Folatemia));
+ this.Adapter.UpdateCommand.Parameters[9].Value = ((double)(Omocisteina));
+ this.Adapter.UpdateCommand.Parameters[10].Value = ((double)(MHTFR));
+ this.Adapter.UpdateCommand.Parameters[11].Value = ((double)(FattII));
+ this.Adapter.UpdateCommand.Parameters[12].Value = ((double)(FattV));
+ this.Adapter.UpdateCommand.Parameters[13].Value = ((double)(GradTransm));
+ this.Adapter.UpdateCommand.Parameters[14].Value = ((double)(LungTelom));
+ this.Adapter.UpdateCommand.Parameters[15].Value = ((double)(RespSilenz));
+ this.Adapter.UpdateCommand.Parameters[16].Value = ((int)(Original_IdxPaziente));
+ this.Adapter.UpdateCommand.Parameters[17].Value = ((System.DateTime)(Original_DataVisita));
+ this.Adapter.UpdateCommand.Parameters[18].Value = ((double)(Original_Glicemia));
+ this.Adapter.UpdateCommand.Parameters[19].Value = ((double)(Original_EmoglGlicata));
+ this.Adapter.UpdateCommand.Parameters[20].Value = ((double)(Original_ColesTot));
+ this.Adapter.UpdateCommand.Parameters[21].Value = ((double)(Original_LDL));
+ this.Adapter.UpdateCommand.Parameters[22].Value = ((double)(Original_HDL));
+ this.Adapter.UpdateCommand.Parameters[23].Value = ((double)(Original_Trigliceridi));
+ this.Adapter.UpdateCommand.Parameters[24].Value = ((double)(Original_ColRapLDLHDL));
+ this.Adapter.UpdateCommand.Parameters[25].Value = ((double)(Original_Folatemia));
+ this.Adapter.UpdateCommand.Parameters[26].Value = ((double)(Original_Omocisteina));
+ this.Adapter.UpdateCommand.Parameters[27].Value = ((double)(Original_MHTFR));
+ this.Adapter.UpdateCommand.Parameters[28].Value = ((double)(Original_FattII));
+ this.Adapter.UpdateCommand.Parameters[29].Value = ((double)(Original_FattV));
+ this.Adapter.UpdateCommand.Parameters[30].Value = ((double)(Original_GradTransm));
+ this.Adapter.UpdateCommand.Parameters[31].Value = ((double)(Original_LungTelom));
+ this.Adapter.UpdateCommand.Parameters[32].Value = ((double)(Original_RespSilenz));
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
+ if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.UpdateCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.UpdateCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
+ public virtual int Update(
+ double Glicemia,
+ double EmoglGlicata,
+ double ColesTot,
+ double LDL,
+ double HDL,
+ double Trigliceridi,
+ double Folatemia,
+ double Omocisteina,
+ double MHTFR,
+ double FattII,
+ double FattV,
+ double GradTransm,
+ double LungTelom,
+ double RespSilenz,
+ int Original_IdxPaziente,
+ System.DateTime Original_DataVisita,
+ double Original_Glicemia,
+ double Original_EmoglGlicata,
+ double Original_ColesTot,
+ double Original_LDL,
+ double Original_HDL,
+ double Original_Trigliceridi,
+ double Original_ColRapLDLHDL,
+ double Original_Folatemia,
+ double Original_Omocisteina,
+ double Original_MHTFR,
+ double Original_FattII,
+ double Original_FattV,
+ double Original_GradTransm,
+ double Original_LungTelom,
+ double Original_RespSilenz) {
+ return this.Update(Original_IdxPaziente, Original_DataVisita, Glicemia, EmoglGlicata, ColesTot, LDL, HDL, Trigliceridi, Folatemia, Omocisteina, MHTFR, FattII, FattV, GradTransm, LungTelom, RespSilenz, Original_IdxPaziente, Original_DataVisita, Original_Glicemia, Original_EmoglGlicata, Original_ColesTot, Original_LDL, Original_HDL, Original_Trigliceridi, Original_ColRapLDLHDL, Original_Folatemia, Original_Omocisteina, Original_MHTFR, Original_FattII, Original_FattV, Original_GradTransm, Original_LungTelom, Original_RespSilenz);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int DeleteQuery(global::System.Nullable Original_IdxPaziente, global::System.Nullable Original_DataVisita) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[1];
+ if ((Original_IdxPaziente.HasValue == true)) {
+ command.Parameters[1].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((Original_DataVisita.HasValue == true)) {
+ command.Parameters[2].Value = ((System.DateTime)(Original_DataVisita.Value));
+ }
+ else {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+ }
+
+ ///
+ ///Represents the connection and commands used to retrieve and save data.
+ ///
+ [global::System.ComponentModel.DesignerCategoryAttribute("code")]
+ [global::System.ComponentModel.ToolboxItem(true)]
+ [global::System.ComponentModel.DataObjectAttribute(true)]
+ [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
+ ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public partial class VisAnamCliTableAdapter : global::System.ComponentModel.Component {
+
+ private global::System.Data.SqlClient.SqlDataAdapter _adapter;
+
+ private global::System.Data.SqlClient.SqlConnection _connection;
+
+ private global::System.Data.SqlClient.SqlTransaction _transaction;
+
+ private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
+
+ private bool _clearBeforeFill;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisAnamCliTableAdapter() {
+ this.ClearBeforeFill = true;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
+ get {
+ if ((this._adapter == null)) {
+ this.InitAdapter();
+ }
+ return this._adapter;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlConnection Connection {
+ get {
+ if ((this._connection == null)) {
+ this.InitConnection();
+ }
+ return this._connection;
+ }
+ set {
+ this._connection = value;
+ if ((this.Adapter.InsertCommand != null)) {
+ this.Adapter.InsertCommand.Connection = value;
+ }
+ if ((this.Adapter.DeleteCommand != null)) {
+ this.Adapter.DeleteCommand.Connection = value;
+ }
+ if ((this.Adapter.UpdateCommand != null)) {
+ this.Adapter.UpdateCommand.Connection = value;
+ }
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ if ((this.CommandCollection[i] != null)) {
+ ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
+ }
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlTransaction Transaction {
+ get {
+ return this._transaction;
+ }
+ set {
+ this._transaction = value;
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ this.CommandCollection[i].Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.DeleteCommand != null))) {
+ this.Adapter.DeleteCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.InsertCommand != null))) {
+ this.Adapter.InsertCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.UpdateCommand != null))) {
+ this.Adapter.UpdateCommand.Transaction = this._transaction;
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
+ get {
+ if ((this._commandCollection == null)) {
+ this.InitCommandCollection();
+ }
+ return this._commandCollection;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool ClearBeforeFill {
+ get {
+ return this._clearBeforeFill;
+ }
+ set {
+ this._clearBeforeFill = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitAdapter() {
+ this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
+ global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
+ tableMapping.SourceTable = "Table";
+ tableMapping.DataSetTable = "VisAnamCli";
+ tableMapping.ColumnMappings.Add("IdxPaziente", "IdxPaziente");
+ tableMapping.ColumnMappings.Add("DataVisita", "DataVisita");
+ tableMapping.ColumnMappings.Add("FamMCCV", "FamMCCV");
+ tableMapping.ColumnMappings.Add("Ipertens", "Ipertens");
+ tableMapping.ColumnMappings.Add("IpertensYtd", "IpertensYtd");
+ tableMapping.ColumnMappings.Add("Diabete", "Diabete");
+ tableMapping.ColumnMappings.Add("DiabeteYtd", "DiabeteYtd");
+ tableMapping.ColumnMappings.Add("Ipercolest", "Ipercolest");
+ tableMapping.ColumnMappings.Add("IpercolestYtd", "IpercolestYtd");
+ tableMapping.ColumnMappings.Add("Fumo", "Fumo");
+ tableMapping.ColumnMappings.Add("FumoYtd", "FumoYtd");
+ tableMapping.ColumnMappings.Add("Alcool", "Alcool");
+ tableMapping.ColumnMappings.Add("AlcoolYtd", "AlcoolYtd");
+ tableMapping.ColumnMappings.Add("Sovrapp", "Sovrapp");
+ tableMapping.ColumnMappings.Add("SovrappYtd", "SovrappYtd");
+ tableMapping.ColumnMappings.Add("Sedent", "Sedent");
+ tableMapping.ColumnMappings.Add("AdesTerap", "AdesTerap");
+ this._adapter.TableMappings.Add(tableMapping);
+ this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.DeleteCommand.Connection = this.Connection;
+ this._adapter.DeleteCommand.CommandText = @"DELETE FROM [dbo].[VisAnamCli] WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([DataVisita] = @Original_DataVisita) AND ([FamMCCV] = @Original_FamMCCV) AND ([Ipertens] = @Original_Ipertens) AND ([IpertensYtd] = @Original_IpertensYtd) AND ([Diabete] = @Original_Diabete) AND ([DiabeteYtd] = @Original_DiabeteYtd) AND ([Ipercolest] = @Original_Ipercolest) AND ([IpercolestYtd] = @Original_IpercolestYtd) AND ([Fumo] = @Original_Fumo) AND ([FumoYtd] = @Original_FumoYtd) AND ([Alcool] = @Original_Alcool) AND ([AlcoolYtd] = @Original_AlcoolYtd) AND ([Sovrapp] = @Original_Sovrapp) AND ([SovrappYtd] = @Original_SovrappYtd) AND ([Sedent] = @Original_Sedent) AND ([AdesTerap] = @Original_AdesTerap))";
+ this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FamMCCV", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FamMCCV", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Ipertens", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Ipertens", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IpertensYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IpertensYtd", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Diabete", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Diabete", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DiabeteYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DiabeteYtd", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Ipercolest", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Ipercolest", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IpercolestYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IpercolestYtd", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Fumo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Fumo", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FumoYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FumoYtd", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Alcool", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Alcool", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_AlcoolYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "AlcoolYtd", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Sovrapp", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Sovrapp", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_SovrappYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SovrappYtd", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Sedent", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Sedent", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_AdesTerap", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "AdesTerap", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.InsertCommand.Connection = this.Connection;
+ this._adapter.InsertCommand.CommandText = @"INSERT INTO [dbo].[VisAnamCli] ([IdxPaziente], [DataVisita], [FamMCCV], [Ipertens], [IpertensYtd], [Diabete], [DiabeteYtd], [Ipercolest], [IpercolestYtd], [Fumo], [FumoYtd], [Alcool], [AlcoolYtd], [Sovrapp], [SovrappYtd], [Sedent], [AdesTerap]) VALUES (@IdxPaziente, @DataVisita, @FamMCCV, @Ipertens, @IpertensYtd, @Diabete, @DiabeteYtd, @Ipercolest, @IpercolestYtd, @Fumo, @FumoYtd, @Alcool, @AlcoolYtd, @Sovrapp, @SovrappYtd, @Sedent, @AdesTerap);
+SELECT IdxPaziente, DataVisita, FamMCCV, Ipertens, IpertensYtd, Diabete, DiabeteYtd, Ipercolest, IpercolestYtd, Fumo, FumoYtd, Alcool, AlcoolYtd, Sovrapp, SovrappYtd, Sedent, AdesTerap FROM VisAnamCli WHERE (DataVisita = @DataVisita) AND (IdxPaziente = @IdxPaziente)";
+ this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FamMCCV", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FamMCCV", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Ipertens", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Ipertens", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IpertensYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IpertensYtd", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Diabete", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Diabete", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DiabeteYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DiabeteYtd", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Ipercolest", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Ipercolest", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IpercolestYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IpercolestYtd", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Fumo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Fumo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FumoYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FumoYtd", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Alcool", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Alcool", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@AlcoolYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "AlcoolYtd", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Sovrapp", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Sovrapp", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@SovrappYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SovrappYtd", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Sedent", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Sedent", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@AdesTerap", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "AdesTerap", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.UpdateCommand.Connection = this.Connection;
+ this._adapter.UpdateCommand.CommandText = @"UPDATE [dbo].[VisAnamCli] SET [IdxPaziente] = @IdxPaziente, [DataVisita] = @DataVisita, [FamMCCV] = @FamMCCV, [Ipertens] = @Ipertens, [IpertensYtd] = @IpertensYtd, [Diabete] = @Diabete, [DiabeteYtd] = @DiabeteYtd, [Ipercolest] = @Ipercolest, [IpercolestYtd] = @IpercolestYtd, [Fumo] = @Fumo, [FumoYtd] = @FumoYtd, [Alcool] = @Alcool, [AlcoolYtd] = @AlcoolYtd, [Sovrapp] = @Sovrapp, [SovrappYtd] = @SovrappYtd, [Sedent] = @Sedent, [AdesTerap] = @AdesTerap WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([DataVisita] = @Original_DataVisita) AND ([FamMCCV] = @Original_FamMCCV) AND ([Ipertens] = @Original_Ipertens) AND ([IpertensYtd] = @Original_IpertensYtd) AND ([Diabete] = @Original_Diabete) AND ([DiabeteYtd] = @Original_DiabeteYtd) AND ([Ipercolest] = @Original_Ipercolest) AND ([IpercolestYtd] = @Original_IpercolestYtd) AND ([Fumo] = @Original_Fumo) AND ([FumoYtd] = @Original_FumoYtd) AND ([Alcool] = @Original_Alcool) AND ([AlcoolYtd] = @Original_AlcoolYtd) AND ([Sovrapp] = @Original_Sovrapp) AND ([SovrappYtd] = @Original_SovrappYtd) AND ([Sedent] = @Original_Sedent) AND ([AdesTerap] = @Original_AdesTerap));
+SELECT IdxPaziente, DataVisita, FamMCCV, Ipertens, IpertensYtd, Diabete, DiabeteYtd, Ipercolest, IpercolestYtd, Fumo, FumoYtd, Alcool, AlcoolYtd, Sovrapp, SovrappYtd, Sedent, AdesTerap FROM VisAnamCli WHERE (DataVisita = @DataVisita) AND (IdxPaziente = @IdxPaziente)";
+ this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FamMCCV", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FamMCCV", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Ipertens", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Ipertens", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IpertensYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IpertensYtd", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Diabete", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Diabete", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DiabeteYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DiabeteYtd", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Ipercolest", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Ipercolest", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IpercolestYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IpercolestYtd", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Fumo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Fumo", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FumoYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FumoYtd", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Alcool", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Alcool", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@AlcoolYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "AlcoolYtd", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Sovrapp", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Sovrapp", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@SovrappYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SovrappYtd", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Sedent", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Sedent", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@AdesTerap", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "AdesTerap", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FamMCCV", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FamMCCV", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Ipertens", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Ipertens", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IpertensYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IpertensYtd", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Diabete", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Diabete", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DiabeteYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DiabeteYtd", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Ipercolest", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Ipercolest", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IpercolestYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IpercolestYtd", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Fumo", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Fumo", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FumoYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FumoYtd", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Alcool", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Alcool", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_AlcoolYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "AlcoolYtd", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Sovrapp", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Sovrapp", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_SovrappYtd", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "SovrappYtd", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Sedent", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Sedent", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_AdesTerap", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "AdesTerap", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitConnection() {
+ this._connection = new global::System.Data.SqlClient.SqlConnection();
+ this._connection.ConnectionString = global::MedPred_Data.Properties.Settings.Default.MedPredConnectionString;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitCommandCollection() {
+ this._commandCollection = new global::System.Data.SqlClient.SqlCommand[5];
+ this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[0].Connection = this.Connection;
+ this._commandCollection[0].CommandText = "SELECT IdxPaziente, DataVisita, FamMCCV, Ipertens, IpertensYtd, Diabete, DiabeteY" +
+ "td, Ipercolest, IpercolestYtd, Fumo, FumoYtd, Alcool, AlcoolYtd, Sovrapp, Sovrap" +
+ "pYtd, Sedent, AdesTerap FROM dbo.VisAnamCli";
+ this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
+ this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[1].Connection = this.Connection;
+ this._commandCollection[1].CommandText = "dbo.stp_VAC_DeleteQuery";
+ this._commandCollection[1].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[2].Connection = this.Connection;
+ this._commandCollection[2].CommandText = "dbo.stp_VAC_getByPaziente";
+ this._commandCollection[2].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[3].Connection = this.Connection;
+ this._commandCollection[3].CommandText = "dbo.stp_VAC_InsertQuery";
+ this._commandCollection[3].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FamMCCV", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Ipertens", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IpertensYtd", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Diabete", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DiabeteYtd", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Ipercolest", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IpercolestYtd", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Fumo", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FumoYtd", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Alcool", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@AlcoolYtd", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Sovrapp", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@SovrappYtd", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Sedent", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@AdesTerap", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[4].Connection = this.Connection;
+ this._commandCollection[4].CommandText = "dbo.stp_VAC_UpdateQuery";
+ this._commandCollection[4].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FamMCCV", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Ipertens", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IpertensYtd", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Diabete", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DiabeteYtd", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Ipercolest", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IpercolestYtd", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Fumo", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FumoYtd", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Alcool", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@AlcoolYtd", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Sovrapp", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@SovrappYtd", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Sedent", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@AdesTerap", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
+ public virtual int Fill(DS_Applicazione.VisAnamCliDataTable dataTable) {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ if ((this.ClearBeforeFill == true)) {
+ dataTable.Clear();
+ }
+ int returnValue = this.Adapter.Fill(dataTable);
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
+ public virtual DS_Applicazione.VisAnamCliDataTable GetData() {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ DS_Applicazione.VisAnamCliDataTable dataTable = new DS_Applicazione.VisAnamCliDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.VisAnamCliDataTable getByPaziente(global::System.Nullable IdxPaziente, global::System.Nullable DataVisita) {
+ this.Adapter.SelectCommand = this.CommandCollection[2];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.VisAnamCliDataTable dataTable = new DS_Applicazione.VisAnamCliDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.VisAnamCliDataTable InsertQuery(
+ global::System.Nullable IdxPaziente,
+ global::System.Nullable DataVisita,
+ global::System.Nullable FamMCCV,
+ global::System.Nullable Ipertens,
+ global::System.Nullable IpertensYtd,
+ global::System.Nullable Diabete,
+ global::System.Nullable DiabeteYtd,
+ global::System.Nullable Ipercolest,
+ global::System.Nullable IpercolestYtd,
+ global::System.Nullable Fumo,
+ global::System.Nullable FumoYtd,
+ global::System.Nullable Alcool,
+ global::System.Nullable AlcoolYtd,
+ global::System.Nullable Sovrapp,
+ global::System.Nullable SovrappYtd,
+ global::System.Nullable Sedent,
+ global::System.Nullable AdesTerap) {
+ this.Adapter.SelectCommand = this.CommandCollection[3];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ if ((FamMCCV.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[3].Value = ((int)(FamMCCV.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ if ((Ipertens.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[4].Value = ((int)(Ipertens.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ if ((IpertensYtd.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[5].Value = ((int)(IpertensYtd.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ if ((Diabete.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[6].Value = ((int)(Diabete.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[6].Value = global::System.DBNull.Value;
+ }
+ if ((DiabeteYtd.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[7].Value = ((int)(DiabeteYtd.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[7].Value = global::System.DBNull.Value;
+ }
+ if ((Ipercolest.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[8].Value = ((int)(Ipercolest.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[8].Value = global::System.DBNull.Value;
+ }
+ if ((IpercolestYtd.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[9].Value = ((int)(IpercolestYtd.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[9].Value = global::System.DBNull.Value;
+ }
+ if ((Fumo.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[10].Value = ((int)(Fumo.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[10].Value = global::System.DBNull.Value;
+ }
+ if ((FumoYtd.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[11].Value = ((int)(FumoYtd.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[11].Value = global::System.DBNull.Value;
+ }
+ if ((Alcool.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[12].Value = ((int)(Alcool.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[12].Value = global::System.DBNull.Value;
+ }
+ if ((AlcoolYtd.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[13].Value = ((int)(AlcoolYtd.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[13].Value = global::System.DBNull.Value;
+ }
+ if ((Sovrapp.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[14].Value = ((int)(Sovrapp.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[14].Value = global::System.DBNull.Value;
+ }
+ if ((SovrappYtd.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[15].Value = ((int)(SovrappYtd.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[15].Value = global::System.DBNull.Value;
+ }
+ if ((Sedent.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[16].Value = ((int)(Sedent.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[16].Value = global::System.DBNull.Value;
+ }
+ if ((AdesTerap.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[17].Value = ((int)(AdesTerap.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[17].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.VisAnamCliDataTable dataTable = new DS_Applicazione.VisAnamCliDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.VisAnamCliDataTable UpdateQuery(
+ global::System.Nullable DataVisita,
+ global::System.Nullable FamMCCV,
+ global::System.Nullable Ipertens,
+ global::System.Nullable IpertensYtd,
+ global::System.Nullable Diabete,
+ global::System.Nullable DiabeteYtd,
+ global::System.Nullable Ipercolest,
+ global::System.Nullable IpercolestYtd,
+ global::System.Nullable Fumo,
+ global::System.Nullable FumoYtd,
+ global::System.Nullable Alcool,
+ global::System.Nullable AlcoolYtd,
+ global::System.Nullable Sovrapp,
+ global::System.Nullable SovrappYtd,
+ global::System.Nullable Sedent,
+ global::System.Nullable AdesTerap,
+ global::System.Nullable Original_DataVisita,
+ global::System.Nullable Original_IdxPaziente) {
+ this.Adapter.SelectCommand = this.CommandCollection[4];
+ if ((DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((FamMCCV.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((int)(FamMCCV.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ if ((Ipertens.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[3].Value = ((int)(Ipertens.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ if ((IpertensYtd.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[4].Value = ((int)(IpertensYtd.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ if ((Diabete.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[5].Value = ((int)(Diabete.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ if ((DiabeteYtd.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[6].Value = ((int)(DiabeteYtd.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[6].Value = global::System.DBNull.Value;
+ }
+ if ((Ipercolest.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[7].Value = ((int)(Ipercolest.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[7].Value = global::System.DBNull.Value;
+ }
+ if ((IpercolestYtd.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[8].Value = ((int)(IpercolestYtd.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[8].Value = global::System.DBNull.Value;
+ }
+ if ((Fumo.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[9].Value = ((int)(Fumo.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[9].Value = global::System.DBNull.Value;
+ }
+ if ((FumoYtd.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[10].Value = ((int)(FumoYtd.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[10].Value = global::System.DBNull.Value;
+ }
+ if ((Alcool.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[11].Value = ((int)(Alcool.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[11].Value = global::System.DBNull.Value;
+ }
+ if ((AlcoolYtd.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[12].Value = ((int)(AlcoolYtd.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[12].Value = global::System.DBNull.Value;
+ }
+ if ((Sovrapp.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[13].Value = ((int)(Sovrapp.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[13].Value = global::System.DBNull.Value;
+ }
+ if ((SovrappYtd.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[14].Value = ((int)(SovrappYtd.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[14].Value = global::System.DBNull.Value;
+ }
+ if ((Sedent.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[15].Value = ((int)(Sedent.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[15].Value = global::System.DBNull.Value;
+ }
+ if ((AdesTerap.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[16].Value = ((int)(AdesTerap.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[16].Value = global::System.DBNull.Value;
+ }
+ if ((Original_DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[17].Value = ((System.DateTime)(Original_DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[17].Value = global::System.DBNull.Value;
+ }
+ if ((Original_IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[18].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[18].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.VisAnamCliDataTable dataTable = new DS_Applicazione.VisAnamCliDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(DS_Applicazione.VisAnamCliDataTable dataTable) {
+ return this.Adapter.Update(dataTable);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(DS_Applicazione dataSet) {
+ return this.Adapter.Update(dataSet, "VisAnamCli");
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(global::System.Data.DataRow dataRow) {
+ return this.Adapter.Update(new global::System.Data.DataRow[] {
+ dataRow});
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(global::System.Data.DataRow[] dataRows) {
+ return this.Adapter.Update(dataRows);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
+ public virtual int Delete(
+ int Original_IdxPaziente,
+ System.DateTime Original_DataVisita,
+ int Original_FamMCCV,
+ int Original_Ipertens,
+ int Original_IpertensYtd,
+ int Original_Diabete,
+ int Original_DiabeteYtd,
+ int Original_Ipercolest,
+ int Original_IpercolestYtd,
+ int Original_Fumo,
+ int Original_FumoYtd,
+ int Original_Alcool,
+ int Original_AlcoolYtd,
+ int Original_Sovrapp,
+ int Original_SovrappYtd,
+ int Original_Sedent,
+ int Original_AdesTerap) {
+ this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_IdxPaziente));
+ this.Adapter.DeleteCommand.Parameters[1].Value = ((System.DateTime)(Original_DataVisita));
+ this.Adapter.DeleteCommand.Parameters[2].Value = ((int)(Original_FamMCCV));
+ this.Adapter.DeleteCommand.Parameters[3].Value = ((int)(Original_Ipertens));
+ this.Adapter.DeleteCommand.Parameters[4].Value = ((int)(Original_IpertensYtd));
+ this.Adapter.DeleteCommand.Parameters[5].Value = ((int)(Original_Diabete));
+ this.Adapter.DeleteCommand.Parameters[6].Value = ((int)(Original_DiabeteYtd));
+ this.Adapter.DeleteCommand.Parameters[7].Value = ((int)(Original_Ipercolest));
+ this.Adapter.DeleteCommand.Parameters[8].Value = ((int)(Original_IpercolestYtd));
+ this.Adapter.DeleteCommand.Parameters[9].Value = ((int)(Original_Fumo));
+ this.Adapter.DeleteCommand.Parameters[10].Value = ((int)(Original_FumoYtd));
+ this.Adapter.DeleteCommand.Parameters[11].Value = ((int)(Original_Alcool));
+ this.Adapter.DeleteCommand.Parameters[12].Value = ((int)(Original_AlcoolYtd));
+ this.Adapter.DeleteCommand.Parameters[13].Value = ((int)(Original_Sovrapp));
+ this.Adapter.DeleteCommand.Parameters[14].Value = ((int)(Original_SovrappYtd));
+ this.Adapter.DeleteCommand.Parameters[15].Value = ((int)(Original_Sedent));
+ this.Adapter.DeleteCommand.Parameters[16].Value = ((int)(Original_AdesTerap));
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
+ if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.DeleteCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.DeleteCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
+ public virtual int Insert(
+ int IdxPaziente,
+ System.DateTime DataVisita,
+ int FamMCCV,
+ int Ipertens,
+ int IpertensYtd,
+ int Diabete,
+ int DiabeteYtd,
+ int Ipercolest,
+ int IpercolestYtd,
+ int Fumo,
+ int FumoYtd,
+ int Alcool,
+ int AlcoolYtd,
+ int Sovrapp,
+ int SovrappYtd,
+ int Sedent,
+ int AdesTerap) {
+ this.Adapter.InsertCommand.Parameters[0].Value = ((int)(IdxPaziente));
+ this.Adapter.InsertCommand.Parameters[1].Value = ((System.DateTime)(DataVisita));
+ this.Adapter.InsertCommand.Parameters[2].Value = ((int)(FamMCCV));
+ this.Adapter.InsertCommand.Parameters[3].Value = ((int)(Ipertens));
+ this.Adapter.InsertCommand.Parameters[4].Value = ((int)(IpertensYtd));
+ this.Adapter.InsertCommand.Parameters[5].Value = ((int)(Diabete));
+ this.Adapter.InsertCommand.Parameters[6].Value = ((int)(DiabeteYtd));
+ this.Adapter.InsertCommand.Parameters[7].Value = ((int)(Ipercolest));
+ this.Adapter.InsertCommand.Parameters[8].Value = ((int)(IpercolestYtd));
+ this.Adapter.InsertCommand.Parameters[9].Value = ((int)(Fumo));
+ this.Adapter.InsertCommand.Parameters[10].Value = ((int)(FumoYtd));
+ this.Adapter.InsertCommand.Parameters[11].Value = ((int)(Alcool));
+ this.Adapter.InsertCommand.Parameters[12].Value = ((int)(AlcoolYtd));
+ this.Adapter.InsertCommand.Parameters[13].Value = ((int)(Sovrapp));
+ this.Adapter.InsertCommand.Parameters[14].Value = ((int)(SovrappYtd));
+ this.Adapter.InsertCommand.Parameters[15].Value = ((int)(Sedent));
+ this.Adapter.InsertCommand.Parameters[16].Value = ((int)(AdesTerap));
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
+ if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.InsertCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.InsertCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
+ public virtual int Update(
+ int IdxPaziente,
+ System.DateTime DataVisita,
+ int FamMCCV,
+ int Ipertens,
+ int IpertensYtd,
+ int Diabete,
+ int DiabeteYtd,
+ int Ipercolest,
+ int IpercolestYtd,
+ int Fumo,
+ int FumoYtd,
+ int Alcool,
+ int AlcoolYtd,
+ int Sovrapp,
+ int SovrappYtd,
+ int Sedent,
+ int AdesTerap,
+ int Original_IdxPaziente,
+ System.DateTime Original_DataVisita,
+ int Original_FamMCCV,
+ int Original_Ipertens,
+ int Original_IpertensYtd,
+ int Original_Diabete,
+ int Original_DiabeteYtd,
+ int Original_Ipercolest,
+ int Original_IpercolestYtd,
+ int Original_Fumo,
+ int Original_FumoYtd,
+ int Original_Alcool,
+ int Original_AlcoolYtd,
+ int Original_Sovrapp,
+ int Original_SovrappYtd,
+ int Original_Sedent,
+ int Original_AdesTerap) {
+ this.Adapter.UpdateCommand.Parameters[0].Value = ((int)(IdxPaziente));
+ this.Adapter.UpdateCommand.Parameters[1].Value = ((System.DateTime)(DataVisita));
+ this.Adapter.UpdateCommand.Parameters[2].Value = ((int)(FamMCCV));
+ this.Adapter.UpdateCommand.Parameters[3].Value = ((int)(Ipertens));
+ this.Adapter.UpdateCommand.Parameters[4].Value = ((int)(IpertensYtd));
+ this.Adapter.UpdateCommand.Parameters[5].Value = ((int)(Diabete));
+ this.Adapter.UpdateCommand.Parameters[6].Value = ((int)(DiabeteYtd));
+ this.Adapter.UpdateCommand.Parameters[7].Value = ((int)(Ipercolest));
+ this.Adapter.UpdateCommand.Parameters[8].Value = ((int)(IpercolestYtd));
+ this.Adapter.UpdateCommand.Parameters[9].Value = ((int)(Fumo));
+ this.Adapter.UpdateCommand.Parameters[10].Value = ((int)(FumoYtd));
+ this.Adapter.UpdateCommand.Parameters[11].Value = ((int)(Alcool));
+ this.Adapter.UpdateCommand.Parameters[12].Value = ((int)(AlcoolYtd));
+ this.Adapter.UpdateCommand.Parameters[13].Value = ((int)(Sovrapp));
+ this.Adapter.UpdateCommand.Parameters[14].Value = ((int)(SovrappYtd));
+ this.Adapter.UpdateCommand.Parameters[15].Value = ((int)(Sedent));
+ this.Adapter.UpdateCommand.Parameters[16].Value = ((int)(AdesTerap));
+ this.Adapter.UpdateCommand.Parameters[17].Value = ((int)(Original_IdxPaziente));
+ this.Adapter.UpdateCommand.Parameters[18].Value = ((System.DateTime)(Original_DataVisita));
+ this.Adapter.UpdateCommand.Parameters[19].Value = ((int)(Original_FamMCCV));
+ this.Adapter.UpdateCommand.Parameters[20].Value = ((int)(Original_Ipertens));
+ this.Adapter.UpdateCommand.Parameters[21].Value = ((int)(Original_IpertensYtd));
+ this.Adapter.UpdateCommand.Parameters[22].Value = ((int)(Original_Diabete));
+ this.Adapter.UpdateCommand.Parameters[23].Value = ((int)(Original_DiabeteYtd));
+ this.Adapter.UpdateCommand.Parameters[24].Value = ((int)(Original_Ipercolest));
+ this.Adapter.UpdateCommand.Parameters[25].Value = ((int)(Original_IpercolestYtd));
+ this.Adapter.UpdateCommand.Parameters[26].Value = ((int)(Original_Fumo));
+ this.Adapter.UpdateCommand.Parameters[27].Value = ((int)(Original_FumoYtd));
+ this.Adapter.UpdateCommand.Parameters[28].Value = ((int)(Original_Alcool));
+ this.Adapter.UpdateCommand.Parameters[29].Value = ((int)(Original_AlcoolYtd));
+ this.Adapter.UpdateCommand.Parameters[30].Value = ((int)(Original_Sovrapp));
+ this.Adapter.UpdateCommand.Parameters[31].Value = ((int)(Original_SovrappYtd));
+ this.Adapter.UpdateCommand.Parameters[32].Value = ((int)(Original_Sedent));
+ this.Adapter.UpdateCommand.Parameters[33].Value = ((int)(Original_AdesTerap));
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
+ if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.UpdateCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.UpdateCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
+ public virtual int Update(
+ int FamMCCV,
+ int Ipertens,
+ int IpertensYtd,
+ int Diabete,
+ int DiabeteYtd,
+ int Ipercolest,
+ int IpercolestYtd,
+ int Fumo,
+ int FumoYtd,
+ int Alcool,
+ int AlcoolYtd,
+ int Sovrapp,
+ int SovrappYtd,
+ int Sedent,
+ int AdesTerap,
+ int Original_IdxPaziente,
+ System.DateTime Original_DataVisita,
+ int Original_FamMCCV,
+ int Original_Ipertens,
+ int Original_IpertensYtd,
+ int Original_Diabete,
+ int Original_DiabeteYtd,
+ int Original_Ipercolest,
+ int Original_IpercolestYtd,
+ int Original_Fumo,
+ int Original_FumoYtd,
+ int Original_Alcool,
+ int Original_AlcoolYtd,
+ int Original_Sovrapp,
+ int Original_SovrappYtd,
+ int Original_Sedent,
+ int Original_AdesTerap) {
+ return this.Update(Original_IdxPaziente, Original_DataVisita, FamMCCV, Ipertens, IpertensYtd, Diabete, DiabeteYtd, Ipercolest, IpercolestYtd, Fumo, FumoYtd, Alcool, AlcoolYtd, Sovrapp, SovrappYtd, Sedent, AdesTerap, Original_IdxPaziente, Original_DataVisita, Original_FamMCCV, Original_Ipertens, Original_IpertensYtd, Original_Diabete, Original_DiabeteYtd, Original_Ipercolest, Original_IpercolestYtd, Original_Fumo, Original_FumoYtd, Original_Alcool, Original_AlcoolYtd, Original_Sovrapp, Original_SovrappYtd, Original_Sedent, Original_AdesTerap);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int DeleteQuery(global::System.Nullable Original_IdxPaziente, global::System.Nullable Original_DataVisita) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[1];
+ if ((Original_IdxPaziente.HasValue == true)) {
+ command.Parameters[1].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((Original_DataVisita.HasValue == true)) {
+ command.Parameters[2].Value = ((System.DateTime)(Original_DataVisita.Value));
+ }
+ else {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+ }
+
+ ///
+ ///Represents the connection and commands used to retrieve and save data.
+ ///
+ [global::System.ComponentModel.DesignerCategoryAttribute("code")]
+ [global::System.ComponentModel.ToolboxItem(true)]
+ [global::System.ComponentModel.DataObjectAttribute(true)]
+ [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
+ ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public partial class VisCardioPolTableAdapter : global::System.ComponentModel.Component {
+
+ private global::System.Data.SqlClient.SqlDataAdapter _adapter;
+
+ private global::System.Data.SqlClient.SqlConnection _connection;
+
+ private global::System.Data.SqlClient.SqlTransaction _transaction;
+
+ private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
+
+ private bool _clearBeforeFill;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisCardioPolTableAdapter() {
+ this.ClearBeforeFill = true;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
+ get {
+ if ((this._adapter == null)) {
+ this.InitAdapter();
+ }
+ return this._adapter;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlConnection Connection {
+ get {
+ if ((this._connection == null)) {
+ this.InitConnection();
+ }
+ return this._connection;
+ }
+ set {
+ this._connection = value;
+ if ((this.Adapter.InsertCommand != null)) {
+ this.Adapter.InsertCommand.Connection = value;
+ }
+ if ((this.Adapter.DeleteCommand != null)) {
+ this.Adapter.DeleteCommand.Connection = value;
+ }
+ if ((this.Adapter.UpdateCommand != null)) {
+ this.Adapter.UpdateCommand.Connection = value;
+ }
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ if ((this.CommandCollection[i] != null)) {
+ ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
+ }
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlTransaction Transaction {
+ get {
+ return this._transaction;
+ }
+ set {
+ this._transaction = value;
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ this.CommandCollection[i].Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.DeleteCommand != null))) {
+ this.Adapter.DeleteCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.InsertCommand != null))) {
+ this.Adapter.InsertCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.UpdateCommand != null))) {
+ this.Adapter.UpdateCommand.Transaction = this._transaction;
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
+ get {
+ if ((this._commandCollection == null)) {
+ this.InitCommandCollection();
+ }
+ return this._commandCollection;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool ClearBeforeFill {
+ get {
+ return this._clearBeforeFill;
+ }
+ set {
+ this._clearBeforeFill = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitAdapter() {
+ this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
+ global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
+ tableMapping.SourceTable = "Table";
+ tableMapping.DataSetTable = "VisCardioPol";
+ tableMapping.ColumnMappings.Add("IdxPaziente", "IdxPaziente");
+ tableMapping.ColumnMappings.Add("DataVisita", "DataVisita");
+ tableMapping.ColumnMappings.Add("PaSis", "PaSis");
+ tableMapping.ColumnMappings.Add("PaDia", "PaDia");
+ tableMapping.ColumnMappings.Add("QR1", "QR1");
+ tableMapping.ColumnMappings.Add("QR1_Kg", "QR1_Kg");
+ tableMapping.ColumnMappings.Add("VO2", "VO2");
+ tableMapping.ColumnMappings.Add("VO2_Kg", "VO2_Kg");
+ tableMapping.ColumnMappings.Add("FC_QR1", "FC_QR1");
+ tableMapping.ColumnMappings.Add("PolsoO2", "PolsoO2");
+ tableMapping.ColumnMappings.Add("PaSisMax", "PaSisMax");
+ tableMapping.ColumnMappings.Add("PaDiaMax", "PaDiaMax");
+ tableMapping.ColumnMappings.Add("FrazEiez", "FrazEiez");
+ tableMapping.ColumnMappings.Add("TDI", "TDI");
+ tableMapping.ColumnMappings.Add("PlaccheVas", "PlaccheVas");
+ tableMapping.ColumnMappings.Add("Note", "Note");
+ this._adapter.TableMappings.Add(tableMapping);
+ this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.DeleteCommand.Connection = this.Connection;
+ this._adapter.DeleteCommand.CommandText = @"DELETE FROM [VisCardioPol] WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([DataVisita] = @Original_DataVisita) AND ([PaSis] = @Original_PaSis) AND ([PaDia] = @Original_PaDia) AND ([QR1] = @Original_QR1) AND ((@IsNull_QR1_Kg = 1 AND [QR1_Kg] IS NULL) OR ([QR1_Kg] = @Original_QR1_Kg)) AND ((@IsNull_VO2 = 1 AND [VO2] IS NULL) OR ([VO2] = @Original_VO2)) AND ([VO2_Kg] = @Original_VO2_Kg) AND ([FC_QR1] = @Original_FC_QR1) AND ((@IsNull_PolsoO2 = 1 AND [PolsoO2] IS NULL) OR ([PolsoO2] = @Original_PolsoO2)) AND ([PaSisMax] = @Original_PaSisMax) AND ([PaDiaMax] = @Original_PaDiaMax) AND ([FrazEiez] = @Original_FrazEiez) AND ([TDI] = @Original_TDI) AND ([PlaccheVas] = @Original_PlaccheVas) AND ([Note] = @Original_Note))";
+ this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_PaSis", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaSis", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_PaDia", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaDia", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_QR1", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "QR1", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_QR1_Kg", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "QR1_Kg", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_QR1_Kg", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "QR1_Kg", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_VO2", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "VO2", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_VO2", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "VO2", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_VO2_Kg", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "VO2_Kg", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FC_QR1", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FC_QR1", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_PolsoO2", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PolsoO2", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_PolsoO2", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PolsoO2", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_PaSisMax", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaSisMax", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_PaDiaMax", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaDiaMax", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FrazEiez", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FrazEiez", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_TDI", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "TDI", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_PlaccheVas", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PlaccheVas", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Note", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.InsertCommand.Connection = this.Connection;
+ this._adapter.InsertCommand.CommandText = @"INSERT INTO [VisCardioPol] ([IdxPaziente], [DataVisita], [PaSis], [PaDia], [QR1], [VO2_Kg], [FC_QR1], [PaSisMax], [PaDiaMax], [FrazEiez], [TDI], [PlaccheVas], [Note]) VALUES (@IdxPaziente, @DataVisita, @PaSis, @PaDia, @QR1, @VO2_Kg, @FC_QR1, @PaSisMax, @PaDiaMax, @FrazEiez, @TDI, @PlaccheVas, @Note);
+SELECT IdxPaziente, DataVisita, PaSis, PaDia, QR1, QR1_Kg, VO2, VO2_Kg, FC_QR1, PolsoO2, PaSisMax, PaDiaMax, FrazEiez, TDI, PlaccheVas, Note FROM VisCardioPol WHERE (DataVisita = @DataVisita) AND (IdxPaziente = @IdxPaziente)";
+ this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaSis", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaSis", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaDia", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaDia", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@QR1", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "QR1", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@VO2_Kg", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "VO2_Kg", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FC_QR1", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FC_QR1", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaSisMax", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaSisMax", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaDiaMax", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaDiaMax", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FrazEiez", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FrazEiez", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TDI", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "TDI", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlaccheVas", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PlaccheVas", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Note", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.UpdateCommand.Connection = this.Connection;
+ this._adapter.UpdateCommand.CommandText = @"UPDATE [VisCardioPol] SET [IdxPaziente] = @IdxPaziente, [DataVisita] = @DataVisita, [PaSis] = @PaSis, [PaDia] = @PaDia, [QR1] = @QR1, [VO2_Kg] = @VO2_Kg, [FC_QR1] = @FC_QR1, [PaSisMax] = @PaSisMax, [PaDiaMax] = @PaDiaMax, [FrazEiez] = @FrazEiez, [TDI] = @TDI, [PlaccheVas] = @PlaccheVas, [Note] = @Note WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([DataVisita] = @Original_DataVisita) AND ([PaSis] = @Original_PaSis) AND ([PaDia] = @Original_PaDia) AND ([QR1] = @Original_QR1) AND ((@IsNull_QR1_Kg = 1 AND [QR1_Kg] IS NULL) OR ([QR1_Kg] = @Original_QR1_Kg)) AND ((@IsNull_VO2 = 1 AND [VO2] IS NULL) OR ([VO2] = @Original_VO2)) AND ([VO2_Kg] = @Original_VO2_Kg) AND ([FC_QR1] = @Original_FC_QR1) AND ((@IsNull_PolsoO2 = 1 AND [PolsoO2] IS NULL) OR ([PolsoO2] = @Original_PolsoO2)) AND ([PaSisMax] = @Original_PaSisMax) AND ([PaDiaMax] = @Original_PaDiaMax) AND ([FrazEiez] = @Original_FrazEiez) AND ([TDI] = @Original_TDI) AND ([PlaccheVas] = @Original_PlaccheVas) AND ([Note] = @Original_Note));
+SELECT IdxPaziente, DataVisita, PaSis, PaDia, QR1, QR1_Kg, VO2, VO2_Kg, FC_QR1, PolsoO2, PaSisMax, PaDiaMax, FrazEiez, TDI, PlaccheVas, Note FROM VisCardioPol WHERE (DataVisita = @DataVisita) AND (IdxPaziente = @IdxPaziente)";
+ this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaSis", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaSis", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaDia", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaDia", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@QR1", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "QR1", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@VO2_Kg", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "VO2_Kg", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FC_QR1", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FC_QR1", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaSisMax", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaSisMax", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaDiaMax", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaDiaMax", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FrazEiez", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FrazEiez", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TDI", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "TDI", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlaccheVas", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PlaccheVas", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Note", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_PaSis", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaSis", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_PaDia", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaDia", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_QR1", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "QR1", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_QR1_Kg", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "QR1_Kg", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_QR1_Kg", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "QR1_Kg", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_VO2", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "VO2", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_VO2", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "VO2", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_VO2_Kg", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "VO2_Kg", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FC_QR1", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FC_QR1", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IsNull_PolsoO2", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PolsoO2", global::System.Data.DataRowVersion.Original, true, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_PolsoO2", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PolsoO2", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_PaSisMax", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaSisMax", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_PaDiaMax", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PaDiaMax", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FrazEiez", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FrazEiez", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_TDI", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "TDI", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_PlaccheVas", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "PlaccheVas", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Note", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitConnection() {
+ this._connection = new global::System.Data.SqlClient.SqlConnection();
+ this._connection.ConnectionString = global::MedPred_Data.Properties.Settings.Default.MedPredConnectionString;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitCommandCollection() {
+ this._commandCollection = new global::System.Data.SqlClient.SqlCommand[5];
+ this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[0].Connection = this.Connection;
+ this._commandCollection[0].CommandText = "SELECT *\r\nFROM VisCardioPol";
+ this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
+ this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[1].Connection = this.Connection;
+ this._commandCollection[1].CommandText = "dbo.stp_VCardio_DeleteQuery";
+ this._commandCollection[1].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[2].Connection = this.Connection;
+ this._commandCollection[2].CommandText = "dbo.stp_VCardio_getByPaziente";
+ this._commandCollection[2].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[3].Connection = this.Connection;
+ this._commandCollection[3].CommandText = "dbo.stp_VCardio_InsertQuery";
+ this._commandCollection[3].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaSis", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaDia", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@QR1", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@VO2_Kg", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FC_QR1", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaSisMax", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaDiaMax", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FrazEiez", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TDI", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlaccheVas", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.NVarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[4].Connection = this.Connection;
+ this._commandCollection[4].CommandText = "dbo.stp_VCardio_UpdateQuery";
+ this._commandCollection[4].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaSis", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaDia", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@QR1", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@VO2_Kg", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FC_QR1", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaSisMax", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PaDiaMax", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FrazEiez", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TDI", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlaccheVas", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.NVarChar, 500, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
+ public virtual int Fill(DS_Applicazione.VisCardioPolDataTable dataTable) {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ if ((this.ClearBeforeFill == true)) {
+ dataTable.Clear();
+ }
+ int returnValue = this.Adapter.Fill(dataTable);
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
+ public virtual DS_Applicazione.VisCardioPolDataTable GetData() {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ DS_Applicazione.VisCardioPolDataTable dataTable = new DS_Applicazione.VisCardioPolDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.VisCardioPolDataTable getByPaziente(global::System.Nullable IdxPaziente, global::System.Nullable DataVisita) {
+ this.Adapter.SelectCommand = this.CommandCollection[2];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.VisCardioPolDataTable dataTable = new DS_Applicazione.VisCardioPolDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.VisCardioPolDataTable InsertQuery(global::System.Nullable IdxPaziente, global::System.Nullable DataVisita, global::System.Nullable PaSis, global::System.Nullable PaDia, global::System.Nullable QR1, global::System.Nullable VO2_Kg, global::System.Nullable FC_QR1, global::System.Nullable PaSisMax, global::System.Nullable PaDiaMax, global::System.Nullable FrazEiez, global::System.Nullable TDI, global::System.Nullable PlaccheVas, string Note) {
+ this.Adapter.SelectCommand = this.CommandCollection[3];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ if ((PaSis.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[3].Value = ((int)(PaSis.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ if ((PaDia.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[4].Value = ((int)(PaDia.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ if ((QR1.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[5].Value = ((double)(QR1.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ if ((VO2_Kg.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[6].Value = ((double)(VO2_Kg.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[6].Value = global::System.DBNull.Value;
+ }
+ if ((FC_QR1.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[7].Value = ((int)(FC_QR1.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[7].Value = global::System.DBNull.Value;
+ }
+ if ((PaSisMax.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[8].Value = ((int)(PaSisMax.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[8].Value = global::System.DBNull.Value;
+ }
+ if ((PaDiaMax.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[9].Value = ((int)(PaDiaMax.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[9].Value = global::System.DBNull.Value;
+ }
+ if ((FrazEiez.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[10].Value = ((double)(FrazEiez.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[10].Value = global::System.DBNull.Value;
+ }
+ if ((TDI.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[11].Value = ((double)(TDI.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[11].Value = global::System.DBNull.Value;
+ }
+ if ((PlaccheVas.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[12].Value = ((double)(PlaccheVas.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[12].Value = global::System.DBNull.Value;
+ }
+ if ((Note == null)) {
+ this.Adapter.SelectCommand.Parameters[13].Value = global::System.DBNull.Value;
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[13].Value = ((string)(Note));
+ }
+ DS_Applicazione.VisCardioPolDataTable dataTable = new DS_Applicazione.VisCardioPolDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.VisCardioPolDataTable UpdateQuery(global::System.Nullable PaSis, global::System.Nullable PaDia, global::System.Nullable QR1, global::System.Nullable VO2_Kg, global::System.Nullable FC_QR1, global::System.Nullable PaSisMax, global::System.Nullable PaDiaMax, global::System.Nullable FrazEiez, global::System.Nullable TDI, global::System.Nullable PlaccheVas, string Note, global::System.Nullable Original_DataVisita, global::System.Nullable Original_IdxPaziente) {
+ this.Adapter.SelectCommand = this.CommandCollection[4];
+ if ((PaSis.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(PaSis.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((PaDia.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((int)(PaDia.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ if ((QR1.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[3].Value = ((double)(QR1.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ if ((VO2_Kg.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[4].Value = ((double)(VO2_Kg.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ if ((FC_QR1.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[5].Value = ((int)(FC_QR1.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ if ((PaSisMax.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[6].Value = ((int)(PaSisMax.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[6].Value = global::System.DBNull.Value;
+ }
+ if ((PaDiaMax.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[7].Value = ((int)(PaDiaMax.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[7].Value = global::System.DBNull.Value;
+ }
+ if ((FrazEiez.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[8].Value = ((double)(FrazEiez.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[8].Value = global::System.DBNull.Value;
+ }
+ if ((TDI.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[9].Value = ((double)(TDI.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[9].Value = global::System.DBNull.Value;
+ }
+ if ((PlaccheVas.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[10].Value = ((double)(PlaccheVas.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[10].Value = global::System.DBNull.Value;
+ }
+ if ((Note == null)) {
+ this.Adapter.SelectCommand.Parameters[11].Value = global::System.DBNull.Value;
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[11].Value = ((string)(Note));
+ }
+ if ((Original_DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[12].Value = ((System.DateTime)(Original_DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[12].Value = global::System.DBNull.Value;
+ }
+ if ((Original_IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[13].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[13].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.VisCardioPolDataTable dataTable = new DS_Applicazione.VisCardioPolDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(DS_Applicazione.VisCardioPolDataTable dataTable) {
+ return this.Adapter.Update(dataTable);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(DS_Applicazione dataSet) {
+ return this.Adapter.Update(dataSet, "VisCardioPol");
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(global::System.Data.DataRow dataRow) {
+ return this.Adapter.Update(new global::System.Data.DataRow[] {
+ dataRow});
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(global::System.Data.DataRow[] dataRows) {
+ return this.Adapter.Update(dataRows);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
+ public virtual int Delete(
+ int Original_IdxPaziente,
+ System.DateTime Original_DataVisita,
+ int Original_PaSis,
+ int Original_PaDia,
+ double Original_QR1,
+ global::System.Nullable Original_QR1_Kg,
+ global::System.Nullable Original_VO2,
+ double Original_VO2_Kg,
+ int Original_FC_QR1,
+ global::System.Nullable Original_PolsoO2,
+ int Original_PaSisMax,
+ int Original_PaDiaMax,
+ double Original_FrazEiez,
+ double Original_TDI,
+ double Original_PlaccheVas,
+ string Original_Note) {
+ this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_IdxPaziente));
+ this.Adapter.DeleteCommand.Parameters[1].Value = ((System.DateTime)(Original_DataVisita));
+ this.Adapter.DeleteCommand.Parameters[2].Value = ((int)(Original_PaSis));
+ this.Adapter.DeleteCommand.Parameters[3].Value = ((int)(Original_PaDia));
+ this.Adapter.DeleteCommand.Parameters[4].Value = ((double)(Original_QR1));
+ if ((Original_QR1_Kg.HasValue == true)) {
+ this.Adapter.DeleteCommand.Parameters[5].Value = ((object)(0));
+ this.Adapter.DeleteCommand.Parameters[6].Value = ((double)(Original_QR1_Kg.Value));
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[5].Value = ((object)(1));
+ this.Adapter.DeleteCommand.Parameters[6].Value = global::System.DBNull.Value;
+ }
+ if ((Original_VO2.HasValue == true)) {
+ this.Adapter.DeleteCommand.Parameters[7].Value = ((object)(0));
+ this.Adapter.DeleteCommand.Parameters[8].Value = ((double)(Original_VO2.Value));
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[7].Value = ((object)(1));
+ this.Adapter.DeleteCommand.Parameters[8].Value = global::System.DBNull.Value;
+ }
+ this.Adapter.DeleteCommand.Parameters[9].Value = ((double)(Original_VO2_Kg));
+ this.Adapter.DeleteCommand.Parameters[10].Value = ((int)(Original_FC_QR1));
+ if ((Original_PolsoO2.HasValue == true)) {
+ this.Adapter.DeleteCommand.Parameters[11].Value = ((object)(0));
+ this.Adapter.DeleteCommand.Parameters[12].Value = ((double)(Original_PolsoO2.Value));
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[11].Value = ((object)(1));
+ this.Adapter.DeleteCommand.Parameters[12].Value = global::System.DBNull.Value;
+ }
+ this.Adapter.DeleteCommand.Parameters[13].Value = ((int)(Original_PaSisMax));
+ this.Adapter.DeleteCommand.Parameters[14].Value = ((int)(Original_PaDiaMax));
+ this.Adapter.DeleteCommand.Parameters[15].Value = ((double)(Original_FrazEiez));
+ this.Adapter.DeleteCommand.Parameters[16].Value = ((double)(Original_TDI));
+ this.Adapter.DeleteCommand.Parameters[17].Value = ((double)(Original_PlaccheVas));
+ if ((Original_Note == null)) {
+ throw new global::System.ArgumentNullException("Original_Note");
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[18].Value = ((string)(Original_Note));
+ }
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
+ if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.DeleteCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.DeleteCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
+ public virtual int Insert(int IdxPaziente, System.DateTime DataVisita, int PaSis, int PaDia, double QR1, double VO2_Kg, int FC_QR1, int PaSisMax, int PaDiaMax, double FrazEiez, double TDI, double PlaccheVas, string Note) {
+ this.Adapter.InsertCommand.Parameters[0].Value = ((int)(IdxPaziente));
+ this.Adapter.InsertCommand.Parameters[1].Value = ((System.DateTime)(DataVisita));
+ this.Adapter.InsertCommand.Parameters[2].Value = ((int)(PaSis));
+ this.Adapter.InsertCommand.Parameters[3].Value = ((int)(PaDia));
+ this.Adapter.InsertCommand.Parameters[4].Value = ((double)(QR1));
+ this.Adapter.InsertCommand.Parameters[5].Value = ((double)(VO2_Kg));
+ this.Adapter.InsertCommand.Parameters[6].Value = ((int)(FC_QR1));
+ this.Adapter.InsertCommand.Parameters[7].Value = ((int)(PaSisMax));
+ this.Adapter.InsertCommand.Parameters[8].Value = ((int)(PaDiaMax));
+ this.Adapter.InsertCommand.Parameters[9].Value = ((double)(FrazEiez));
+ this.Adapter.InsertCommand.Parameters[10].Value = ((double)(TDI));
+ this.Adapter.InsertCommand.Parameters[11].Value = ((double)(PlaccheVas));
+ if ((Note == null)) {
+ throw new global::System.ArgumentNullException("Note");
+ }
+ else {
+ this.Adapter.InsertCommand.Parameters[12].Value = ((string)(Note));
+ }
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
+ if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.InsertCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.InsertCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
+ public virtual int Update(
+ int IdxPaziente,
+ System.DateTime DataVisita,
+ int PaSis,
+ int PaDia,
+ double QR1,
+ double VO2_Kg,
+ int FC_QR1,
+ int PaSisMax,
+ int PaDiaMax,
+ double FrazEiez,
+ double TDI,
+ double PlaccheVas,
+ string Note,
+ int Original_IdxPaziente,
+ System.DateTime Original_DataVisita,
+ int Original_PaSis,
+ int Original_PaDia,
+ double Original_QR1,
+ global::System.Nullable Original_QR1_Kg,
+ global::System.Nullable Original_VO2,
+ double Original_VO2_Kg,
+ int Original_FC_QR1,
+ global::System.Nullable Original_PolsoO2,
+ int Original_PaSisMax,
+ int Original_PaDiaMax,
+ double Original_FrazEiez,
+ double Original_TDI,
+ double Original_PlaccheVas,
+ string Original_Note) {
+ this.Adapter.UpdateCommand.Parameters[0].Value = ((int)(IdxPaziente));
+ this.Adapter.UpdateCommand.Parameters[1].Value = ((System.DateTime)(DataVisita));
+ this.Adapter.UpdateCommand.Parameters[2].Value = ((int)(PaSis));
+ this.Adapter.UpdateCommand.Parameters[3].Value = ((int)(PaDia));
+ this.Adapter.UpdateCommand.Parameters[4].Value = ((double)(QR1));
+ this.Adapter.UpdateCommand.Parameters[5].Value = ((double)(VO2_Kg));
+ this.Adapter.UpdateCommand.Parameters[6].Value = ((int)(FC_QR1));
+ this.Adapter.UpdateCommand.Parameters[7].Value = ((int)(PaSisMax));
+ this.Adapter.UpdateCommand.Parameters[8].Value = ((int)(PaDiaMax));
+ this.Adapter.UpdateCommand.Parameters[9].Value = ((double)(FrazEiez));
+ this.Adapter.UpdateCommand.Parameters[10].Value = ((double)(TDI));
+ this.Adapter.UpdateCommand.Parameters[11].Value = ((double)(PlaccheVas));
+ if ((Note == null)) {
+ throw new global::System.ArgumentNullException("Note");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[12].Value = ((string)(Note));
+ }
+ this.Adapter.UpdateCommand.Parameters[13].Value = ((int)(Original_IdxPaziente));
+ this.Adapter.UpdateCommand.Parameters[14].Value = ((System.DateTime)(Original_DataVisita));
+ this.Adapter.UpdateCommand.Parameters[15].Value = ((int)(Original_PaSis));
+ this.Adapter.UpdateCommand.Parameters[16].Value = ((int)(Original_PaDia));
+ this.Adapter.UpdateCommand.Parameters[17].Value = ((double)(Original_QR1));
+ if ((Original_QR1_Kg.HasValue == true)) {
+ this.Adapter.UpdateCommand.Parameters[18].Value = ((object)(0));
+ this.Adapter.UpdateCommand.Parameters[19].Value = ((double)(Original_QR1_Kg.Value));
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[18].Value = ((object)(1));
+ this.Adapter.UpdateCommand.Parameters[19].Value = global::System.DBNull.Value;
+ }
+ if ((Original_VO2.HasValue == true)) {
+ this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(0));
+ this.Adapter.UpdateCommand.Parameters[21].Value = ((double)(Original_VO2.Value));
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[20].Value = ((object)(1));
+ this.Adapter.UpdateCommand.Parameters[21].Value = global::System.DBNull.Value;
+ }
+ this.Adapter.UpdateCommand.Parameters[22].Value = ((double)(Original_VO2_Kg));
+ this.Adapter.UpdateCommand.Parameters[23].Value = ((int)(Original_FC_QR1));
+ if ((Original_PolsoO2.HasValue == true)) {
+ this.Adapter.UpdateCommand.Parameters[24].Value = ((object)(0));
+ this.Adapter.UpdateCommand.Parameters[25].Value = ((double)(Original_PolsoO2.Value));
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[24].Value = ((object)(1));
+ this.Adapter.UpdateCommand.Parameters[25].Value = global::System.DBNull.Value;
+ }
+ this.Adapter.UpdateCommand.Parameters[26].Value = ((int)(Original_PaSisMax));
+ this.Adapter.UpdateCommand.Parameters[27].Value = ((int)(Original_PaDiaMax));
+ this.Adapter.UpdateCommand.Parameters[28].Value = ((double)(Original_FrazEiez));
+ this.Adapter.UpdateCommand.Parameters[29].Value = ((double)(Original_TDI));
+ this.Adapter.UpdateCommand.Parameters[30].Value = ((double)(Original_PlaccheVas));
+ if ((Original_Note == null)) {
+ throw new global::System.ArgumentNullException("Original_Note");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[31].Value = ((string)(Original_Note));
+ }
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
+ if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.UpdateCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.UpdateCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
+ public virtual int Update(
+ int PaSis,
+ int PaDia,
+ double QR1,
+ double VO2_Kg,
+ int FC_QR1,
+ int PaSisMax,
+ int PaDiaMax,
+ double FrazEiez,
+ double TDI,
+ double PlaccheVas,
+ string Note,
+ int Original_IdxPaziente,
+ System.DateTime Original_DataVisita,
+ int Original_PaSis,
+ int Original_PaDia,
+ double Original_QR1,
+ global::System.Nullable Original_QR1_Kg,
+ global::System.Nullable Original_VO2,
+ double Original_VO2_Kg,
+ int Original_FC_QR1,
+ global::System.Nullable Original_PolsoO2,
+ int Original_PaSisMax,
+ int Original_PaDiaMax,
+ double Original_FrazEiez,
+ double Original_TDI,
+ double Original_PlaccheVas,
+ string Original_Note) {
+ return this.Update(Original_IdxPaziente, Original_DataVisita, PaSis, PaDia, QR1, VO2_Kg, FC_QR1, PaSisMax, PaDiaMax, FrazEiez, TDI, PlaccheVas, Note, Original_IdxPaziente, Original_DataVisita, Original_PaSis, Original_PaDia, Original_QR1, Original_QR1_Kg, Original_VO2, Original_VO2_Kg, Original_FC_QR1, Original_PolsoO2, Original_PaSisMax, Original_PaDiaMax, Original_FrazEiez, Original_TDI, Original_PlaccheVas, Original_Note);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int DeleteQuery(global::System.Nullable Original_IdxPaziente, global::System.Nullable Original_DataVisita) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[1];
+ if ((Original_IdxPaziente.HasValue == true)) {
+ command.Parameters[1].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((Original_DataVisita.HasValue == true)) {
+ command.Parameters[2].Value = ((System.DateTime)(Original_DataVisita.Value));
+ }
+ else {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+ }
+
+ ///
+ ///Represents the connection and commands used to retrieve and save data.
+ ///
+ [global::System.ComponentModel.DesignerCategoryAttribute("code")]
+ [global::System.ComponentModel.ToolboxItem(true)]
+ [global::System.ComponentModel.DataObjectAttribute(true)]
+ [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
+ ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public partial class VisPsicoTableAdapter : global::System.ComponentModel.Component {
+
+ private global::System.Data.SqlClient.SqlDataAdapter _adapter;
+
+ private global::System.Data.SqlClient.SqlConnection _connection;
+
+ private global::System.Data.SqlClient.SqlTransaction _transaction;
+
+ private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
+
+ private bool _clearBeforeFill;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisPsicoTableAdapter() {
+ this.ClearBeforeFill = true;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
+ get {
+ if ((this._adapter == null)) {
+ this.InitAdapter();
+ }
+ return this._adapter;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlConnection Connection {
+ get {
+ if ((this._connection == null)) {
+ this.InitConnection();
+ }
+ return this._connection;
+ }
+ set {
+ this._connection = value;
+ if ((this.Adapter.InsertCommand != null)) {
+ this.Adapter.InsertCommand.Connection = value;
+ }
+ if ((this.Adapter.DeleteCommand != null)) {
+ this.Adapter.DeleteCommand.Connection = value;
+ }
+ if ((this.Adapter.UpdateCommand != null)) {
+ this.Adapter.UpdateCommand.Connection = value;
+ }
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ if ((this.CommandCollection[i] != null)) {
+ ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
+ }
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlTransaction Transaction {
+ get {
+ return this._transaction;
+ }
+ set {
+ this._transaction = value;
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ this.CommandCollection[i].Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.DeleteCommand != null))) {
+ this.Adapter.DeleteCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.InsertCommand != null))) {
+ this.Adapter.InsertCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.UpdateCommand != null))) {
+ this.Adapter.UpdateCommand.Transaction = this._transaction;
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
+ get {
+ if ((this._commandCollection == null)) {
+ this.InitCommandCollection();
+ }
+ return this._commandCollection;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool ClearBeforeFill {
+ get {
+ return this._clearBeforeFill;
+ }
+ set {
+ this._clearBeforeFill = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitAdapter() {
+ this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
+ global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
+ tableMapping.SourceTable = "Table";
+ tableMapping.DataSetTable = "VisPsico";
+ tableMapping.ColumnMappings.Add("IdxPaziente", "IdxPaziente");
+ tableMapping.ColumnMappings.Add("DataVisita", "DataVisita");
+ tableMapping.ColumnMappings.Add("Test15ParReyImm", "Test15ParReyImm");
+ tableMapping.ColumnMappings.Add("Test15ParReyDif", "Test15ParReyDif");
+ tableMapping.ColumnMappings.Add("FigComplRey_Copia", "FigComplRey_Copia");
+ tableMapping.ColumnMappings.Add("FigComplRey_RipDiff", "FigComplRey_RipDiff");
+ tableMapping.ColumnMappings.Add("StroopTestInterfErr", "StroopTestInterfErr");
+ tableMapping.ColumnMappings.Add("StroopTestInterfTemp", "StroopTestInterfTemp");
+ this._adapter.TableMappings.Add(tableMapping);
+ this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.DeleteCommand.Connection = this.Connection;
+ this._adapter.DeleteCommand.CommandText = @"DELETE FROM [VisPsico] WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([DataVisita] = @Original_DataVisita) AND ([Test15ParReyImm] = @Original_Test15ParReyImm) AND ([Test15ParReyDif] = @Original_Test15ParReyDif) AND ([FigComplRey_Copia] = @Original_FigComplRey_Copia) AND ([FigComplRey_RipDiff] = @Original_FigComplRey_RipDiff) AND ([StroopTestInterfErr] = @Original_StroopTestInterfErr) AND ([StroopTestInterfTemp] = @Original_StroopTestInterfTemp))";
+ this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Test15ParReyImm", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Test15ParReyImm", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Test15ParReyDif", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Test15ParReyDif", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FigComplRey_Copia", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FigComplRey_Copia", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FigComplRey_RipDiff", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FigComplRey_RipDiff", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_StroopTestInterfErr", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "StroopTestInterfErr", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_StroopTestInterfTemp", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "StroopTestInterfTemp", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.InsertCommand.Connection = this.Connection;
+ this._adapter.InsertCommand.CommandText = @"INSERT INTO [VisPsico] ([IdxPaziente], [DataVisita], [Test15ParReyImm], [Test15ParReyDif], [FigComplRey_Copia], [FigComplRey_RipDiff], [StroopTestInterfErr], [StroopTestInterfTemp]) VALUES (@IdxPaziente, @DataVisita, @Test15ParReyImm, @Test15ParReyDif, @FigComplRey_Copia, @FigComplRey_RipDiff, @StroopTestInterfErr, @StroopTestInterfTemp);
+SELECT IdxPaziente, DataVisita, Test15ParReyImm, Test15ParReyDif, FigComplRey_Copia, FigComplRey_RipDiff, StroopTestInterfErr, StroopTestInterfTemp FROM VisPsico WHERE (DataVisita = @DataVisita) AND (IdxPaziente = @IdxPaziente)";
+ this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Test15ParReyImm", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Test15ParReyImm", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Test15ParReyDif", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Test15ParReyDif", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FigComplRey_Copia", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FigComplRey_Copia", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FigComplRey_RipDiff", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FigComplRey_RipDiff", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@StroopTestInterfErr", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "StroopTestInterfErr", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@StroopTestInterfTemp", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "StroopTestInterfTemp", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.UpdateCommand.Connection = this.Connection;
+ this._adapter.UpdateCommand.CommandText = @"UPDATE [VisPsico] SET [IdxPaziente] = @IdxPaziente, [DataVisita] = @DataVisita, [Test15ParReyImm] = @Test15ParReyImm, [Test15ParReyDif] = @Test15ParReyDif, [FigComplRey_Copia] = @FigComplRey_Copia, [FigComplRey_RipDiff] = @FigComplRey_RipDiff, [StroopTestInterfErr] = @StroopTestInterfErr, [StroopTestInterfTemp] = @StroopTestInterfTemp WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([DataVisita] = @Original_DataVisita) AND ([Test15ParReyImm] = @Original_Test15ParReyImm) AND ([Test15ParReyDif] = @Original_Test15ParReyDif) AND ([FigComplRey_Copia] = @Original_FigComplRey_Copia) AND ([FigComplRey_RipDiff] = @Original_FigComplRey_RipDiff) AND ([StroopTestInterfErr] = @Original_StroopTestInterfErr) AND ([StroopTestInterfTemp] = @Original_StroopTestInterfTemp));
+SELECT IdxPaziente, DataVisita, Test15ParReyImm, Test15ParReyDif, FigComplRey_Copia, FigComplRey_RipDiff, StroopTestInterfErr, StroopTestInterfTemp FROM VisPsico WHERE (DataVisita = @DataVisita) AND (IdxPaziente = @IdxPaziente)";
+ this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Test15ParReyImm", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Test15ParReyImm", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Test15ParReyDif", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Test15ParReyDif", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FigComplRey_Copia", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FigComplRey_Copia", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FigComplRey_RipDiff", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FigComplRey_RipDiff", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@StroopTestInterfErr", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "StroopTestInterfErr", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@StroopTestInterfTemp", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "StroopTestInterfTemp", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Test15ParReyImm", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Test15ParReyImm", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Test15ParReyDif", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Test15ParReyDif", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FigComplRey_Copia", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FigComplRey_Copia", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_FigComplRey_RipDiff", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "FigComplRey_RipDiff", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_StroopTestInterfErr", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "StroopTestInterfErr", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_StroopTestInterfTemp", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "StroopTestInterfTemp", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitConnection() {
+ this._connection = new global::System.Data.SqlClient.SqlConnection();
+ this._connection.ConnectionString = global::MedPred_Data.Properties.Settings.Default.MedPredConnectionString;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitCommandCollection() {
+ this._commandCollection = new global::System.Data.SqlClient.SqlCommand[5];
+ this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[0].Connection = this.Connection;
+ this._commandCollection[0].CommandText = "SELECT * FROM VisPsico";
+ this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
+ this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[1].Connection = this.Connection;
+ this._commandCollection[1].CommandText = "dbo.stp_VP_DeleteQuery";
+ this._commandCollection[1].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[2].Connection = this.Connection;
+ this._commandCollection[2].CommandText = "dbo.stp_VP_getByPaziente";
+ this._commandCollection[2].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[3].Connection = this.Connection;
+ this._commandCollection[3].CommandText = "dbo.stp_VP_InsertQuery";
+ this._commandCollection[3].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FigComplRey_Copia", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FigComplRey_RipDiff", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Test15ParReyImm", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Test15ParReyDif", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@StroopTestInterfErr", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@StroopTestInterfTemp", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[4].Connection = this.Connection;
+ this._commandCollection[4].CommandText = "dbo.stp_VP_UpdateQuery";
+ this._commandCollection[4].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FigComplRey_Copia", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FigComplRey_RipDiff", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Test15ParReyImm", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Test15ParReyDif", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@StroopTestInterfErr", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@StroopTestInterfTemp", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
+ public virtual int Fill(DS_Applicazione.VisPsicoDataTable dataTable) {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ if ((this.ClearBeforeFill == true)) {
+ dataTable.Clear();
+ }
+ int returnValue = this.Adapter.Fill(dataTable);
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
+ public virtual DS_Applicazione.VisPsicoDataTable GetData() {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ DS_Applicazione.VisPsicoDataTable dataTable = new DS_Applicazione.VisPsicoDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.VisPsicoDataTable getByPaziente(global::System.Nullable IdxPaziente, global::System.Nullable DataVisita) {
+ this.Adapter.SelectCommand = this.CommandCollection[2];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.VisPsicoDataTable dataTable = new DS_Applicazione.VisPsicoDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(DS_Applicazione.VisPsicoDataTable dataTable) {
+ return this.Adapter.Update(dataTable);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(DS_Applicazione dataSet) {
+ return this.Adapter.Update(dataSet, "VisPsico");
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(global::System.Data.DataRow dataRow) {
+ return this.Adapter.Update(new global::System.Data.DataRow[] {
+ dataRow});
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(global::System.Data.DataRow[] dataRows) {
+ return this.Adapter.Update(dataRows);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
+ public virtual int Delete(int Original_IdxPaziente, System.DateTime Original_DataVisita, int Original_Test15ParReyImm, int Original_Test15ParReyDif, int Original_FigComplRey_Copia, int Original_FigComplRey_RipDiff, int Original_StroopTestInterfErr, int Original_StroopTestInterfTemp) {
+ this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_IdxPaziente));
+ this.Adapter.DeleteCommand.Parameters[1].Value = ((System.DateTime)(Original_DataVisita));
+ this.Adapter.DeleteCommand.Parameters[2].Value = ((int)(Original_Test15ParReyImm));
+ this.Adapter.DeleteCommand.Parameters[3].Value = ((int)(Original_Test15ParReyDif));
+ this.Adapter.DeleteCommand.Parameters[4].Value = ((int)(Original_FigComplRey_Copia));
+ this.Adapter.DeleteCommand.Parameters[5].Value = ((int)(Original_FigComplRey_RipDiff));
+ this.Adapter.DeleteCommand.Parameters[6].Value = ((int)(Original_StroopTestInterfErr));
+ this.Adapter.DeleteCommand.Parameters[7].Value = ((int)(Original_StroopTestInterfTemp));
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
+ if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.DeleteCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.DeleteCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
+ public virtual int Insert(int IdxPaziente, System.DateTime DataVisita, int Test15ParReyImm, int Test15ParReyDif, int FigComplRey_Copia, int FigComplRey_RipDiff, int StroopTestInterfErr, int StroopTestInterfTemp) {
+ this.Adapter.InsertCommand.Parameters[0].Value = ((int)(IdxPaziente));
+ this.Adapter.InsertCommand.Parameters[1].Value = ((System.DateTime)(DataVisita));
+ this.Adapter.InsertCommand.Parameters[2].Value = ((int)(Test15ParReyImm));
+ this.Adapter.InsertCommand.Parameters[3].Value = ((int)(Test15ParReyDif));
+ this.Adapter.InsertCommand.Parameters[4].Value = ((int)(FigComplRey_Copia));
+ this.Adapter.InsertCommand.Parameters[5].Value = ((int)(FigComplRey_RipDiff));
+ this.Adapter.InsertCommand.Parameters[6].Value = ((int)(StroopTestInterfErr));
+ this.Adapter.InsertCommand.Parameters[7].Value = ((int)(StroopTestInterfTemp));
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
+ if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.InsertCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.InsertCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
+ public virtual int Update(
+ int IdxPaziente,
+ System.DateTime DataVisita,
+ int Test15ParReyImm,
+ int Test15ParReyDif,
+ int FigComplRey_Copia,
+ int FigComplRey_RipDiff,
+ int StroopTestInterfErr,
+ int StroopTestInterfTemp,
+ int Original_IdxPaziente,
+ System.DateTime Original_DataVisita,
+ int Original_Test15ParReyImm,
+ int Original_Test15ParReyDif,
+ int Original_FigComplRey_Copia,
+ int Original_FigComplRey_RipDiff,
+ int Original_StroopTestInterfErr,
+ int Original_StroopTestInterfTemp) {
+ this.Adapter.UpdateCommand.Parameters[0].Value = ((int)(IdxPaziente));
+ this.Adapter.UpdateCommand.Parameters[1].Value = ((System.DateTime)(DataVisita));
+ this.Adapter.UpdateCommand.Parameters[2].Value = ((int)(Test15ParReyImm));
+ this.Adapter.UpdateCommand.Parameters[3].Value = ((int)(Test15ParReyDif));
+ this.Adapter.UpdateCommand.Parameters[4].Value = ((int)(FigComplRey_Copia));
+ this.Adapter.UpdateCommand.Parameters[5].Value = ((int)(FigComplRey_RipDiff));
+ this.Adapter.UpdateCommand.Parameters[6].Value = ((int)(StroopTestInterfErr));
+ this.Adapter.UpdateCommand.Parameters[7].Value = ((int)(StroopTestInterfTemp));
+ this.Adapter.UpdateCommand.Parameters[8].Value = ((int)(Original_IdxPaziente));
+ this.Adapter.UpdateCommand.Parameters[9].Value = ((System.DateTime)(Original_DataVisita));
+ this.Adapter.UpdateCommand.Parameters[10].Value = ((int)(Original_Test15ParReyImm));
+ this.Adapter.UpdateCommand.Parameters[11].Value = ((int)(Original_Test15ParReyDif));
+ this.Adapter.UpdateCommand.Parameters[12].Value = ((int)(Original_FigComplRey_Copia));
+ this.Adapter.UpdateCommand.Parameters[13].Value = ((int)(Original_FigComplRey_RipDiff));
+ this.Adapter.UpdateCommand.Parameters[14].Value = ((int)(Original_StroopTestInterfErr));
+ this.Adapter.UpdateCommand.Parameters[15].Value = ((int)(Original_StroopTestInterfTemp));
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
+ if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.UpdateCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.UpdateCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
+ public virtual int Update(int Test15ParReyImm, int Test15ParReyDif, int FigComplRey_Copia, int FigComplRey_RipDiff, int StroopTestInterfErr, int StroopTestInterfTemp, int Original_IdxPaziente, System.DateTime Original_DataVisita, int Original_Test15ParReyImm, int Original_Test15ParReyDif, int Original_FigComplRey_Copia, int Original_FigComplRey_RipDiff, int Original_StroopTestInterfErr, int Original_StroopTestInterfTemp) {
+ return this.Update(Original_IdxPaziente, Original_DataVisita, Test15ParReyImm, Test15ParReyDif, FigComplRey_Copia, FigComplRey_RipDiff, StroopTestInterfErr, StroopTestInterfTemp, Original_IdxPaziente, Original_DataVisita, Original_Test15ParReyImm, Original_Test15ParReyDif, Original_FigComplRey_Copia, Original_FigComplRey_RipDiff, Original_StroopTestInterfErr, Original_StroopTestInterfTemp);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int DeleteQuery(global::System.Nullable Original_IdxPaziente, global::System.Nullable Original_DataVisita) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[1];
+ if ((Original_IdxPaziente.HasValue == true)) {
+ command.Parameters[1].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((Original_DataVisita.HasValue == true)) {
+ command.Parameters[2].Value = ((System.DateTime)(Original_DataVisita.Value));
+ }
+ else {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int InsertQuery(global::System.Nullable IdxPaziente, global::System.Nullable DataVisita, global::System.Nullable FigComplRey_Copia, global::System.Nullable FigComplRey_RipDiff, global::System.Nullable Test15ParReyImm, global::System.Nullable Test15ParReyDif, global::System.Nullable StroopTestInterfErr, global::System.Nullable StroopTestInterfTemp) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[3];
+ if ((IdxPaziente.HasValue == true)) {
+ command.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ command.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ if ((FigComplRey_Copia.HasValue == true)) {
+ command.Parameters[3].Value = ((int)(FigComplRey_Copia.Value));
+ }
+ else {
+ command.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ if ((FigComplRey_RipDiff.HasValue == true)) {
+ command.Parameters[4].Value = ((int)(FigComplRey_RipDiff.Value));
+ }
+ else {
+ command.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ if ((Test15ParReyImm.HasValue == true)) {
+ command.Parameters[5].Value = ((int)(Test15ParReyImm.Value));
+ }
+ else {
+ command.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ if ((Test15ParReyDif.HasValue == true)) {
+ command.Parameters[6].Value = ((int)(Test15ParReyDif.Value));
+ }
+ else {
+ command.Parameters[6].Value = global::System.DBNull.Value;
+ }
+ if ((StroopTestInterfErr.HasValue == true)) {
+ command.Parameters[7].Value = ((int)(StroopTestInterfErr.Value));
+ }
+ else {
+ command.Parameters[7].Value = global::System.DBNull.Value;
+ }
+ if ((StroopTestInterfTemp.HasValue == true)) {
+ command.Parameters[8].Value = ((int)(StroopTestInterfTemp.Value));
+ }
+ else {
+ command.Parameters[8].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int UpdateQuery(global::System.Nullable FigComplRey_Copia, global::System.Nullable FigComplRey_RipDiff, global::System.Nullable Test15ParReyImm, global::System.Nullable Test15ParReyDif, global::System.Nullable StroopTestInterfErr, global::System.Nullable StroopTestInterfTemp, global::System.Nullable Original_DataVisita, global::System.Nullable Original_IdxPaziente) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[4];
+ if ((FigComplRey_Copia.HasValue == true)) {
+ command.Parameters[1].Value = ((int)(FigComplRey_Copia.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((FigComplRey_RipDiff.HasValue == true)) {
+ command.Parameters[2].Value = ((int)(FigComplRey_RipDiff.Value));
+ }
+ else {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ if ((Test15ParReyImm.HasValue == true)) {
+ command.Parameters[3].Value = ((int)(Test15ParReyImm.Value));
+ }
+ else {
+ command.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ if ((Test15ParReyDif.HasValue == true)) {
+ command.Parameters[4].Value = ((int)(Test15ParReyDif.Value));
+ }
+ else {
+ command.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ if ((StroopTestInterfErr.HasValue == true)) {
+ command.Parameters[5].Value = ((int)(StroopTestInterfErr.Value));
+ }
+ else {
+ command.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ if ((StroopTestInterfTemp.HasValue == true)) {
+ command.Parameters[6].Value = ((int)(StroopTestInterfTemp.Value));
+ }
+ else {
+ command.Parameters[6].Value = global::System.DBNull.Value;
+ }
+ if ((Original_DataVisita.HasValue == true)) {
+ command.Parameters[7].Value = ((System.DateTime)(Original_DataVisita.Value));
+ }
+ else {
+ command.Parameters[7].Value = global::System.DBNull.Value;
+ }
+ if ((Original_IdxPaziente.HasValue == true)) {
+ command.Parameters[8].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[8].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+ }
+
+ ///
+ ///Represents the connection and commands used to retrieve and save data.
+ ///
+ [global::System.ComponentModel.DesignerCategoryAttribute("code")]
+ [global::System.ComponentModel.ToolboxItem(true)]
+ [global::System.ComponentModel.DataObjectAttribute(true)]
+ [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
+ ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public partial class VisStileVitaTableAdapter : global::System.ComponentModel.Component {
+
+ private global::System.Data.SqlClient.SqlDataAdapter _adapter;
+
+ private global::System.Data.SqlClient.SqlConnection _connection;
+
+ private global::System.Data.SqlClient.SqlTransaction _transaction;
+
+ private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
+
+ private bool _clearBeforeFill;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisStileVitaTableAdapter() {
+ this.ClearBeforeFill = true;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
+ get {
+ if ((this._adapter == null)) {
+ this.InitAdapter();
+ }
+ return this._adapter;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlConnection Connection {
+ get {
+ if ((this._connection == null)) {
+ this.InitConnection();
+ }
+ return this._connection;
+ }
+ set {
+ this._connection = value;
+ if ((this.Adapter.InsertCommand != null)) {
+ this.Adapter.InsertCommand.Connection = value;
+ }
+ if ((this.Adapter.DeleteCommand != null)) {
+ this.Adapter.DeleteCommand.Connection = value;
+ }
+ if ((this.Adapter.UpdateCommand != null)) {
+ this.Adapter.UpdateCommand.Connection = value;
+ }
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ if ((this.CommandCollection[i] != null)) {
+ ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
+ }
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlTransaction Transaction {
+ get {
+ return this._transaction;
+ }
+ set {
+ this._transaction = value;
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ this.CommandCollection[i].Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.DeleteCommand != null))) {
+ this.Adapter.DeleteCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.InsertCommand != null))) {
+ this.Adapter.InsertCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.UpdateCommand != null))) {
+ this.Adapter.UpdateCommand.Transaction = this._transaction;
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
+ get {
+ if ((this._commandCollection == null)) {
+ this.InitCommandCollection();
+ }
+ return this._commandCollection;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool ClearBeforeFill {
+ get {
+ return this._clearBeforeFill;
+ }
+ set {
+ this._clearBeforeFill = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitAdapter() {
+ this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
+ global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
+ tableMapping.SourceTable = "Table";
+ tableMapping.DataSetTable = "VisStileVita";
+ tableMapping.ColumnMappings.Add("IdxPaziente", "IdxPaziente");
+ tableMapping.ColumnMappings.Add("DataVisita", "DataVisita");
+ tableMapping.ColumnMappings.Add("Eta", "Eta");
+ tableMapping.ColumnMappings.Add("Sesso", "Sesso");
+ tableMapping.ColumnMappings.Add("Lavoro", "Lavoro");
+ tableMapping.ColumnMappings.Add("StileVita", "StileVita");
+ tableMapping.ColumnMappings.Add("FreqAll", "FreqAll");
+ tableMapping.ColumnMappings.Add("MezzoTrasp", "MezzoTrasp");
+ tableMapping.ColumnMappings.Add("ScoreAttiv", "ScoreAttiv");
+ tableMapping.ColumnMappings.Add("MET_Lavoro", "MET_Lavoro");
+ tableMapping.ColumnMappings.Add("MET_AttFisica", "MET_AttFisica");
+ tableMapping.ColumnMappings.Add("OreSonno", "OreSonno");
+ tableMapping.ColumnMappings.Add("OreSeduto", "OreSeduto");
+ tableMapping.ColumnMappings.Add("OrePasti", "OrePasti");
+ tableMapping.ColumnMappings.Add("OreSpostAuto", "OreSpostAuto");
+ tableMapping.ColumnMappings.Add("OreSpostAtt", "OreSpostAtt");
+ tableMapping.ColumnMappings.Add("OreLavoro", "OreLavoro");
+ tableMapping.ColumnMappings.Add("OreIgiene", "OreIgiene");
+ tableMapping.ColumnMappings.Add("OreAttFisica", "OreAttFisica");
+ tableMapping.ColumnMappings.Add("OrePulizia", "OrePulizia");
+ tableMapping.ColumnMappings.Add("OreCane", "OreCane");
+ tableMapping.ColumnMappings.Add("ConsCalDie", "ConsCalDie");
+ tableMapping.ColumnMappings.Add("Verdure", "Verdure");
+ tableMapping.ColumnMappings.Add("Legumi", "Legumi");
+ tableMapping.ColumnMappings.Add("Frutta", "Frutta");
+ tableMapping.ColumnMappings.Add("Noci", "Noci");
+ tableMapping.ColumnMappings.Add("Cereali", "Cereali");
+ tableMapping.ColumnMappings.Add("Pesce", "Pesce");
+ tableMapping.ColumnMappings.Add("Grassi", "Grassi");
+ tableMapping.ColumnMappings.Add("Vino", "Vino");
+ tableMapping.ColumnMappings.Add("CarneLatt", "CarneLatt");
+ tableMapping.ColumnMappings.Add("ScoreDietMed", "ScoreDietMed");
+ tableMapping.ColumnMappings.Add("Note", "Note");
+ tableMapping.ColumnMappings.Add("Peso", "Peso");
+ this._adapter.TableMappings.Add(tableMapping);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitConnection() {
+ this._connection = new global::System.Data.SqlClient.SqlConnection();
+ this._connection.ConnectionString = global::MedPred_Data.Properties.Settings.Default.MedPredConnectionString;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitCommandCollection() {
+ this._commandCollection = new global::System.Data.SqlClient.SqlCommand[5];
+ this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[0].Connection = this.Connection;
+ this._commandCollection[0].CommandText = "SELECT * \r\nFROM v_VisStileVita";
+ this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
+ this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[1].Connection = this.Connection;
+ this._commandCollection[1].CommandText = "dbo.stp_VSV_DeleteQuery";
+ this._commandCollection[1].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[2].Connection = this.Connection;
+ this._commandCollection[2].CommandText = "dbo.stp_VSV_getByPaziente";
+ this._commandCollection[2].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[3].Connection = this.Connection;
+ this._commandCollection[3].CommandText = "dbo.stp_VSV_InsertQuery";
+ this._commandCollection[3].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Lavoro", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@StileVita", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FreqAll", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@MezzoTrasp", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@MET_Lavoro", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@MET_AttFisica", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OreSeduto", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OrePasti", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OreSpostAuto", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OreSpostAtt", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OreLavoro", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OreIgiene", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OreAttFisica", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OrePulizia", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OreCane", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Verdure", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Legumi", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Frutta", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Noci", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Cereali", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Pesce", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Grassi", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Vino", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CarneLatt", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.NVarChar, 250, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[4].Connection = this.Connection;
+ this._commandCollection[4].CommandText = "dbo.stp_VSV_UpdateQuery";
+ this._commandCollection[4].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Lavoro", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@StileVita", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FreqAll", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@MezzoTrasp", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@MET_Lavoro", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@MET_AttFisica", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OreSeduto", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OrePasti", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OreSpostAuto", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OreSpostAtt", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OreLavoro", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OreIgiene", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OreAttFisica", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OrePulizia", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@OreCane", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Verdure", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Legumi", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Frutta", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Noci", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Cereali", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Pesce", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Grassi", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Vino", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CarneLatt", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.NVarChar, 250, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
+ public virtual int Fill(DS_Applicazione.VisStileVitaDataTable dataTable) {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ if ((this.ClearBeforeFill == true)) {
+ dataTable.Clear();
+ }
+ int returnValue = this.Adapter.Fill(dataTable);
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
+ public virtual DS_Applicazione.VisStileVitaDataTable GetData() {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ DS_Applicazione.VisStileVitaDataTable dataTable = new DS_Applicazione.VisStileVitaDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.VisStileVitaDataTable getByPaziente(global::System.Nullable IdxPaziente, global::System.Nullable DataVisita) {
+ this.Adapter.SelectCommand = this.CommandCollection[2];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.VisStileVitaDataTable dataTable = new DS_Applicazione.VisStileVitaDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int DeleteQuery(global::System.Nullable Original_IdxPaziente, global::System.Nullable Original_DataVisita) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[1];
+ if ((Original_IdxPaziente.HasValue == true)) {
+ command.Parameters[1].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((Original_DataVisita.HasValue == true)) {
+ command.Parameters[2].Value = ((System.DateTime)(Original_DataVisita.Value));
+ }
+ else {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int InsertQuery(
+ global::System.Nullable IdxPaziente,
+ global::System.Nullable DataVisita,
+ global::System.Nullable Lavoro,
+ global::System.Nullable StileVita,
+ global::System.Nullable FreqAll,
+ global::System.Nullable MezzoTrasp,
+ global::System.Nullable MET_Lavoro,
+ global::System.Nullable MET_AttFisica,
+ global::System.Nullable OreSeduto,
+ global::System.Nullable OrePasti,
+ global::System.Nullable OreSpostAuto,
+ global::System.Nullable OreSpostAtt,
+ global::System.Nullable OreLavoro,
+ global::System.Nullable OreIgiene,
+ global::System.Nullable OreAttFisica,
+ global::System.Nullable OrePulizia,
+ global::System.Nullable OreCane,
+ global::System.Nullable Verdure,
+ global::System.Nullable Legumi,
+ global::System.Nullable Frutta,
+ global::System.Nullable Noci,
+ global::System.Nullable Cereali,
+ global::System.Nullable Pesce,
+ global::System.Nullable Grassi,
+ global::System.Nullable Vino,
+ global::System.Nullable CarneLatt,
+ string Note) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[3];
+ if ((IdxPaziente.HasValue == true)) {
+ command.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ command.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ if ((Lavoro.HasValue == true)) {
+ command.Parameters[3].Value = ((int)(Lavoro.Value));
+ }
+ else {
+ command.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ if ((StileVita.HasValue == true)) {
+ command.Parameters[4].Value = ((int)(StileVita.Value));
+ }
+ else {
+ command.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ if ((FreqAll.HasValue == true)) {
+ command.Parameters[5].Value = ((int)(FreqAll.Value));
+ }
+ else {
+ command.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ if ((MezzoTrasp.HasValue == true)) {
+ command.Parameters[6].Value = ((int)(MezzoTrasp.Value));
+ }
+ else {
+ command.Parameters[6].Value = global::System.DBNull.Value;
+ }
+ if ((MET_Lavoro.HasValue == true)) {
+ command.Parameters[7].Value = ((double)(MET_Lavoro.Value));
+ }
+ else {
+ command.Parameters[7].Value = global::System.DBNull.Value;
+ }
+ if ((MET_AttFisica.HasValue == true)) {
+ command.Parameters[8].Value = ((double)(MET_AttFisica.Value));
+ }
+ else {
+ command.Parameters[8].Value = global::System.DBNull.Value;
+ }
+ if ((OreSeduto.HasValue == true)) {
+ command.Parameters[9].Value = ((double)(OreSeduto.Value));
+ }
+ else {
+ command.Parameters[9].Value = global::System.DBNull.Value;
+ }
+ if ((OrePasti.HasValue == true)) {
+ command.Parameters[10].Value = ((double)(OrePasti.Value));
+ }
+ else {
+ command.Parameters[10].Value = global::System.DBNull.Value;
+ }
+ if ((OreSpostAuto.HasValue == true)) {
+ command.Parameters[11].Value = ((double)(OreSpostAuto.Value));
+ }
+ else {
+ command.Parameters[11].Value = global::System.DBNull.Value;
+ }
+ if ((OreSpostAtt.HasValue == true)) {
+ command.Parameters[12].Value = ((double)(OreSpostAtt.Value));
+ }
+ else {
+ command.Parameters[12].Value = global::System.DBNull.Value;
+ }
+ if ((OreLavoro.HasValue == true)) {
+ command.Parameters[13].Value = ((double)(OreLavoro.Value));
+ }
+ else {
+ command.Parameters[13].Value = global::System.DBNull.Value;
+ }
+ if ((OreIgiene.HasValue == true)) {
+ command.Parameters[14].Value = ((double)(OreIgiene.Value));
+ }
+ else {
+ command.Parameters[14].Value = global::System.DBNull.Value;
+ }
+ if ((OreAttFisica.HasValue == true)) {
+ command.Parameters[15].Value = ((double)(OreAttFisica.Value));
+ }
+ else {
+ command.Parameters[15].Value = global::System.DBNull.Value;
+ }
+ if ((OrePulizia.HasValue == true)) {
+ command.Parameters[16].Value = ((double)(OrePulizia.Value));
+ }
+ else {
+ command.Parameters[16].Value = global::System.DBNull.Value;
+ }
+ if ((OreCane.HasValue == true)) {
+ command.Parameters[17].Value = ((double)(OreCane.Value));
+ }
+ else {
+ command.Parameters[17].Value = global::System.DBNull.Value;
+ }
+ if ((Verdure.HasValue == true)) {
+ command.Parameters[18].Value = ((int)(Verdure.Value));
+ }
+ else {
+ command.Parameters[18].Value = global::System.DBNull.Value;
+ }
+ if ((Legumi.HasValue == true)) {
+ command.Parameters[19].Value = ((int)(Legumi.Value));
+ }
+ else {
+ command.Parameters[19].Value = global::System.DBNull.Value;
+ }
+ if ((Frutta.HasValue == true)) {
+ command.Parameters[20].Value = ((int)(Frutta.Value));
+ }
+ else {
+ command.Parameters[20].Value = global::System.DBNull.Value;
+ }
+ if ((Noci.HasValue == true)) {
+ command.Parameters[21].Value = ((int)(Noci.Value));
+ }
+ else {
+ command.Parameters[21].Value = global::System.DBNull.Value;
+ }
+ if ((Cereali.HasValue == true)) {
+ command.Parameters[22].Value = ((int)(Cereali.Value));
+ }
+ else {
+ command.Parameters[22].Value = global::System.DBNull.Value;
+ }
+ if ((Pesce.HasValue == true)) {
+ command.Parameters[23].Value = ((int)(Pesce.Value));
+ }
+ else {
+ command.Parameters[23].Value = global::System.DBNull.Value;
+ }
+ if ((Grassi.HasValue == true)) {
+ command.Parameters[24].Value = ((int)(Grassi.Value));
+ }
+ else {
+ command.Parameters[24].Value = global::System.DBNull.Value;
+ }
+ if ((Vino.HasValue == true)) {
+ command.Parameters[25].Value = ((int)(Vino.Value));
+ }
+ else {
+ command.Parameters[25].Value = global::System.DBNull.Value;
+ }
+ if ((CarneLatt.HasValue == true)) {
+ command.Parameters[26].Value = ((int)(CarneLatt.Value));
+ }
+ else {
+ command.Parameters[26].Value = global::System.DBNull.Value;
+ }
+ if ((Note == null)) {
+ command.Parameters[27].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[27].Value = ((string)(Note));
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int UpdateQuery(
+ global::System.Nullable Lavoro,
+ global::System.Nullable StileVita,
+ global::System.Nullable FreqAll,
+ global::System.Nullable MezzoTrasp,
+ global::System.Nullable MET_Lavoro,
+ global::System.Nullable MET_AttFisica,
+ global::System.Nullable OreSeduto,
+ global::System.Nullable OrePasti,
+ global::System.Nullable OreSpostAuto,
+ global::System.Nullable OreSpostAtt,
+ global::System.Nullable OreLavoro,
+ global::System.Nullable OreIgiene,
+ global::System.Nullable OreAttFisica,
+ global::System.Nullable OrePulizia,
+ global::System.Nullable OreCane,
+ global::System.Nullable Verdure,
+ global::System.Nullable Legumi,
+ global::System.Nullable Frutta,
+ global::System.Nullable Noci,
+ global::System.Nullable Cereali,
+ global::System.Nullable Pesce,
+ global::System.Nullable Grassi,
+ global::System.Nullable Vino,
+ global::System.Nullable CarneLatt,
+ string Note,
+ global::System.Nullable Original_DataVisita,
+ global::System.Nullable Original_IdxPaziente) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[4];
+ if ((Lavoro.HasValue == true)) {
+ command.Parameters[1].Value = ((int)(Lavoro.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((StileVita.HasValue == true)) {
+ command.Parameters[2].Value = ((int)(StileVita.Value));
+ }
+ else {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ if ((FreqAll.HasValue == true)) {
+ command.Parameters[3].Value = ((int)(FreqAll.Value));
+ }
+ else {
+ command.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ if ((MezzoTrasp.HasValue == true)) {
+ command.Parameters[4].Value = ((int)(MezzoTrasp.Value));
+ }
+ else {
+ command.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ if ((MET_Lavoro.HasValue == true)) {
+ command.Parameters[5].Value = ((double)(MET_Lavoro.Value));
+ }
+ else {
+ command.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ if ((MET_AttFisica.HasValue == true)) {
+ command.Parameters[6].Value = ((double)(MET_AttFisica.Value));
+ }
+ else {
+ command.Parameters[6].Value = global::System.DBNull.Value;
+ }
+ if ((OreSeduto.HasValue == true)) {
+ command.Parameters[7].Value = ((double)(OreSeduto.Value));
+ }
+ else {
+ command.Parameters[7].Value = global::System.DBNull.Value;
+ }
+ if ((OrePasti.HasValue == true)) {
+ command.Parameters[8].Value = ((double)(OrePasti.Value));
+ }
+ else {
+ command.Parameters[8].Value = global::System.DBNull.Value;
+ }
+ if ((OreSpostAuto.HasValue == true)) {
+ command.Parameters[9].Value = ((double)(OreSpostAuto.Value));
+ }
+ else {
+ command.Parameters[9].Value = global::System.DBNull.Value;
+ }
+ if ((OreSpostAtt.HasValue == true)) {
+ command.Parameters[10].Value = ((double)(OreSpostAtt.Value));
+ }
+ else {
+ command.Parameters[10].Value = global::System.DBNull.Value;
+ }
+ if ((OreLavoro.HasValue == true)) {
+ command.Parameters[11].Value = ((double)(OreLavoro.Value));
+ }
+ else {
+ command.Parameters[11].Value = global::System.DBNull.Value;
+ }
+ if ((OreIgiene.HasValue == true)) {
+ command.Parameters[12].Value = ((double)(OreIgiene.Value));
+ }
+ else {
+ command.Parameters[12].Value = global::System.DBNull.Value;
+ }
+ if ((OreAttFisica.HasValue == true)) {
+ command.Parameters[13].Value = ((double)(OreAttFisica.Value));
+ }
+ else {
+ command.Parameters[13].Value = global::System.DBNull.Value;
+ }
+ if ((OrePulizia.HasValue == true)) {
+ command.Parameters[14].Value = ((double)(OrePulizia.Value));
+ }
+ else {
+ command.Parameters[14].Value = global::System.DBNull.Value;
+ }
+ if ((OreCane.HasValue == true)) {
+ command.Parameters[15].Value = ((double)(OreCane.Value));
+ }
+ else {
+ command.Parameters[15].Value = global::System.DBNull.Value;
+ }
+ if ((Verdure.HasValue == true)) {
+ command.Parameters[16].Value = ((int)(Verdure.Value));
+ }
+ else {
+ command.Parameters[16].Value = global::System.DBNull.Value;
+ }
+ if ((Legumi.HasValue == true)) {
+ command.Parameters[17].Value = ((int)(Legumi.Value));
+ }
+ else {
+ command.Parameters[17].Value = global::System.DBNull.Value;
+ }
+ if ((Frutta.HasValue == true)) {
+ command.Parameters[18].Value = ((int)(Frutta.Value));
+ }
+ else {
+ command.Parameters[18].Value = global::System.DBNull.Value;
+ }
+ if ((Noci.HasValue == true)) {
+ command.Parameters[19].Value = ((int)(Noci.Value));
+ }
+ else {
+ command.Parameters[19].Value = global::System.DBNull.Value;
+ }
+ if ((Cereali.HasValue == true)) {
+ command.Parameters[20].Value = ((int)(Cereali.Value));
+ }
+ else {
+ command.Parameters[20].Value = global::System.DBNull.Value;
+ }
+ if ((Pesce.HasValue == true)) {
+ command.Parameters[21].Value = ((int)(Pesce.Value));
+ }
+ else {
+ command.Parameters[21].Value = global::System.DBNull.Value;
+ }
+ if ((Grassi.HasValue == true)) {
+ command.Parameters[22].Value = ((int)(Grassi.Value));
+ }
+ else {
+ command.Parameters[22].Value = global::System.DBNull.Value;
+ }
+ if ((Vino.HasValue == true)) {
+ command.Parameters[23].Value = ((int)(Vino.Value));
+ }
+ else {
+ command.Parameters[23].Value = global::System.DBNull.Value;
+ }
+ if ((CarneLatt.HasValue == true)) {
+ command.Parameters[24].Value = ((int)(CarneLatt.Value));
+ }
+ else {
+ command.Parameters[24].Value = global::System.DBNull.Value;
+ }
+ if ((Note == null)) {
+ command.Parameters[25].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[25].Value = ((string)(Note));
+ }
+ if ((Original_DataVisita.HasValue == true)) {
+ command.Parameters[26].Value = ((System.DateTime)(Original_DataVisita.Value));
+ }
+ else {
+ command.Parameters[26].Value = global::System.DBNull.Value;
+ }
+ if ((Original_IdxPaziente.HasValue == true)) {
+ command.Parameters[27].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[27].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+ }
+
+ ///
+ ///Represents the connection and commands used to retrieve and save data.
+ ///
+ [global::System.ComponentModel.DesignerCategoryAttribute("code")]
+ [global::System.ComponentModel.ToolboxItem(true)]
+ [global::System.ComponentModel.DataObjectAttribute(true)]
+ [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
+ ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public partial class VisRelazFinTableAdapter : global::System.ComponentModel.Component {
+
+ private global::System.Data.SqlClient.SqlDataAdapter _adapter;
+
+ private global::System.Data.SqlClient.SqlConnection _connection;
+
+ private global::System.Data.SqlClient.SqlTransaction _transaction;
+
+ private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
+
+ private bool _clearBeforeFill;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisRelazFinTableAdapter() {
+ this.ClearBeforeFill = true;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
+ get {
+ if ((this._adapter == null)) {
+ this.InitAdapter();
+ }
+ return this._adapter;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlConnection Connection {
+ get {
+ if ((this._connection == null)) {
+ this.InitConnection();
+ }
+ return this._connection;
+ }
+ set {
+ this._connection = value;
+ if ((this.Adapter.InsertCommand != null)) {
+ this.Adapter.InsertCommand.Connection = value;
+ }
+ if ((this.Adapter.DeleteCommand != null)) {
+ this.Adapter.DeleteCommand.Connection = value;
+ }
+ if ((this.Adapter.UpdateCommand != null)) {
+ this.Adapter.UpdateCommand.Connection = value;
+ }
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ if ((this.CommandCollection[i] != null)) {
+ ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
+ }
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlTransaction Transaction {
+ get {
+ return this._transaction;
+ }
+ set {
+ this._transaction = value;
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ this.CommandCollection[i].Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.DeleteCommand != null))) {
+ this.Adapter.DeleteCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.InsertCommand != null))) {
+ this.Adapter.InsertCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.UpdateCommand != null))) {
+ this.Adapter.UpdateCommand.Transaction = this._transaction;
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
+ get {
+ if ((this._commandCollection == null)) {
+ this.InitCommandCollection();
+ }
+ return this._commandCollection;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool ClearBeforeFill {
+ get {
+ return this._clearBeforeFill;
+ }
+ set {
+ this._clearBeforeFill = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitAdapter() {
+ this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
+ global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
+ tableMapping.SourceTable = "Table";
+ tableMapping.DataSetTable = "VisRelazFin";
+ tableMapping.ColumnMappings.Add("IdxPaziente", "IdxPaziente");
+ tableMapping.ColumnMappings.Add("DataVisita", "DataVisita");
+ tableMapping.ColumnMappings.Add("Note", "Note");
+ tableMapping.ColumnMappings.Add("Score1", "Score1");
+ tableMapping.ColumnMappings.Add("Score2", "Score2");
+ this._adapter.TableMappings.Add(tableMapping);
+ this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.DeleteCommand.Connection = this.Connection;
+ this._adapter.DeleteCommand.CommandText = "DELETE FROM [VisRelazFin] WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([Da" +
+ "taVisita] = @Original_DataVisita) AND ([Note] = @Original_Note) AND ([Score1] = " +
+ "@Original_Score1) AND ([Score2] = @Original_Score2))";
+ this._adapter.DeleteCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Note", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Score1", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Score1", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.DeleteCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Score2", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Score2", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.InsertCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.InsertCommand.Connection = this.Connection;
+ this._adapter.InsertCommand.CommandText = @"INSERT INTO [VisRelazFin] ([IdxPaziente], [DataVisita], [Note], [Score1], [Score2]) VALUES (@IdxPaziente, @DataVisita, @Note, @Score1, @Score2);
+SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (DataVisita = @DataVisita) AND (IdxPaziente = @IdxPaziente)";
+ this._adapter.InsertCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Note", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Score1", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Score1", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.InsertCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Score2", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Score2", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
+ this._adapter.UpdateCommand.Connection = this.Connection;
+ this._adapter.UpdateCommand.CommandText = @"UPDATE [VisRelazFin] SET [IdxPaziente] = @IdxPaziente, [DataVisita] = @DataVisita, [Note] = @Note, [Score1] = @Score1, [Score2] = @Score2 WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([DataVisita] = @Original_DataVisita) AND ([Note] = @Original_Note) AND ([Score1] = @Original_Score1) AND ([Score2] = @Original_Score2));
+SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (DataVisita = @DataVisita) AND (IdxPaziente = @IdxPaziente)";
+ this._adapter.UpdateCommand.CommandType = global::System.Data.CommandType.Text;
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Note", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Score1", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Score1", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Score2", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Score2", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 0, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 0, global::System.Data.ParameterDirection.Input, 0, 0, "DataVisita", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Note", global::System.Data.SqlDbType.NVarChar, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Note", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Score1", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Score1", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ this._adapter.UpdateCommand.Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_Score2", global::System.Data.SqlDbType.Float, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Score2", global::System.Data.DataRowVersion.Original, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitConnection() {
+ this._connection = new global::System.Data.SqlClient.SqlConnection();
+ this._connection.ConnectionString = global::MedPred_Data.Properties.Settings.Default.MedPredConnectionString;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitCommandCollection() {
+ this._commandCollection = new global::System.Data.SqlClient.SqlCommand[5];
+ this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[0].Connection = this.Connection;
+ this._commandCollection[0].CommandText = "SELECT IdxPaziente, DataVisita, Note, Score1, Score2\r\nFROM VisR" +
+ "elazFin";
+ this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
+ this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[1].Connection = this.Connection;
+ this._commandCollection[1].CommandText = "dbo.stp_VRF_DeleteQuery";
+ this._commandCollection[1].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[2].Connection = this.Connection;
+ this._commandCollection[2].CommandText = "dbo.stp_VRF_getByPaziente";
+ this._commandCollection[2].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[3].Connection = this.Connection;
+ this._commandCollection[3].CommandText = "dbo.stp_VRF_InsertQuery";
+ this._commandCollection[3].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Score1", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Score2", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.NVarChar, 4000, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[4].Connection = this.Connection;
+ this._commandCollection[4].CommandText = "dbo.stp_VRF_UpdateQuery";
+ this._commandCollection[4].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Score1", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Score2", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Note", global::System.Data.SqlDbType.NVarChar, 4000, global::System.Data.ParameterDirection.Input, 0, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
+ public virtual int Fill(DS_Applicazione.VisRelazFinDataTable dataTable) {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ if ((this.ClearBeforeFill == true)) {
+ dataTable.Clear();
+ }
+ int returnValue = this.Adapter.Fill(dataTable);
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
+ public virtual DS_Applicazione.VisRelazFinDataTable GetData() {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ DS_Applicazione.VisRelazFinDataTable dataTable = new DS_Applicazione.VisRelazFinDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.VisRelazFinDataTable getByPaziente(global::System.Nullable IdxPaziente, global::System.Nullable DataVisita) {
+ this.Adapter.SelectCommand = this.CommandCollection[2];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.VisRelazFinDataTable dataTable = new DS_Applicazione.VisRelazFinDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(DS_Applicazione.VisRelazFinDataTable dataTable) {
+ return this.Adapter.Update(dataTable);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(DS_Applicazione dataSet) {
+ return this.Adapter.Update(dataSet, "VisRelazFin");
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(global::System.Data.DataRow dataRow) {
+ return this.Adapter.Update(new global::System.Data.DataRow[] {
+ dataRow});
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int Update(global::System.Data.DataRow[] dataRows) {
+ return this.Adapter.Update(dataRows);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Delete, true)]
+ public virtual int Delete(int Original_IdxPaziente, System.DateTime Original_DataVisita, string Original_Note, double Original_Score1, double Original_Score2) {
+ this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_IdxPaziente));
+ this.Adapter.DeleteCommand.Parameters[1].Value = ((System.DateTime)(Original_DataVisita));
+ if ((Original_Note == null)) {
+ throw new global::System.ArgumentNullException("Original_Note");
+ }
+ else {
+ this.Adapter.DeleteCommand.Parameters[2].Value = ((string)(Original_Note));
+ }
+ this.Adapter.DeleteCommand.Parameters[3].Value = ((double)(Original_Score1));
+ this.Adapter.DeleteCommand.Parameters[4].Value = ((double)(Original_Score2));
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
+ if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.DeleteCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.DeleteCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.DeleteCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Insert, true)]
+ public virtual int Insert(int IdxPaziente, System.DateTime DataVisita, string Note, double Score1, double Score2) {
+ this.Adapter.InsertCommand.Parameters[0].Value = ((int)(IdxPaziente));
+ this.Adapter.InsertCommand.Parameters[1].Value = ((System.DateTime)(DataVisita));
+ if ((Note == null)) {
+ throw new global::System.ArgumentNullException("Note");
+ }
+ else {
+ this.Adapter.InsertCommand.Parameters[2].Value = ((string)(Note));
+ }
+ this.Adapter.InsertCommand.Parameters[3].Value = ((double)(Score1));
+ this.Adapter.InsertCommand.Parameters[4].Value = ((double)(Score2));
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
+ if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.InsertCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.InsertCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.InsertCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
+ public virtual int Update(int IdxPaziente, System.DateTime DataVisita, string Note, double Score1, double Score2, int Original_IdxPaziente, System.DateTime Original_DataVisita, string Original_Note, double Original_Score1, double Original_Score2) {
+ this.Adapter.UpdateCommand.Parameters[0].Value = ((int)(IdxPaziente));
+ this.Adapter.UpdateCommand.Parameters[1].Value = ((System.DateTime)(DataVisita));
+ if ((Note == null)) {
+ throw new global::System.ArgumentNullException("Note");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[2].Value = ((string)(Note));
+ }
+ this.Adapter.UpdateCommand.Parameters[3].Value = ((double)(Score1));
+ this.Adapter.UpdateCommand.Parameters[4].Value = ((double)(Score2));
+ this.Adapter.UpdateCommand.Parameters[5].Value = ((int)(Original_IdxPaziente));
+ this.Adapter.UpdateCommand.Parameters[6].Value = ((System.DateTime)(Original_DataVisita));
+ if ((Original_Note == null)) {
+ throw new global::System.ArgumentNullException("Original_Note");
+ }
+ else {
+ this.Adapter.UpdateCommand.Parameters[7].Value = ((string)(Original_Note));
+ }
+ this.Adapter.UpdateCommand.Parameters[8].Value = ((double)(Original_Score1));
+ this.Adapter.UpdateCommand.Parameters[9].Value = ((double)(Original_Score2));
+ global::System.Data.ConnectionState previousConnectionState = this.Adapter.UpdateCommand.Connection.State;
+ if (((this.Adapter.UpdateCommand.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ this.Adapter.UpdateCommand.Connection.Open();
+ }
+ try {
+ int returnValue = this.Adapter.UpdateCommand.ExecuteNonQuery();
+ return returnValue;
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ this.Adapter.UpdateCommand.Connection.Close();
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Update, true)]
+ public virtual int Update(string Note, double Score1, double Score2, int Original_IdxPaziente, System.DateTime Original_DataVisita, string Original_Note, double Original_Score1, double Original_Score2) {
+ return this.Update(Original_IdxPaziente, Original_DataVisita, Note, Score1, Score2, Original_IdxPaziente, Original_DataVisita, Original_Note, Original_Score1, Original_Score2);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int DeleteQuery(global::System.Nullable Original_IdxPaziente, global::System.Nullable Original_DataVisita) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[1];
+ if ((Original_IdxPaziente.HasValue == true)) {
+ command.Parameters[1].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((Original_DataVisita.HasValue == true)) {
+ command.Parameters[2].Value = ((System.DateTime)(Original_DataVisita.Value));
+ }
+ else {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int InsertQuery(global::System.Nullable Score1, global::System.Nullable Score2, string Note, global::System.Nullable DataVisita, global::System.Nullable IdxPaziente) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[3];
+ if ((Score1.HasValue == true)) {
+ command.Parameters[1].Value = ((double)(Score1.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((Score2.HasValue == true)) {
+ command.Parameters[2].Value = ((double)(Score2.Value));
+ }
+ else {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ if ((Note == null)) {
+ command.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[3].Value = ((string)(Note));
+ }
+ if ((DataVisita.HasValue == true)) {
+ command.Parameters[4].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ command.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ if ((IdxPaziente.HasValue == true)) {
+ command.Parameters[5].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int UpdateQuery(global::System.Nullable Score1, global::System.Nullable Score2, string Note, global::System.Nullable Original_DataVisita, global::System.Nullable Original_IdxPaziente) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[4];
+ if ((Score1.HasValue == true)) {
+ command.Parameters[1].Value = ((double)(Score1.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((Score2.HasValue == true)) {
+ command.Parameters[2].Value = ((double)(Score2.Value));
+ }
+ else {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ if ((Note == null)) {
+ command.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ else {
+ command.Parameters[3].Value = ((string)(Note));
+ }
+ if ((Original_DataVisita.HasValue == true)) {
+ command.Parameters[4].Value = ((System.DateTime)(Original_DataVisita.Value));
+ }
+ else {
+ command.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ if ((Original_IdxPaziente.HasValue == true)) {
+ command.Parameters[5].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+ }
+
+ ///
+ ///Represents the connection and commands used to retrieve and save data.
+ ///
+ [global::System.ComponentModel.DesignerCategoryAttribute("code")]
+ [global::System.ComponentModel.ToolboxItem(true)]
+ [global::System.ComponentModel.DataObjectAttribute(true)]
+ [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
+ ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public partial class stp_rep_DatiFullByPazienteDataTableAdapter : global::System.ComponentModel.Component {
+
+ private global::System.Data.SqlClient.SqlDataAdapter _adapter;
+
+ private global::System.Data.SqlClient.SqlConnection _connection;
+
+ private global::System.Data.SqlClient.SqlTransaction _transaction;
+
+ private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
+
+ private bool _clearBeforeFill;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public stp_rep_DatiFullByPazienteDataTableAdapter() {
+ this.ClearBeforeFill = true;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
+ get {
+ if ((this._adapter == null)) {
+ this.InitAdapter();
+ }
+ return this._adapter;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlConnection Connection {
+ get {
+ if ((this._connection == null)) {
+ this.InitConnection();
+ }
+ return this._connection;
+ }
+ set {
+ this._connection = value;
+ if ((this.Adapter.InsertCommand != null)) {
+ this.Adapter.InsertCommand.Connection = value;
+ }
+ if ((this.Adapter.DeleteCommand != null)) {
+ this.Adapter.DeleteCommand.Connection = value;
+ }
+ if ((this.Adapter.UpdateCommand != null)) {
+ this.Adapter.UpdateCommand.Connection = value;
+ }
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ if ((this.CommandCollection[i] != null)) {
+ ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
+ }
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlTransaction Transaction {
+ get {
+ return this._transaction;
+ }
+ set {
+ this._transaction = value;
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ this.CommandCollection[i].Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.DeleteCommand != null))) {
+ this.Adapter.DeleteCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.InsertCommand != null))) {
+ this.Adapter.InsertCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.UpdateCommand != null))) {
+ this.Adapter.UpdateCommand.Transaction = this._transaction;
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
+ get {
+ if ((this._commandCollection == null)) {
+ this.InitCommandCollection();
+ }
+ return this._commandCollection;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool ClearBeforeFill {
+ get {
+ return this._clearBeforeFill;
+ }
+ set {
+ this._clearBeforeFill = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitAdapter() {
+ this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
+ global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
+ tableMapping.SourceTable = "Table";
+ tableMapping.DataSetTable = "stp_rep_DatiFullByPazienteData";
+ tableMapping.ColumnMappings.Add("IdxPaziente", "IdxPaziente");
+ tableMapping.ColumnMappings.Add("DataVisita", "DataVisita");
+ tableMapping.ColumnMappings.Add("Gruppo", "Gruppo");
+ tableMapping.ColumnMappings.Add("Cognome", "Cognome");
+ tableMapping.ColumnMappings.Add("Nome", "Nome");
+ tableMapping.ColumnMappings.Add("DataNasc", "DataNasc");
+ tableMapping.ColumnMappings.Add("LuogoNascita", "LuogoNascita");
+ tableMapping.ColumnMappings.Add("Sesso", "Sesso");
+ tableMapping.ColumnMappings.Add("CodF", "CodF");
+ tableMapping.ColumnMappings.Add("Indirizzo", "Indirizzo");
+ tableMapping.ColumnMappings.Add("Eta", "Eta");
+ tableMapping.ColumnMappings.Add("RecTel", "RecTel");
+ tableMapping.ColumnMappings.Add("Medico", "Medico");
+ tableMapping.ColumnMappings.Add("NotePaziente", "NotePaziente");
+ tableMapping.ColumnMappings.Add("Glicemia", "Glicemia");
+ tableMapping.ColumnMappings.Add("EmoglGlicata", "EmoglGlicata");
+ tableMapping.ColumnMappings.Add("ColesTot", "ColesTot");
+ tableMapping.ColumnMappings.Add("LDL", "LDL");
+ tableMapping.ColumnMappings.Add("HDL", "HDL");
+ tableMapping.ColumnMappings.Add("Trigliceridi", "Trigliceridi");
+ tableMapping.ColumnMappings.Add("ColRapLDLHDL", "ColRapLDLHDL");
+ tableMapping.ColumnMappings.Add("Omocisteina", "Omocisteina");
+ tableMapping.ColumnMappings.Add("MHTFR", "MHTFR");
+ tableMapping.ColumnMappings.Add("FattII", "FattII");
+ tableMapping.ColumnMappings.Add("FattV", "FattV");
+ tableMapping.ColumnMappings.Add("GradTransm", "GradTransm");
+ tableMapping.ColumnMappings.Add("LungTelom", "LungTelom");
+ tableMapping.ColumnMappings.Add("RespSilenz", "RespSilenz");
+ tableMapping.ColumnMappings.Add("Altezza", "Altezza");
+ tableMapping.ColumnMappings.Add("Peso", "Peso");
+ tableMapping.ColumnMappings.Add("PlicaBicipite", "PlicaBicipite");
+ tableMapping.ColumnMappings.Add("PlicaTricipite", "PlicaTricipite");
+ tableMapping.ColumnMappings.Add("PlicaSottoscapola", "PlicaSottoscapola");
+ tableMapping.ColumnMappings.Add("PlicaPettorale", "PlicaPettorale");
+ tableMapping.ColumnMappings.Add("PlicaAddominale", "PlicaAddominale");
+ tableMapping.ColumnMappings.Add("PlicaSoprailiaca", "PlicaSoprailiaca");
+ tableMapping.ColumnMappings.Add("PlicaCoscia", "PlicaCoscia");
+ tableMapping.ColumnMappings.Add("CirconfVitaGlutei", "CirconfVitaGlutei");
+ tableMapping.ColumnMappings.Add("CirconfAvamb", "CirconfAvamb");
+ tableMapping.ColumnMappings.Add("GrassoTroncoPerc", "GrassoTroncoPerc");
+ tableMapping.ColumnMappings.Add("GrassoViscInd", "GrassoViscInd");
+ tableMapping.ColumnMappings.Add("TRomberg", "TRomberg");
+ tableMapping.ColumnMappings.Add("TFukuda", "TFukuda");
+ tableMapping.ColumnMappings.Add("TGUG", "TGUG");
+ tableMapping.ColumnMappings.Add("TGUG1", "TGUG1");
+ tableMapping.ColumnMappings.Add("FPrensile", "FPrensile");
+ tableMapping.ColumnMappings.Add("DensCorp", "DensCorp");
+ tableMapping.ColumnMappings.Add("GrassoTotPerc", "GrassoTotPerc");
+ tableMapping.ColumnMappings.Add("GrassoTot", "GrassoTot");
+ tableMapping.ColumnMappings.Add("MassaMagraPerc", "MassaMagraPerc");
+ tableMapping.ColumnMappings.Add("MassaMagraKgCm", "MassaMagraKgCm");
+ tableMapping.ColumnMappings.Add("BMI", "BMI");
+ tableMapping.ColumnMappings.Add("MetBasaleDie", "MetBasaleDie");
+ tableMapping.ColumnMappings.Add("MetBasaleH", "MetBasaleH");
+ tableMapping.ColumnMappings.Add("Lavoro", "Lavoro");
+ tableMapping.ColumnMappings.Add("StileVita", "StileVita");
+ tableMapping.ColumnMappings.Add("FreqAll", "FreqAll");
+ tableMapping.ColumnMappings.Add("MezzoTrasp", "MezzoTrasp");
+ tableMapping.ColumnMappings.Add("ScoreAttiv", "ScoreAttiv");
+ tableMapping.ColumnMappings.Add("MET_Lavoro", "MET_Lavoro");
+ tableMapping.ColumnMappings.Add("MET_AttFisica", "MET_AttFisica");
+ tableMapping.ColumnMappings.Add("OreSonno", "OreSonno");
+ tableMapping.ColumnMappings.Add("OreSeduto", "OreSeduto");
+ tableMapping.ColumnMappings.Add("OrePasti", "OrePasti");
+ tableMapping.ColumnMappings.Add("OreSpostAuto", "OreSpostAuto");
+ tableMapping.ColumnMappings.Add("OreSpostAtt", "OreSpostAtt");
+ tableMapping.ColumnMappings.Add("OreLavoro", "OreLavoro");
+ tableMapping.ColumnMappings.Add("OreIgiene", "OreIgiene");
+ tableMapping.ColumnMappings.Add("OreAttFisica", "OreAttFisica");
+ tableMapping.ColumnMappings.Add("OrePulizia", "OrePulizia");
+ tableMapping.ColumnMappings.Add("OreCane", "OreCane");
+ tableMapping.ColumnMappings.Add("ConsCalDie", "ConsCalDie");
+ tableMapping.ColumnMappings.Add("Verdure", "Verdure");
+ tableMapping.ColumnMappings.Add("Legumi", "Legumi");
+ tableMapping.ColumnMappings.Add("Frutta", "Frutta");
+ tableMapping.ColumnMappings.Add("Noci", "Noci");
+ tableMapping.ColumnMappings.Add("Cereali", "Cereali");
+ tableMapping.ColumnMappings.Add("Pesce", "Pesce");
+ tableMapping.ColumnMappings.Add("Grassi", "Grassi");
+ tableMapping.ColumnMappings.Add("Vino", "Vino");
+ tableMapping.ColumnMappings.Add("CarneLatt", "CarneLatt");
+ tableMapping.ColumnMappings.Add("ScoreDietMed", "ScoreDietMed");
+ tableMapping.ColumnMappings.Add("NoteStileVita", "NoteStileVita");
+ tableMapping.ColumnMappings.Add("Lavoro_label", "Lavoro_label");
+ tableMapping.ColumnMappings.Add("StileVita_label", "StileVita_label");
+ tableMapping.ColumnMappings.Add("FreqAll_label", "FreqAll_label");
+ tableMapping.ColumnMappings.Add("MezzoTrasp_label", "MezzoTrasp_label");
+ tableMapping.ColumnMappings.Add("Verdure_label", "Verdure_label");
+ tableMapping.ColumnMappings.Add("Legumi_label", "Legumi_label");
+ tableMapping.ColumnMappings.Add("Frutta_label", "Frutta_label");
+ tableMapping.ColumnMappings.Add("Noci_label", "Noci_label");
+ tableMapping.ColumnMappings.Add("Cereali_label", "Cereali_label");
+ tableMapping.ColumnMappings.Add("Pesce_label", "Pesce_label");
+ tableMapping.ColumnMappings.Add("Grassi_label", "Grassi_label");
+ tableMapping.ColumnMappings.Add("Vino_label", "Vino_label");
+ tableMapping.ColumnMappings.Add("CarneLatt_label", "CarneLatt_label");
+ tableMapping.ColumnMappings.Add("TestTMT_A", "TestTMT_A");
+ tableMapping.ColumnMappings.Add("TestTMT_A_label", "TestTMT_A_label");
+ tableMapping.ColumnMappings.Add("TestTMT_B", "TestTMT_B");
+ tableMapping.ColumnMappings.Add("TestTMT_B_label", "TestTMT_B_label");
+ tableMapping.ColumnMappings.Add("TestTMT_BA", "TestTMT_BA");
+ tableMapping.ColumnMappings.Add("TestTMT_BA_label", "TestTMT_BA_label");
+ tableMapping.ColumnMappings.Add("Test15ParReyImm", "Test15ParReyImm");
+ tableMapping.ColumnMappings.Add("Test15ParReyImm_label", "Test15ParReyImm_label");
+ tableMapping.ColumnMappings.Add("Test15ParReyDif", "Test15ParReyDif");
+ tableMapping.ColumnMappings.Add("Test15ParReyDif_label", "Test15ParReyDif_label");
+ tableMapping.ColumnMappings.Add("ApprSuSpanViSpa", "ApprSuSpanViSpa");
+ tableMapping.ColumnMappings.Add("ApprSuSpanViSpa_label", "ApprSuSpanViSpa_label");
+ tableMapping.ColumnMappings.Add("StroopTestInterfErr", "StroopTestInterfErr");
+ tableMapping.ColumnMappings.Add("StroopTestInterfErr_label", "StroopTestInterfErr_label");
+ tableMapping.ColumnMappings.Add("TestStimeCognErr", "TestStimeCognErr");
+ tableMapping.ColumnMappings.Add("TestStimeCognErr_label", "TestStimeCognErr_label");
+ tableMapping.ColumnMappings.Add("TestStimeCognBiz", "TestStimeCognBiz");
+ tableMapping.ColumnMappings.Add("TestStimeCognBiz_label", "TestStimeCognBiz_label");
+ tableMapping.ColumnMappings.Add("TorreLondra", "TorreLondra");
+ tableMapping.ColumnMappings.Add("TorreLondra_label", "TorreLondra_label");
+ tableMapping.ColumnMappings.Add("PaSis", "PaSis");
+ tableMapping.ColumnMappings.Add("PaDia", "PaDia");
+ tableMapping.ColumnMappings.Add("QR1", "QR1");
+ tableMapping.ColumnMappings.Add("QR1_Kg", "QR1_Kg");
+ tableMapping.ColumnMappings.Add("VO2", "VO2");
+ tableMapping.ColumnMappings.Add("VO2_Kg", "VO2_Kg");
+ tableMapping.ColumnMappings.Add("FC_QR1", "FC_QR1");
+ tableMapping.ColumnMappings.Add("PolsoO2", "PolsoO2");
+ tableMapping.ColumnMappings.Add("PaSisMax", "PaSisMax");
+ tableMapping.ColumnMappings.Add("PaDiaMax", "PaDiaMax");
+ tableMapping.ColumnMappings.Add("FrazEiez", "FrazEiez");
+ tableMapping.ColumnMappings.Add("TDI", "TDI");
+ tableMapping.ColumnMappings.Add("PlaccheVas", "PlaccheVas");
+ tableMapping.ColumnMappings.Add("NoteCardio", "NoteCardio");
+ tableMapping.ColumnMappings.Add("PlaccheVas_Label", "PlaccheVas_Label");
+ tableMapping.ColumnMappings.Add("FamMCCV", "FamMCCV");
+ tableMapping.ColumnMappings.Add("FamMCCV_Label", "FamMCCV_Label");
+ tableMapping.ColumnMappings.Add("Ipertens", "Ipertens");
+ tableMapping.ColumnMappings.Add("Ipertens_Label", "Ipertens_Label");
+ tableMapping.ColumnMappings.Add("IpertensYtd", "IpertensYtd");
+ tableMapping.ColumnMappings.Add("IpertensYtd_Label", "IpertensYtd_Label");
+ tableMapping.ColumnMappings.Add("Diabete", "Diabete");
+ tableMapping.ColumnMappings.Add("Diabete_Label", "Diabete_Label");
+ tableMapping.ColumnMappings.Add("DiabeteYtd", "DiabeteYtd");
+ tableMapping.ColumnMappings.Add("DiabeteYtd_Label", "DiabeteYtd_Label");
+ tableMapping.ColumnMappings.Add("Ipercolest", "Ipercolest");
+ tableMapping.ColumnMappings.Add("Ipercolest_Label", "Ipercolest_Label");
+ tableMapping.ColumnMappings.Add("IpercolestYtd", "IpercolestYtd");
+ tableMapping.ColumnMappings.Add("IpercolestYtd_Label", "IpercolestYtd_Label");
+ tableMapping.ColumnMappings.Add("Fumo", "Fumo");
+ tableMapping.ColumnMappings.Add("Fumo_Label", "Fumo_Label");
+ tableMapping.ColumnMappings.Add("FumoYtd", "FumoYtd");
+ tableMapping.ColumnMappings.Add("FumoYtd_Label", "FumoYtd_Label");
+ tableMapping.ColumnMappings.Add("Alcool", "Alcool");
+ tableMapping.ColumnMappings.Add("Alcool_Label", "Alcool_Label");
+ tableMapping.ColumnMappings.Add("AlcoolYtd", "AlcoolYtd");
+ tableMapping.ColumnMappings.Add("AlcoolYtd_Label", "AlcoolYtd_Label");
+ tableMapping.ColumnMappings.Add("Sovrapp", "Sovrapp");
+ tableMapping.ColumnMappings.Add("Sovrapp_Label", "Sovrapp_Label");
+ tableMapping.ColumnMappings.Add("SovrappYtd", "SovrappYtd");
+ tableMapping.ColumnMappings.Add("SovrappYtd_Label", "SovrappYtd_Label");
+ tableMapping.ColumnMappings.Add("Sedent", "Sedent");
+ tableMapping.ColumnMappings.Add("Sedent_Label", "Sedent_Label");
+ tableMapping.ColumnMappings.Add("AdesTerap", "AdesTerap");
+ tableMapping.ColumnMappings.Add("AdesTerap_Label", "AdesTerap_Label");
+ tableMapping.ColumnMappings.Add("NoteRelFin", "NoteRelFin");
+ tableMapping.ColumnMappings.Add("Score1", "Score1");
+ tableMapping.ColumnMappings.Add("Score2", "Score2");
+ tableMapping.ColumnMappings.Add("MedicoRef", "MedicoRef");
+ this._adapter.TableMappings.Add(tableMapping);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitConnection() {
+ this._connection = new global::System.Data.SqlClient.SqlConnection();
+ this._connection.ConnectionString = global::MedPred_Data.Properties.Settings.Default.MedPredConnectionString;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitCommandCollection() {
+ this._commandCollection = new global::System.Data.SqlClient.SqlCommand[1];
+ this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[0].Connection = this.Connection;
+ this._commandCollection[0].CommandText = "dbo.stp_rep_DatiFullByPazienteData";
+ this._commandCollection[0].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[0].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
+ public virtual int Fill(DS_Applicazione.stp_rep_DatiFullByPazienteDataDataTable dataTable, global::System.Nullable IdxPaziente, global::System.Nullable DataVisita) {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ if ((this.ClearBeforeFill == true)) {
+ dataTable.Clear();
+ }
+ int returnValue = this.Adapter.Fill(dataTable);
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
+ public virtual DS_Applicazione.stp_rep_DatiFullByPazienteDataDataTable GetData(global::System.Nullable IdxPaziente, global::System.Nullable DataVisita) {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.stp_rep_DatiFullByPazienteDataDataTable dataTable = new DS_Applicazione.stp_rep_DatiFullByPazienteDataDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+ }
+
+ ///
+ ///Represents the connection and commands used to retrieve and save data.
+ ///
+ [global::System.ComponentModel.DesignerCategoryAttribute("code")]
+ [global::System.ComponentModel.ToolboxItem(true)]
+ [global::System.ComponentModel.DataObjectAttribute(true)]
+ [global::System.ComponentModel.DesignerAttribute("Microsoft.VSDesigner.DataSource.Design.TableAdapterDesigner, Microsoft.VSDesigner" +
+ ", Version=10.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public partial class VisBioMecAntTableAdapter : global::System.ComponentModel.Component {
+
+ private global::System.Data.SqlClient.SqlDataAdapter _adapter;
+
+ private global::System.Data.SqlClient.SqlConnection _connection;
+
+ private global::System.Data.SqlClient.SqlTransaction _transaction;
+
+ private global::System.Data.SqlClient.SqlCommand[] _commandCollection;
+
+ private bool _clearBeforeFill;
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public VisBioMecAntTableAdapter() {
+ this.ClearBeforeFill = true;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected internal global::System.Data.SqlClient.SqlDataAdapter Adapter {
+ get {
+ if ((this._adapter == null)) {
+ this.InitAdapter();
+ }
+ return this._adapter;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlConnection Connection {
+ get {
+ if ((this._connection == null)) {
+ this.InitConnection();
+ }
+ return this._connection;
+ }
+ set {
+ this._connection = value;
+ if ((this.Adapter.InsertCommand != null)) {
+ this.Adapter.InsertCommand.Connection = value;
+ }
+ if ((this.Adapter.DeleteCommand != null)) {
+ this.Adapter.DeleteCommand.Connection = value;
+ }
+ if ((this.Adapter.UpdateCommand != null)) {
+ this.Adapter.UpdateCommand.Connection = value;
+ }
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ if ((this.CommandCollection[i] != null)) {
+ ((global::System.Data.SqlClient.SqlCommand)(this.CommandCollection[i])).Connection = value;
+ }
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ internal global::System.Data.SqlClient.SqlTransaction Transaction {
+ get {
+ return this._transaction;
+ }
+ set {
+ this._transaction = value;
+ for (int i = 0; (i < this.CommandCollection.Length); i = (i + 1)) {
+ this.CommandCollection[i].Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.DeleteCommand != null))) {
+ this.Adapter.DeleteCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.InsertCommand != null))) {
+ this.Adapter.InsertCommand.Transaction = this._transaction;
+ }
+ if (((this.Adapter != null)
+ && (this.Adapter.UpdateCommand != null))) {
+ this.Adapter.UpdateCommand.Transaction = this._transaction;
+ }
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ protected global::System.Data.SqlClient.SqlCommand[] CommandCollection {
+ get {
+ if ((this._commandCollection == null)) {
+ this.InitCommandCollection();
+ }
+ return this._commandCollection;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ public bool ClearBeforeFill {
+ get {
+ return this._clearBeforeFill;
+ }
+ set {
+ this._clearBeforeFill = value;
+ }
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitAdapter() {
+ this._adapter = new global::System.Data.SqlClient.SqlDataAdapter();
+ global::System.Data.Common.DataTableMapping tableMapping = new global::System.Data.Common.DataTableMapping();
+ tableMapping.SourceTable = "Table";
+ tableMapping.DataSetTable = "VisBioMecAnt";
+ tableMapping.ColumnMappings.Add("IdxPaziente", "IdxPaziente");
+ tableMapping.ColumnMappings.Add("DataVisita", "DataVisita");
+ tableMapping.ColumnMappings.Add("Eta", "Eta");
+ tableMapping.ColumnMappings.Add("Sesso", "Sesso");
+ tableMapping.ColumnMappings.Add("Altezza", "Altezza");
+ tableMapping.ColumnMappings.Add("Peso", "Peso");
+ tableMapping.ColumnMappings.Add("PlicaBicipite", "PlicaBicipite");
+ tableMapping.ColumnMappings.Add("PlicaTricipite", "PlicaTricipite");
+ tableMapping.ColumnMappings.Add("PlicaSottoscapola", "PlicaSottoscapola");
+ tableMapping.ColumnMappings.Add("PlicaPettorale", "PlicaPettorale");
+ tableMapping.ColumnMappings.Add("PlicaAddominale", "PlicaAddominale");
+ tableMapping.ColumnMappings.Add("PlicaSoprailiaca", "PlicaSoprailiaca");
+ tableMapping.ColumnMappings.Add("PlicaCoscia", "PlicaCoscia");
+ tableMapping.ColumnMappings.Add("CirconfAvamb", "CirconfAvamb");
+ tableMapping.ColumnMappings.Add("CirconfVita", "CirconfVita");
+ tableMapping.ColumnMappings.Add("CirconfGlutei", "CirconfGlutei");
+ tableMapping.ColumnMappings.Add("CirconfQuadricipite", "CirconfQuadricipite");
+ tableMapping.ColumnMappings.Add("DensCorp", "DensCorp");
+ tableMapping.ColumnMappings.Add("GrassoTroncoPerc", "GrassoTroncoPerc");
+ tableMapping.ColumnMappings.Add("GrassoViscInd", "GrassoViscInd");
+ tableMapping.ColumnMappings.Add("TRomberg", "TRomberg");
+ tableMapping.ColumnMappings.Add("TFukuda", "TFukuda");
+ tableMapping.ColumnMappings.Add("TFukudaIpot", "TFukudaIpot");
+ tableMapping.ColumnMappings.Add("TGUG", "TGUG");
+ tableMapping.ColumnMappings.Add("TGUG1", "TGUG1");
+ tableMapping.ColumnMappings.Add("FPrensile", "FPrensile");
+ tableMapping.ColumnMappings.Add("GrassoTotPerc", "GrassoTotPerc");
+ tableMapping.ColumnMappings.Add("GrassoTot", "GrassoTot");
+ tableMapping.ColumnMappings.Add("MassaMagraPerc", "MassaMagraPerc");
+ tableMapping.ColumnMappings.Add("MassaMagraKgCm", "MassaMagraKgCm");
+ tableMapping.ColumnMappings.Add("BMI", "BMI");
+ tableMapping.ColumnMappings.Add("MetBasaleDie", "MetBasaleDie");
+ tableMapping.ColumnMappings.Add("MetBasaleH", "MetBasaleH");
+ tableMapping.ColumnMappings.Add("ScoreFPrensile", "ScoreFPrensile");
+ this._adapter.TableMappings.Add(tableMapping);
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitConnection() {
+ this._connection = new global::System.Data.SqlClient.SqlConnection();
+ this._connection.ConnectionString = global::MedPred_Data.Properties.Settings.Default.MedPredConnectionString;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ private void InitCommandCollection() {
+ this._commandCollection = new global::System.Data.SqlClient.SqlCommand[5];
+ this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[0].Connection = this.Connection;
+ this._commandCollection[0].CommandText = "SELECT * FROM dbo.v_VisBioMecAnt";
+ this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
+ this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[1].Connection = this.Connection;
+ this._commandCollection[1].CommandText = "dbo.stp_VBMA_DeleteQuery";
+ this._commandCollection[1].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[1].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[2].Connection = this.Connection;
+ this._commandCollection[2].CommandText = "dbo.stp_VBMA_getByPaziente";
+ this._commandCollection[2].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[2].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[3].Connection = this.Connection;
+ this._commandCollection[3].CommandText = "dbo.stp_VBMA_InsertQuery";
+ this._commandCollection[3].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Altezza", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Peso", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlicaBicipite", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlicaTricipite", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlicaSottoscapola", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlicaPettorale", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlicaAddominale", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlicaSoprailiaca", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlicaCoscia", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CirconfAvamb", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CirconfVita", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CirconfGlutei", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CirconfQuadricipite", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@GrassoTroncoPerc", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@GrassoViscInd", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TRomberg", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TFukuda", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TFukudaIpot", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TGUG", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TGUG1", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[3].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FPrensile", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4] = new global::System.Data.SqlClient.SqlCommand();
+ this._commandCollection[4].Connection = this.Connection;
+ this._commandCollection[4].CommandText = "dbo.stp_VBMA_UpdateQuery";
+ this._commandCollection[4].CommandType = global::System.Data.CommandType.StoredProcedure;
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@RETURN_VALUE", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.ReturnValue, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Altezza", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Peso", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlicaBicipite", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlicaTricipite", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlicaSottoscapola", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlicaPettorale", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlicaAddominale", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlicaSoprailiaca", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@PlicaCoscia", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CirconfAvamb", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CirconfVita", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CirconfGlutei", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@CirconfQuadricipite", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@GrassoTroncoPerc", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@GrassoViscInd", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TRomberg", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TFukuda", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TFukudaIpot", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TGUG", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TGUG1", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@FPrensile", global::System.Data.SqlDbType.Float, 8, global::System.Data.ParameterDirection.Input, 53, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_DataVisita", global::System.Data.SqlDbType.DateTime, 8, global::System.Data.ParameterDirection.Input, 23, 3, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Fill, true)]
+ public virtual int Fill(DS_Applicazione.VisBioMecAntDataTable dataTable) {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ if ((this.ClearBeforeFill == true)) {
+ dataTable.Clear();
+ }
+ int returnValue = this.Adapter.Fill(dataTable);
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, true)]
+ public virtual DS_Applicazione.VisBioMecAntDataTable GetData() {
+ this.Adapter.SelectCommand = this.CommandCollection[0];
+ DS_Applicazione.VisBioMecAntDataTable dataTable = new DS_Applicazione.VisBioMecAntDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ [global::System.ComponentModel.DataObjectMethodAttribute(global::System.ComponentModel.DataObjectMethodType.Select, false)]
+ public virtual DS_Applicazione.VisBioMecAntDataTable getByPaziente(global::System.Nullable IdxPaziente, global::System.Nullable DataVisita) {
+ this.Adapter.SelectCommand = this.CommandCollection[2];
+ if ((IdxPaziente.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ this.Adapter.SelectCommand.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ this.Adapter.SelectCommand.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ DS_Applicazione.VisBioMecAntDataTable dataTable = new DS_Applicazione.VisBioMecAntDataTable();
+ this.Adapter.Fill(dataTable);
+ return dataTable;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int DeleteQuery(global::System.Nullable Original_IdxPaziente, global::System.Nullable Original_DataVisita) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[1];
+ if ((Original_IdxPaziente.HasValue == true)) {
+ command.Parameters[1].Value = ((int)(Original_IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((Original_DataVisita.HasValue == true)) {
+ command.Parameters[2].Value = ((System.DateTime)(Original_DataVisita.Value));
+ }
+ else {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int InsertQuery(
+ global::System.Nullable IdxPaziente,
+ global::System.Nullable DataVisita,
+ global::System.Nullable Altezza,
+ global::System.Nullable Peso,
+ global::System.Nullable PlicaBicipite,
+ global::System.Nullable PlicaTricipite,
+ global::System.Nullable PlicaSottoscapola,
+ global::System.Nullable PlicaPettorale,
+ global::System.Nullable PlicaAddominale,
+ global::System.Nullable PlicaSoprailiaca,
+ global::System.Nullable PlicaCoscia,
+ global::System.Nullable CirconfAvamb,
+ global::System.Nullable CirconfVita,
+ global::System.Nullable CirconfGlutei,
+ global::System.Nullable CirconfQuadricipite,
+ global::System.Nullable GrassoTroncoPerc,
+ global::System.Nullable GrassoViscInd,
+ global::System.Nullable TRomberg,
+ global::System.Nullable TFukuda,
+ global::System.Nullable TFukudaIpot,
+ global::System.Nullable TGUG,
+ global::System.Nullable TGUG1,
+ global::System.Nullable FPrensile) {
+ global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[3];
+ if ((IdxPaziente.HasValue == true)) {
+ command.Parameters[1].Value = ((int)(IdxPaziente.Value));
+ }
+ else {
+ command.Parameters[1].Value = global::System.DBNull.Value;
+ }
+ if ((DataVisita.HasValue == true)) {
+ command.Parameters[2].Value = ((System.DateTime)(DataVisita.Value));
+ }
+ else {
+ command.Parameters[2].Value = global::System.DBNull.Value;
+ }
+ if ((Altezza.HasValue == true)) {
+ command.Parameters[3].Value = ((double)(Altezza.Value));
+ }
+ else {
+ command.Parameters[3].Value = global::System.DBNull.Value;
+ }
+ if ((Peso.HasValue == true)) {
+ command.Parameters[4].Value = ((double)(Peso.Value));
+ }
+ else {
+ command.Parameters[4].Value = global::System.DBNull.Value;
+ }
+ if ((PlicaBicipite.HasValue == true)) {
+ command.Parameters[5].Value = ((double)(PlicaBicipite.Value));
+ }
+ else {
+ command.Parameters[5].Value = global::System.DBNull.Value;
+ }
+ if ((PlicaTricipite.HasValue == true)) {
+ command.Parameters[6].Value = ((double)(PlicaTricipite.Value));
+ }
+ else {
+ command.Parameters[6].Value = global::System.DBNull.Value;
+ }
+ if ((PlicaSottoscapola.HasValue == true)) {
+ command.Parameters[7].Value = ((double)(PlicaSottoscapola.Value));
+ }
+ else {
+ command.Parameters[7].Value = global::System.DBNull.Value;
+ }
+ if ((PlicaPettorale.HasValue == true)) {
+ command.Parameters[8].Value = ((double)(PlicaPettorale.Value));
+ }
+ else {
+ command.Parameters[8].Value = global::System.DBNull.Value;
+ }
+ if ((PlicaAddominale.HasValue == true)) {
+ command.Parameters[9].Value = ((double)(PlicaAddominale.Value));
+ }
+ else {
+ command.Parameters[9].Value = global::System.DBNull.Value;
+ }
+ if ((PlicaSoprailiaca.HasValue == true)) {
+ command.Parameters[10].Value = ((double)(PlicaSoprailiaca.Value));
+ }
+ else {
+ command.Parameters[10].Value = global::System.DBNull.Value;
+ }
+ if ((PlicaCoscia.HasValue == true)) {
+ command.Parameters[11].Value = ((double)(PlicaCoscia.Value));
+ }
+ else {
+ command.Parameters[11].Value = global::System.DBNull.Value;
+ }
+ if ((CirconfAvamb.HasValue == true)) {
+ command.Parameters[12].Value = ((double)(CirconfAvamb.Value));
+ }
+ else {
+ command.Parameters[12].Value = global::System.DBNull.Value;
+ }
+ if ((CirconfVita.HasValue == true)) {
+ command.Parameters[13].Value = ((double)(CirconfVita.Value));
+ }
+ else {
+ command.Parameters[13].Value = global::System.DBNull.Value;
+ }
+ if ((CirconfGlutei.HasValue == true)) {
+ command.Parameters[14].Value = ((double)(CirconfGlutei.Value));
+ }
+ else {
+ command.Parameters[14].Value = global::System.DBNull.Value;
+ }
+ if ((CirconfQuadricipite.HasValue == true)) {
+ command.Parameters[15].Value = ((double)(CirconfQuadricipite.Value));
+ }
+ else {
+ command.Parameters[15].Value = global::System.DBNull.Value;
+ }
+ if ((GrassoTroncoPerc.HasValue == true)) {
+ command.Parameters[16].Value = ((double)(GrassoTroncoPerc.Value));
+ }
+ else {
+ command.Parameters[16].Value = global::System.DBNull.Value;
+ }
+ if ((GrassoViscInd.HasValue == true)) {
+ command.Parameters[17].Value = ((double)(GrassoViscInd.Value));
+ }
+ else {
+ command.Parameters[17].Value = global::System.DBNull.Value;
+ }
+ if ((TRomberg.HasValue == true)) {
+ command.Parameters[18].Value = ((double)(TRomberg.Value));
+ }
+ else {
+ command.Parameters[18].Value = global::System.DBNull.Value;
+ }
+ if ((TFukuda.HasValue == true)) {
+ command.Parameters[19].Value = ((double)(TFukuda.Value));
+ }
+ else {
+ command.Parameters[19].Value = global::System.DBNull.Value;
+ }
+ if ((TFukudaIpot.HasValue == true)) {
+ command.Parameters[20].Value = ((int)(TFukudaIpot.Value));
+ }
+ else {
+ command.Parameters[20].Value = global::System.DBNull.Value;
+ }
+ if ((TGUG.HasValue == true)) {
+ command.Parameters[21].Value = ((double)(TGUG.Value));
+ }
+ else {
+ command.Parameters[21].Value = global::System.DBNull.Value;
+ }
+ if ((TGUG1.HasValue == true)) {
+ command.Parameters[22].Value = ((double)(TGUG1.Value));
+ }
+ else {
+ command.Parameters[22].Value = global::System.DBNull.Value;
+ }
+ if ((FPrensile.HasValue == true)) {
+ command.Parameters[23].Value = ((double)(FPrensile.Value));
+ }
+ else {
+ command.Parameters[23].Value = global::System.DBNull.Value;
+ }
+ global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
+ if (((command.Connection.State & global::System.Data.ConnectionState.Open)
+ != global::System.Data.ConnectionState.Open)) {
+ command.Connection.Open();
+ }
+ int returnValue;
+ try {
+ returnValue = command.ExecuteNonQuery();
+ }
+ finally {
+ if ((previousConnectionState == global::System.Data.ConnectionState.Closed)) {
+ command.Connection.Close();
+ }
+ }
+ return returnValue;
+ }
+
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
+ [global::System.ComponentModel.Design.HelpKeywordAttribute("vs.data.TableAdapter")]
+ public virtual int UpdateQuery(
+ global::System.Nullable Altezza,
+ global::System.Nullable Peso,
+ global::System.Nullable PlicaBicipite,
+ global::System.Nullable PlicaTricipite,
+ global::System.Nullable