fix gestione peso/altezza con override (salva su VBMA e anagrafica)
This commit is contained in:
+37
-48
@@ -13,9 +13,18 @@
|
||||
<div class="ui-grid-c">
|
||||
<div class="ui-block-a" style="padding: 4px;">
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li data-role="list-divider">Data</li>
|
||||
<li data-role="list-divider">Visita - Antropometria</li>
|
||||
<li class="ui-field-contain">
|
||||
<asp:Label runat="server" ID="lblDataVisita"><%: Request.QueryString["DataVisita"] %></asp:Label>
|
||||
<label style="font-size: 0.9em;">Data</label>
|
||||
<asp:Label CssClass="tStrong flRight" runat="server" ID="lblDataVisita"><%: Request.QueryString["DataVisita"] %></asp:Label>
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label style="font-size: 0.9em;">Altezza cm</label>
|
||||
<asp:Label CssClass="tStrong flRight" runat="server" ID="txtAltezza" Text='<%# Eval("Altezza","{0}") %>' />
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label style="font-size: 0.9em;">Peso kg</label>
|
||||
<asp:Label CssClass="tStrong flRight" runat="server" ID="txtPeso" Text='<%# Eval("Peso","{0:N2}") %>' />
|
||||
</li>
|
||||
</ul>
|
||||
<ul data-role="listview" data-inset="true">
|
||||
@@ -134,9 +143,18 @@
|
||||
<div class="ui-grid-c">
|
||||
<div class="ui-block-a" style="padding: 4px;">
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li data-role="list-divider">Data</li>
|
||||
<li data-role="list-divider">Visita - Antropometria</li>
|
||||
<li class="ui-field-contain">
|
||||
<asp:Label runat="server" ID="lblDataVisita"><%: Request.QueryString["DataVisita"] %></asp:Label>
|
||||
<label style="font-size: 0.9em;">Data</label>
|
||||
<asp:Label CssClass="tStrong flRight" runat="server" ID="lblDataVisita"><%: Request.QueryString["DataVisita"] %></asp:Label>
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label style="font-size: 0.9em;">Altezza cm</label>
|
||||
<asp:TextBox CssClass="tStrong flRight" runat="server" ID="txtAltezza" Text='<%# Bind("Altezza","{0}") %>' />
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label style="font-size: 0.9em;">Peso kg</label>
|
||||
<asp:TextBox CssClass="tStrong flRight" runat="server" ID="txtPeso" Text='<%# Bind("Peso","{0}") %>' />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@@ -212,9 +230,18 @@
|
||||
<div class="ui-grid-c">
|
||||
<div class="ui-block-a" style="padding: 4px;">
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li data-role="list-divider">Data</li>
|
||||
<li data-role="list-divider">Visita - Antropometria</li>
|
||||
<li class="ui-field-contain">
|
||||
<asp:Label runat="server" ID="lblDataVisita"><%: Request.QueryString["DataVisita"] %></asp:Label>
|
||||
<label style="font-size: 0.9em;">Data</label>
|
||||
<asp:Label CssClass="tStrong flRight" runat="server" ID="lblDataVisita"><%: Request.QueryString["DataVisita"] %></asp:Label>
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label style="font-size: 0.9em;">Altezza cm</label>
|
||||
<asp:TextBox CssClass="tStrong flRight" runat="server" ID="txtAltezza" Text='<%# Bind("Altezza","{0}") %>' />
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label style="font-size: 0.9em;">Peso kg</label>
|
||||
<asp:TextBox CssClass="tStrong flRight" runat="server" ID="txtPeso" Text='<%# Bind("Peso","{0}") %>' />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@@ -301,6 +328,8 @@
|
||||
<asp:Parameter Name="FS" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="E" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="GA" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="Altezza" Type="Double" />
|
||||
<asp:Parameter Name="Peso" Type="Double" />
|
||||
</InsertParameters>
|
||||
<SelectParameters>
|
||||
<asp:SessionParameter Name="IdxPaziente" SessionField="IdxPaziente" Type="Int32" DefaultValue="0" />
|
||||
@@ -313,51 +342,11 @@
|
||||
<asp:Parameter Name="FS" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="E" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="GA" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="Altezza" Type="Double" />
|
||||
<asp:Parameter Name="Peso" Type="Double" />
|
||||
<asp:SessionParameter Name="Original_IdxPaziente" SessionField="IdxPaziente" Type="Int32" DefaultValue="0" />
|
||||
<asp:QueryStringParameter DefaultValue="0" Name="Original_DataVisita" QueryStringField="DataVisita" Type="DateTime" />
|
||||
</UpdateParameters>
|
||||
</asp:ObjectDataSource>
|
||||
<%--<asp:ObjectDataSource ID="odsFAI" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByTableField" TypeName="ScheMe_Data.DS_UtilityTableAdapters.v_selListValTableAdapter">
|
||||
<SelectParameters>
|
||||
<asp:Parameter DefaultValue="VisValFunz" Name="TableName" Type="string" />
|
||||
<asp:Parameter DefaultValue="FAI" Name="FieldName" Type="string" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
<asp:ObjectDataSource ID="odsFP" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByTableField" TypeName="ScheMe_Data.DS_UtilityTableAdapters.v_selListValTableAdapter">
|
||||
<SelectParameters>
|
||||
<asp:Parameter DefaultValue="VisValFunz" Name="TableName" Type="string" />
|
||||
<asp:Parameter DefaultValue="FP" Name="FieldName" Type="string" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
<asp:ObjectDataSource ID="odsGA" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByTableField" TypeName="ScheMe_Data.DS_UtilityTableAdapters.v_selListValTableAdapter">
|
||||
<SelectParameters>
|
||||
<asp:Parameter DefaultValue="VisValFunz" Name="TableName" Type="string" />
|
||||
<asp:Parameter DefaultValue="GA" Name="FieldName" Type="string" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
<asp:ObjectDataSource ID="odsE" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByTableField" TypeName="ScheMe_Data.DS_UtilityTableAdapters.v_selListValTableAdapter">
|
||||
<SelectParameters>
|
||||
<asp:Parameter DefaultValue="VisValFunz" Name="TableName" Type="string" />
|
||||
<asp:Parameter DefaultValue="E" Name="FieldName" Type="string" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
<asp:ObjectDataSource ID="odsFT" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByTableField" TypeName="ScheMe_Data.DS_UtilityTableAdapters.v_selListValTableAdapter">
|
||||
<SelectParameters>
|
||||
<asp:Parameter DefaultValue="VisValFunz" Name="TableName" Type="string" />
|
||||
<asp:Parameter DefaultValue="FT" Name="FieldName" Type="string" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
<asp:ObjectDataSource ID="odsFS" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByTableField" TypeName="ScheMe_Data.DS_UtilityTableAdapters.v_selListValTableAdapter">
|
||||
<SelectParameters>
|
||||
<asp:Parameter DefaultValue="VisValFunz" Name="TableName" Type="string" />
|
||||
<asp:Parameter DefaultValue="FS" Name="FieldName" Type="string" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>
|
||||
<asp:ObjectDataSource ID="odsRischio" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByTableField" TypeName="ScheMe_Data.DS_UtilityTableAdapters.v_selListValTableAdapter">
|
||||
<SelectParameters>
|
||||
<asp:Parameter DefaultValue="VisValFunz" Name="TableName" Type="string" />
|
||||
<asp:Parameter DefaultValue="Classe" Name="FieldName" Type="string" />
|
||||
</SelectParameters>
|
||||
</asp:ObjectDataSource>--%>
|
||||
</div>
|
||||
</asp:Content>
|
||||
|
||||
+41
-10
@@ -13,9 +13,18 @@
|
||||
<div class="ui-grid-c">
|
||||
<div class="ui-block-a" style="padding: 4px;">
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li data-role="list-divider">Data</li>
|
||||
<li data-role="list-divider">Visita - Antropometria</li>
|
||||
<li class="ui-field-contain">
|
||||
<asp:Label runat="server" ID="lblDataVisita"><%: Request.QueryString["DataVisita"] %></asp:Label>
|
||||
<label style="font-size: 0.9em;">Data</label>
|
||||
<asp:Label CssClass="tStrong flRight" runat="server" ID="lblDataVisita"><%: Request.QueryString["DataVisita"] %></asp:Label>
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label style="font-size: 0.9em;">Altezza cm</label>
|
||||
<asp:Label CssClass="tStrong flRight" runat="server" ID="txtAltezza" Text='<%# Eval("Altezza","{0}") %>' />
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label style="font-size: 0.9em;">Peso kg</label>
|
||||
<asp:Label CssClass="tStrong flRight" runat="server" ID="txtPeso" Text='<%# Eval("Peso","{0:N2}") %>' />
|
||||
</li>
|
||||
</ul>
|
||||
<ul data-role="listview" data-inset="true">
|
||||
@@ -140,9 +149,18 @@
|
||||
<div class="ui-grid-c">
|
||||
<div class="ui-block-a" style="padding: 4px;">
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li data-role="list-divider">Data</li>
|
||||
<li data-role="list-divider">Visita - Antropometria</li>
|
||||
<li class="ui-field-contain">
|
||||
<asp:Label runat="server" ID="lblDataVisita"><%: Request.QueryString["DataVisita"] %></asp:Label>
|
||||
<label style="font-size: 0.9em;">Data</label>
|
||||
<asp:Label CssClass="tStrong flRight" runat="server" ID="lblDataVisita"><%: Request.QueryString["DataVisita"] %></asp:Label>
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label style="font-size: 0.9em;">Altezza cm</label>
|
||||
<asp:TextBox CssClass="tStrong flRight" runat="server" ID="txtAltezza" Text='<%# Bind("Altezza","{0}") %>' />
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label style="font-size: 0.9em;">Peso kg</label>
|
||||
<asp:TextBox CssClass="tStrong flRight" runat="server" ID="txtPeso" Text='<%# Bind("Peso","{0}") %>' />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@@ -224,9 +242,18 @@
|
||||
<div class="ui-grid-c">
|
||||
<div class="ui-block-a" style="padding: 4px;">
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li data-role="list-divider">Data</li>
|
||||
<li data-role="list-divider">Visita - Antropometria</li>
|
||||
<li class="ui-field-contain">
|
||||
<asp:Label runat="server" ID="lblDataVisita"><%: Request.QueryString["DataVisita"] %></asp:Label>
|
||||
<label style="font-size: 0.9em;">Data</label>
|
||||
<asp:Label CssClass="tStrong flRight" runat="server" ID="lblDataVisita"><%: Request.QueryString["DataVisita"] %></asp:Label>
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label style="font-size: 0.9em;">Altezza cm</label>
|
||||
<asp:TextBox CssClass="tStrong flRight" runat="server" ID="txtAltezza" Text='<%# Bind("Altezza","{0}") %>' />
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label style="font-size: 0.9em;">Peso kg</label>
|
||||
<asp:TextBox CssClass="tStrong flRight" runat="server" ID="txtPeso" Text='<%# Bind("Peso","{0}") %>' />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
@@ -305,14 +332,14 @@
|
||||
</div>
|
||||
</EditItemTemplate>
|
||||
</asp:FormView>
|
||||
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="Original_{0}" SelectMethod="getByPaziente" TypeName="ScheMe_Data.DS_ApplicazioneTableAdapters.VisValFunzGTTableAdapter" DeleteMethod="DeleteQuery" InsertMethod="InsertQuery" UpdateMethod="UpdateQuery" OnDeleted="ods_Deleted">
|
||||
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByPaziente" TypeName="ScheMe_Data.DS_ApplicazioneTableAdapters.VisValFunzGTTableAdapter" DeleteMethod="DeleteQuery" InsertMethod="InsertQuery" UpdateMethod="UpdateQuery" OnDeleted="ods_Deleted">
|
||||
<DeleteParameters>
|
||||
<asp:SessionParameter Name="Original_IdxPaziente" SessionField="IdxPaziente" Type="Int32" DefaultValue="0" />
|
||||
<asp:QueryStringParameter DefaultValue="0" Name="Original_DataVisita" QueryStringField="DataVisita" Type="DateTime" />
|
||||
</DeleteParameters>
|
||||
<InsertParameters>
|
||||
<asp:SessionParameter Name="IdxPaziente" SessionField="IdxPaziente" Type="Int32" DefaultValue="0" />
|
||||
<asp:QueryStringParameter DefaultValue="0" Name="DataVisita" QueryStringField="DataVisita" Type="DateTime" />
|
||||
<asp:QueryStringParameter DefaultValue="" Name="DataVisita" QueryStringField="DataVisita" Type="DateTime" />
|
||||
<asp:Parameter Name="SJ" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="FT" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="PU" Type="Int32" DefaultValue="0" />
|
||||
@@ -321,6 +348,8 @@
|
||||
<asp:Parameter Name="TR2" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="SU" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="GA" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="Altezza" Type="Int32" />
|
||||
<asp:Parameter Name="Peso" Type="Int32" />
|
||||
</InsertParameters>
|
||||
<SelectParameters>
|
||||
<asp:SessionParameter Name="IdxPaziente" SessionField="IdxPaziente" Type="Int32" DefaultValue="0" />
|
||||
@@ -328,15 +357,17 @@
|
||||
</SelectParameters>
|
||||
<UpdateParameters>
|
||||
<asp:Parameter Name="SJ" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="PU" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="FT" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="PU" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="TR0" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="TR1" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="TR2" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="SU" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="GA" Type="Int32" DefaultValue="0" />
|
||||
<asp:SessionParameter Name="Original_IdxPaziente" SessionField="IdxPaziente" Type="Int32" DefaultValue="0" />
|
||||
<asp:Parameter Name="Altezza" Type="Double" />
|
||||
<asp:Parameter Name="Peso" Type="Double" />
|
||||
<asp:QueryStringParameter DefaultValue="0" Name="Original_DataVisita" QueryStringField="DataVisita" Type="DateTime" />
|
||||
<asp:SessionParameter Name="Original_IdxPaziente" SessionField="IdxPaziente" Type="Int32" DefaultValue="0" />
|
||||
</UpdateParameters>
|
||||
</asp:ObjectDataSource>
|
||||
</div>
|
||||
|
||||
Generated
+61
-61
@@ -741,6 +741,10 @@ namespace ScheMe_Data {
|
||||
|
||||
private global::System.Data.DataColumn columnSesso;
|
||||
|
||||
private global::System.Data.DataColumn columnAltezza;
|
||||
|
||||
private global::System.Data.DataColumn columnPeso;
|
||||
|
||||
private global::System.Data.DataColumn columnCodF;
|
||||
|
||||
private global::System.Data.DataColumn columnIndirizzo;
|
||||
@@ -753,10 +757,6 @@ namespace ScheMe_Data {
|
||||
|
||||
private global::System.Data.DataColumn columnNote;
|
||||
|
||||
private global::System.Data.DataColumn columnAltezza;
|
||||
|
||||
private global::System.Data.DataColumn columnPeso;
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public AnagPazientiDataTable() {
|
||||
@@ -846,6 +846,22 @@ namespace ScheMe_Data {
|
||||
}
|
||||
}
|
||||
|
||||
[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 CodFColumn {
|
||||
@@ -894,22 +910,6 @@ namespace ScheMe_Data {
|
||||
}
|
||||
}
|
||||
|
||||
[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")]
|
||||
[global::System.ComponentModel.Browsable(false)]
|
||||
@@ -947,7 +947,7 @@ namespace ScheMe_Data {
|
||||
|
||||
[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, double Altezza, double Peso) {
|
||||
public AnagPazientiRow AddAnagPazientiRow(string Gruppo, string Cognome, string Nome, System.DateTime DataNasc, string LuogoNascita, string Sesso, double Altezza, double Peso, string CodF, string Indirizzo, double Eta, string RecTel, string Medico, string Note) {
|
||||
AnagPazientiRow rowAnagPazientiRow = ((AnagPazientiRow)(this.NewRow()));
|
||||
object[] columnValuesArray = new object[] {
|
||||
null,
|
||||
@@ -957,14 +957,14 @@ namespace ScheMe_Data {
|
||||
DataNasc,
|
||||
LuogoNascita,
|
||||
Sesso,
|
||||
Altezza,
|
||||
Peso,
|
||||
CodF,
|
||||
Indirizzo,
|
||||
Eta,
|
||||
RecTel,
|
||||
Medico,
|
||||
Note,
|
||||
Altezza,
|
||||
Peso};
|
||||
Note};
|
||||
rowAnagPazientiRow.ItemArray = columnValuesArray;
|
||||
this.Rows.Add(rowAnagPazientiRow);
|
||||
return rowAnagPazientiRow;
|
||||
@@ -1001,14 +1001,14 @@ namespace ScheMe_Data {
|
||||
this.columnDataNasc = base.Columns["DataNasc"];
|
||||
this.columnLuogoNascita = base.Columns["LuogoNascita"];
|
||||
this.columnSesso = base.Columns["Sesso"];
|
||||
this.columnAltezza = base.Columns["Altezza"];
|
||||
this.columnPeso = base.Columns["Peso"];
|
||||
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"];
|
||||
this.columnAltezza = base.Columns["Altezza"];
|
||||
this.columnPeso = base.Columns["Peso"];
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -1028,6 +1028,10 @@ namespace ScheMe_Data {
|
||||
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.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.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);
|
||||
@@ -1040,10 +1044,6 @@ namespace ScheMe_Data {
|
||||
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.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.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
|
||||
this.columnIdxPaziente}, true));
|
||||
this.columnIdxPaziente.AutoIncrement = true;
|
||||
@@ -1063,6 +1063,8 @@ namespace ScheMe_Data {
|
||||
this.columnLuogoNascita.MaxLength = 50;
|
||||
this.columnSesso.AllowDBNull = false;
|
||||
this.columnSesso.MaxLength = 1;
|
||||
this.columnAltezza.AllowDBNull = false;
|
||||
this.columnPeso.AllowDBNull = false;
|
||||
this.columnCodF.AllowDBNull = false;
|
||||
this.columnCodF.MaxLength = 20;
|
||||
this.columnIndirizzo.AllowDBNull = false;
|
||||
@@ -1074,8 +1076,6 @@ namespace ScheMe_Data {
|
||||
this.columnMedico.MaxLength = 50;
|
||||
this.columnNote.AllowDBNull = false;
|
||||
this.columnNote.MaxLength = 500;
|
||||
this.columnAltezza.AllowDBNull = false;
|
||||
this.columnPeso.AllowDBNull = false;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -9477,6 +9477,28 @@ namespace ScheMe_Data {
|
||||
}
|
||||
}
|
||||
|
||||
[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.tableAnagPazienti.AltezzaColumn]));
|
||||
}
|
||||
set {
|
||||
this[this.tableAnagPazienti.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.tableAnagPazienti.PesoColumn]));
|
||||
}
|
||||
set {
|
||||
this[this.tableAnagPazienti.PesoColumn] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public string CodF {
|
||||
@@ -9548,28 +9570,6 @@ namespace ScheMe_Data {
|
||||
}
|
||||
}
|
||||
|
||||
[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.tableAnagPazienti.AltezzaColumn]));
|
||||
}
|
||||
set {
|
||||
this[this.tableAnagPazienti.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.tableAnagPazienti.PesoColumn]));
|
||||
}
|
||||
set {
|
||||
this[this.tableAnagPazienti.PesoColumn] = value;
|
||||
}
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public bool IsEtaNull() {
|
||||
@@ -17991,14 +17991,14 @@ namespace ScheMe_Data.DS_ApplicazioneTableAdapters {
|
||||
tableMapping.ColumnMappings.Add("DataNasc", "DataNasc");
|
||||
tableMapping.ColumnMappings.Add("LuogoNascita", "LuogoNascita");
|
||||
tableMapping.ColumnMappings.Add("Sesso", "Sesso");
|
||||
tableMapping.ColumnMappings.Add("Altezza", "Altezza");
|
||||
tableMapping.ColumnMappings.Add("Peso", "Peso");
|
||||
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");
|
||||
tableMapping.ColumnMappings.Add("Altezza", "Altezza");
|
||||
tableMapping.ColumnMappings.Add("Peso", "Peso");
|
||||
this._adapter.TableMappings.Add(tableMapping);
|
||||
this._adapter.DeleteCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._adapter.DeleteCommand.Connection = this.Connection;
|
||||
@@ -25352,8 +25352,8 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
this._commandCollection[4].Parameters.Add(new global::System.Data.SqlClient.SqlParameter("@TR2", 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("@SU", 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("@GA", 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("@Altezza", 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("@Peso", 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("@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("@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, "", "", ""));
|
||||
}
|
||||
@@ -25536,7 +25536,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
[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<int> SJ, global::System.Nullable<int> FT, global::System.Nullable<int> PU, global::System.Nullable<int> TR0, global::System.Nullable<int> TR1, global::System.Nullable<int> TR2, global::System.Nullable<int> SU, global::System.Nullable<int> GA, global::System.Nullable<int> Altezza, global::System.Nullable<int> Peso, global::System.Nullable<global::System.DateTime> Original_DataVisita, global::System.Nullable<int> Original_IdxPaziente) {
|
||||
public virtual int UpdateQuery(global::System.Nullable<int> SJ, global::System.Nullable<int> FT, global::System.Nullable<int> PU, global::System.Nullable<int> TR0, global::System.Nullable<int> TR1, global::System.Nullable<int> TR2, global::System.Nullable<int> SU, global::System.Nullable<int> GA, global::System.Nullable<double> Altezza, global::System.Nullable<double> Peso, global::System.Nullable<global::System.DateTime> Original_DataVisita, global::System.Nullable<int> Original_IdxPaziente) {
|
||||
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[4];
|
||||
if ((SJ.HasValue == true)) {
|
||||
command.Parameters[1].Value = ((int)(SJ.Value));
|
||||
@@ -25587,13 +25587,13 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
command.Parameters[8].Value = global::System.DBNull.Value;
|
||||
}
|
||||
if ((Altezza.HasValue == true)) {
|
||||
command.Parameters[9].Value = ((int)(Altezza.Value));
|
||||
command.Parameters[9].Value = ((double)(Altezza.Value));
|
||||
}
|
||||
else {
|
||||
command.Parameters[9].Value = global::System.DBNull.Value;
|
||||
}
|
||||
if ((Peso.HasValue == true)) {
|
||||
command.Parameters[10].Value = ((int)(Peso.Value));
|
||||
command.Parameters[10].Value = ((double)(Peso.Value));
|
||||
}
|
||||
else {
|
||||
command.Parameters[10].Value = global::System.DBNull.Value;
|
||||
|
||||
@@ -108,14 +108,14 @@ SELECT IdxPaziente, Gruppo, Cognome, Nome, DataNasc, LuogoNascita, Sesso, Altezz
|
||||
<Mapping SourceColumn="DataNasc" DataSetColumn="DataNasc" />
|
||||
<Mapping SourceColumn="LuogoNascita" DataSetColumn="LuogoNascita" />
|
||||
<Mapping SourceColumn="Sesso" DataSetColumn="Sesso" />
|
||||
<Mapping SourceColumn="Altezza" DataSetColumn="Altezza" />
|
||||
<Mapping SourceColumn="Peso" DataSetColumn="Peso" />
|
||||
<Mapping SourceColumn="CodF" DataSetColumn="CodF" />
|
||||
<Mapping SourceColumn="Indirizzo" DataSetColumn="Indirizzo" />
|
||||
<Mapping SourceColumn="Eta" DataSetColumn="Eta" />
|
||||
<Mapping SourceColumn="RecTel" DataSetColumn="RecTel" />
|
||||
<Mapping SourceColumn="Medico" DataSetColumn="Medico" />
|
||||
<Mapping SourceColumn="Note" DataSetColumn="Note" />
|
||||
<Mapping SourceColumn="Altezza" DataSetColumn="Altezza" />
|
||||
<Mapping SourceColumn="Peso" DataSetColumn="Peso" />
|
||||
</Mappings>
|
||||
<Sources>
|
||||
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="" DbObjectType="Unknown" GenerateShortCommands="true" GeneratorSourceName="deleteQuery" Modifier="Public" Name="deleteQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="deleteQuery">
|
||||
@@ -1767,8 +1767,8 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@TR2" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@SU" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@GA" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@Altezza" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@Peso" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="float" DbType="Double" Direction="Input" ParameterName="@Altezza" Precision="53" ProviderType="Float" Scale="0" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="float" DbType="Double" Direction="Input" ParameterName="@Peso" Precision="53" ProviderType="Float" Scale="0" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@Original_DataVisita" Precision="23" ProviderType="DateTime" Scale="3" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@Original_IdxPaziente" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
@@ -1785,7 +1785,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
<xs:element name="DS_Applicazione" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="DS_Applicazione" msprop:Generator_UserDSName="DS_Applicazione">
|
||||
<xs:complexType>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element name="AnagPazienti" msprop:Generator_TableClassName="AnagPazientiDataTable" msprop:Generator_TableVarName="tableAnagPazienti" msprop:Generator_RowChangedName="AnagPazientiRowChanged" msprop:Generator_TablePropName="AnagPazienti" msprop:Generator_RowDeletingName="AnagPazientiRowDeleting" msprop:Generator_RowChangingName="AnagPazientiRowChanging" msprop:Generator_RowEvHandlerName="AnagPazientiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagPazientiRowDeleted" msprop:Generator_RowClassName="AnagPazientiRow" msprop:Generator_UserTableName="AnagPazienti" msprop:Generator_RowEvArgName="AnagPazientiRowChangeEvent">
|
||||
<xs:element name="AnagPazienti" msprop:Generator_TableClassName="AnagPazientiDataTable" msprop:Generator_TableVarName="tableAnagPazienti" msprop:Generator_TablePropName="AnagPazienti" msprop:Generator_RowDeletingName="AnagPazientiRowDeleting" msprop:Generator_RowChangingName="AnagPazientiRowChanging" msprop:Generator_RowEvHandlerName="AnagPazientiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagPazientiRowDeleted" msprop:Generator_UserTableName="AnagPazienti" msprop:Generator_RowChangedName="AnagPazientiRowChanged" msprop:Generator_RowEvArgName="AnagPazientiRowChangeEvent" msprop:Generator_RowClassName="AnagPazientiRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxPaziente" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
|
||||
@@ -1825,6 +1825,8 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Altezza" msprop:Generator_ColumnVarNameInTable="columnAltezza" msprop:Generator_ColumnPropNameInRow="Altezza" msprop:Generator_ColumnPropNameInTable="AltezzaColumn" msprop:Generator_UserColumnName="Altezza" type="xs:double" />
|
||||
<xs:element name="Peso" msprop:Generator_ColumnVarNameInTable="columnPeso" msprop:Generator_ColumnPropNameInRow="Peso" msprop:Generator_ColumnPropNameInTable="PesoColumn" msprop:Generator_UserColumnName="Peso" type="xs:double" />
|
||||
<xs:element name="CodF" msprop:Generator_ColumnVarNameInTable="columnCodF" msprop:Generator_ColumnPropNameInRow="CodF" msprop:Generator_ColumnPropNameInTable="CodFColumn" msprop:Generator_UserColumnName="CodF">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
@@ -1861,12 +1863,10 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Altezza" msprop:Generator_ColumnVarNameInTable="columnAltezza" msprop:Generator_ColumnPropNameInRow="Altezza" msprop:Generator_ColumnPropNameInTable="AltezzaColumn" msprop:Generator_UserColumnName="Altezza" type="xs:double" />
|
||||
<xs:element name="Peso" msprop:Generator_ColumnVarNameInTable="columnPeso" msprop:Generator_ColumnPropNameInRow="Peso" msprop:Generator_ColumnPropNameInTable="PesoColumn" msprop:Generator_UserColumnName="Peso" type="xs:double" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="ElencoVisite" msprop:Generator_TableClassName="ElencoVisiteDataTable" msprop:Generator_TableVarName="tableElencoVisite" msprop:Generator_TablePropName="ElencoVisite" msprop:Generator_RowDeletingName="ElencoVisiteRowDeleting" msprop:Generator_RowChangingName="ElencoVisiteRowChanging" msprop:Generator_RowEvHandlerName="ElencoVisiteRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoVisiteRowDeleted" msprop:Generator_UserTableName="ElencoVisite" msprop:Generator_RowChangedName="ElencoVisiteRowChanged" msprop:Generator_RowEvArgName="ElencoVisiteRowChangeEvent" msprop:Generator_RowClassName="ElencoVisiteRow">
|
||||
<xs:element name="ElencoVisite" msprop:Generator_TableClassName="ElencoVisiteDataTable" msprop:Generator_TableVarName="tableElencoVisite" msprop:Generator_RowChangedName="ElencoVisiteRowChanged" msprop:Generator_TablePropName="ElencoVisite" msprop:Generator_RowDeletingName="ElencoVisiteRowDeleting" msprop:Generator_RowChangingName="ElencoVisiteRowChanging" msprop:Generator_RowEvHandlerName="ElencoVisiteRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoVisiteRowDeleted" msprop:Generator_RowClassName="ElencoVisiteRow" msprop:Generator_UserTableName="ElencoVisite" msprop:Generator_RowEvArgName="ElencoVisiteRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="DataVisita" msprop:Generator_ColumnVarNameInTable="columnDataVisita" msprop:Generator_ColumnPropNameInRow="DataVisita" msprop:Generator_ColumnPropNameInTable="DataVisitaColumn" msprop:Generator_UserColumnName="DataVisita" type="xs:dateTime" />
|
||||
@@ -1882,7 +1882,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="VisLab" msprop:Generator_TableClassName="VisLabDataTable" msprop:Generator_TableVarName="tableVisLab" msprop:Generator_RowChangedName="VisLabRowChanged" msprop:Generator_TablePropName="VisLab" msprop:Generator_RowDeletingName="VisLabRowDeleting" msprop:Generator_RowChangingName="VisLabRowChanging" msprop:Generator_RowEvHandlerName="VisLabRowChangeEventHandler" msprop:Generator_RowDeletedName="VisLabRowDeleted" msprop:Generator_RowClassName="VisLabRow" msprop:Generator_UserTableName="VisLab" msprop:Generator_RowEvArgName="VisLabRowChangeEvent">
|
||||
<xs:element name="VisLab" msprop:Generator_TableClassName="VisLabDataTable" msprop:Generator_TableVarName="tableVisLab" msprop:Generator_TablePropName="VisLab" msprop:Generator_RowDeletingName="VisLabRowDeleting" msprop:Generator_RowChangingName="VisLabRowChanging" msprop:Generator_RowEvHandlerName="VisLabRowChangeEventHandler" msprop:Generator_RowDeletedName="VisLabRowDeleted" msprop:Generator_UserTableName="VisLab" msprop:Generator_RowChangedName="VisLabRowChanged" msprop:Generator_RowEvArgName="VisLabRowChangeEvent" msprop:Generator_RowClassName="VisLabRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
|
||||
@@ -1905,7 +1905,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="VisAnamCli" msprop:Generator_TableClassName="VisAnamCliDataTable" msprop:Generator_TableVarName="tableVisAnamCli" msprop:Generator_RowChangedName="VisAnamCliRowChanged" msprop:Generator_TablePropName="VisAnamCli" msprop:Generator_RowDeletingName="VisAnamCliRowDeleting" msprop:Generator_RowChangingName="VisAnamCliRowChanging" msprop:Generator_RowEvHandlerName="VisAnamCliRowChangeEventHandler" msprop:Generator_RowDeletedName="VisAnamCliRowDeleted" msprop:Generator_RowClassName="VisAnamCliRow" msprop:Generator_UserTableName="VisAnamCli" msprop:Generator_RowEvArgName="VisAnamCliRowChangeEvent">
|
||||
<xs:element name="VisAnamCli" msprop:Generator_TableClassName="VisAnamCliDataTable" msprop:Generator_TableVarName="tableVisAnamCli" msprop:Generator_TablePropName="VisAnamCli" msprop:Generator_RowDeletingName="VisAnamCliRowDeleting" msprop:Generator_RowChangingName="VisAnamCliRowChanging" msprop:Generator_RowEvHandlerName="VisAnamCliRowChangeEventHandler" msprop:Generator_RowDeletedName="VisAnamCliRowDeleted" msprop:Generator_UserTableName="VisAnamCli" msprop:Generator_RowChangedName="VisAnamCliRowChanged" msprop:Generator_RowEvArgName="VisAnamCliRowChangeEvent" msprop:Generator_RowClassName="VisAnamCliRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
|
||||
@@ -1928,7 +1928,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="VisCardioPol" msprop:Generator_TableClassName="VisCardioPolDataTable" msprop:Generator_TableVarName="tableVisCardioPol" msprop:Generator_TablePropName="VisCardioPol" msprop:Generator_RowDeletingName="VisCardioPolRowDeleting" msprop:Generator_RowChangingName="VisCardioPolRowChanging" msprop:Generator_RowEvHandlerName="VisCardioPolRowChangeEventHandler" msprop:Generator_RowDeletedName="VisCardioPolRowDeleted" msprop:Generator_UserTableName="VisCardioPol" msprop:Generator_RowChangedName="VisCardioPolRowChanged" msprop:Generator_RowEvArgName="VisCardioPolRowChangeEvent" msprop:Generator_RowClassName="VisCardioPolRow">
|
||||
<xs:element name="VisCardioPol" msprop:Generator_TableClassName="VisCardioPolDataTable" msprop:Generator_TableVarName="tableVisCardioPol" msprop:Generator_RowChangedName="VisCardioPolRowChanged" msprop:Generator_TablePropName="VisCardioPol" msprop:Generator_RowDeletingName="VisCardioPolRowDeleting" msprop:Generator_RowChangingName="VisCardioPolRowChanging" msprop:Generator_RowEvHandlerName="VisCardioPolRowChangeEventHandler" msprop:Generator_RowDeletedName="VisCardioPolRowDeleted" msprop:Generator_RowClassName="VisCardioPolRow" msprop:Generator_UserTableName="VisCardioPol" msprop:Generator_RowEvArgName="VisCardioPolRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
|
||||
@@ -1956,7 +1956,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="VisPsico" msprop:Generator_TableClassName="VisPsicoDataTable" msprop:Generator_TableVarName="tableVisPsico" msprop:Generator_RowChangedName="VisPsicoRowChanged" msprop:Generator_TablePropName="VisPsico" msprop:Generator_RowDeletingName="VisPsicoRowDeleting" msprop:Generator_RowChangingName="VisPsicoRowChanging" msprop:Generator_RowEvHandlerName="VisPsicoRowChangeEventHandler" msprop:Generator_RowDeletedName="VisPsicoRowDeleted" msprop:Generator_RowClassName="VisPsicoRow" msprop:Generator_UserTableName="VisPsico" msprop:Generator_RowEvArgName="VisPsicoRowChangeEvent">
|
||||
<xs:element name="VisPsico" msprop:Generator_TableClassName="VisPsicoDataTable" msprop:Generator_TableVarName="tableVisPsico" msprop:Generator_TablePropName="VisPsico" msprop:Generator_RowDeletingName="VisPsicoRowDeleting" msprop:Generator_RowChangingName="VisPsicoRowChanging" msprop:Generator_RowEvHandlerName="VisPsicoRowChangeEventHandler" msprop:Generator_RowDeletedName="VisPsicoRowDeleted" msprop:Generator_UserTableName="VisPsico" msprop:Generator_RowChangedName="VisPsicoRowChanged" msprop:Generator_RowEvArgName="VisPsicoRowChangeEvent" msprop:Generator_RowClassName="VisPsicoRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
|
||||
@@ -1970,7 +1970,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="VisStileVita" msprop:Generator_TableClassName="VisStileVitaDataTable" msprop:Generator_TableVarName="tableVisStileVita" msprop:Generator_TablePropName="VisStileVita" msprop:Generator_RowDeletingName="VisStileVitaRowDeleting" msprop:Generator_RowChangingName="VisStileVitaRowChanging" msprop:Generator_RowEvHandlerName="VisStileVitaRowChangeEventHandler" msprop:Generator_RowDeletedName="VisStileVitaRowDeleted" msprop:Generator_UserTableName="VisStileVita" msprop:Generator_RowChangedName="VisStileVitaRowChanged" msprop:Generator_RowEvArgName="VisStileVitaRowChangeEvent" msprop:Generator_RowClassName="VisStileVitaRow">
|
||||
<xs:element name="VisStileVita" msprop:Generator_TableClassName="VisStileVitaDataTable" msprop:Generator_TableVarName="tableVisStileVita" msprop:Generator_RowChangedName="VisStileVitaRowChanged" msprop:Generator_TablePropName="VisStileVita" msprop:Generator_RowDeletingName="VisStileVitaRowDeleting" msprop:Generator_RowChangingName="VisStileVitaRowChanging" msprop:Generator_RowEvHandlerName="VisStileVitaRowChangeEventHandler" msprop:Generator_RowDeletedName="VisStileVitaRowDeleted" msprop:Generator_RowClassName="VisStileVitaRow" msprop:Generator_UserTableName="VisStileVita" msprop:Generator_RowEvArgName="VisStileVitaRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
|
||||
@@ -2022,7 +2022,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="VisRelazFin" msprop:Generator_TableClassName="VisRelazFinDataTable" msprop:Generator_TableVarName="tableVisRelazFin" msprop:Generator_RowChangedName="VisRelazFinRowChanged" msprop:Generator_TablePropName="VisRelazFin" msprop:Generator_RowDeletingName="VisRelazFinRowDeleting" msprop:Generator_RowChangingName="VisRelazFinRowChanging" msprop:Generator_RowEvHandlerName="VisRelazFinRowChangeEventHandler" msprop:Generator_RowDeletedName="VisRelazFinRowDeleted" msprop:Generator_RowClassName="VisRelazFinRow" msprop:Generator_UserTableName="VisRelazFin" msprop:Generator_RowEvArgName="VisRelazFinRowChangeEvent">
|
||||
<xs:element name="VisRelazFin" msprop:Generator_TableClassName="VisRelazFinDataTable" msprop:Generator_TableVarName="tableVisRelazFin" msprop:Generator_TablePropName="VisRelazFin" msprop:Generator_RowDeletingName="VisRelazFinRowDeleting" msprop:Generator_RowChangingName="VisRelazFinRowChanging" msprop:Generator_RowEvHandlerName="VisRelazFinRowChangeEventHandler" msprop:Generator_RowDeletedName="VisRelazFinRowDeleted" msprop:Generator_UserTableName="VisRelazFin" msprop:Generator_RowChangedName="VisRelazFinRowChanged" msprop:Generator_RowEvArgName="VisRelazFinRowChangeEvent" msprop:Generator_RowClassName="VisRelazFinRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
|
||||
@@ -2039,7 +2039,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="stp_rep_DatiFullByPazienteData" msprop:Generator_TableClassName="stp_rep_DatiFullByPazienteDataDataTable" msprop:Generator_TableVarName="tablestp_rep_DatiFullByPazienteData" msprop:Generator_TablePropName="stp_rep_DatiFullByPazienteData" msprop:Generator_RowDeletingName="stp_rep_DatiFullByPazienteDataRowDeleting" msprop:Generator_RowChangingName="stp_rep_DatiFullByPazienteDataRowChanging" msprop:Generator_RowEvHandlerName="stp_rep_DatiFullByPazienteDataRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_rep_DatiFullByPazienteDataRowDeleted" msprop:Generator_UserTableName="stp_rep_DatiFullByPazienteData" msprop:Generator_RowChangedName="stp_rep_DatiFullByPazienteDataRowChanged" msprop:Generator_RowEvArgName="stp_rep_DatiFullByPazienteDataRowChangeEvent" msprop:Generator_RowClassName="stp_rep_DatiFullByPazienteDataRow">
|
||||
<xs:element name="stp_rep_DatiFullByPazienteData" msprop:Generator_TableClassName="stp_rep_DatiFullByPazienteDataDataTable" msprop:Generator_TableVarName="tablestp_rep_DatiFullByPazienteData" msprop:Generator_RowChangedName="stp_rep_DatiFullByPazienteDataRowChanged" msprop:Generator_TablePropName="stp_rep_DatiFullByPazienteData" msprop:Generator_RowDeletingName="stp_rep_DatiFullByPazienteDataRowDeleting" msprop:Generator_RowChangingName="stp_rep_DatiFullByPazienteDataRowChanging" msprop:Generator_RowEvHandlerName="stp_rep_DatiFullByPazienteDataRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_rep_DatiFullByPazienteDataRowDeleted" msprop:Generator_RowClassName="stp_rep_DatiFullByPazienteDataRow" msprop:Generator_UserTableName="stp_rep_DatiFullByPazienteData" msprop:Generator_RowEvArgName="stp_rep_DatiFullByPazienteDataRowChangeEvent">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxPaziente" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" minOccurs="0" />
|
||||
@@ -2528,7 +2528,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="VisBioMecAnt" msprop:Generator_TableClassName="VisBioMecAntDataTable" msprop:Generator_TableVarName="tableVisBioMecAnt" msprop:Generator_RowChangedName="VisBioMecAntRowChanged" msprop:Generator_TablePropName="VisBioMecAnt" msprop:Generator_RowDeletingName="VisBioMecAntRowDeleting" msprop:Generator_RowChangingName="VisBioMecAntRowChanging" msprop:Generator_RowEvHandlerName="VisBioMecAntRowChangeEventHandler" msprop:Generator_RowDeletedName="VisBioMecAntRowDeleted" msprop:Generator_RowClassName="VisBioMecAntRow" msprop:Generator_UserTableName="VisBioMecAnt" msprop:Generator_RowEvArgName="VisBioMecAntRowChangeEvent">
|
||||
<xs:element name="VisBioMecAnt" msprop:Generator_TableClassName="VisBioMecAntDataTable" msprop:Generator_TableVarName="tableVisBioMecAnt" msprop:Generator_TablePropName="VisBioMecAnt" msprop:Generator_RowDeletingName="VisBioMecAntRowDeleting" msprop:Generator_RowChangingName="VisBioMecAntRowChanging" msprop:Generator_RowEvHandlerName="VisBioMecAntRowChangeEventHandler" msprop:Generator_RowDeletedName="VisBioMecAntRowDeleted" msprop:Generator_UserTableName="VisBioMecAnt" msprop:Generator_RowChangedName="VisBioMecAntRowChanged" msprop:Generator_RowEvArgName="VisBioMecAntRowChangeEvent" msprop:Generator_RowClassName="VisBioMecAntRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
|
||||
@@ -2580,7 +2580,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="VisValFunz" msprop:Generator_TableClassName="VisValFunzDataTable" msprop:Generator_TableVarName="tableVisValFunz" msprop:Generator_RowChangedName="VisValFunzRowChanged" msprop:Generator_TablePropName="VisValFunz" msprop:Generator_RowDeletingName="VisValFunzRowDeleting" msprop:Generator_RowChangingName="VisValFunzRowChanging" msprop:Generator_RowEvHandlerName="VisValFunzRowChangeEventHandler" msprop:Generator_RowDeletedName="VisValFunzRowDeleted" msprop:Generator_RowClassName="VisValFunzRow" msprop:Generator_UserTableName="VisValFunz" msprop:Generator_RowEvArgName="VisValFunzRowChangeEvent">
|
||||
<xs:element name="VisValFunz" msprop:Generator_TableClassName="VisValFunzDataTable" msprop:Generator_TableVarName="tableVisValFunz" msprop:Generator_TablePropName="VisValFunz" msprop:Generator_RowDeletingName="VisValFunzRowDeleting" msprop:Generator_RowChangingName="VisValFunzRowChanging" msprop:Generator_RowEvHandlerName="VisValFunzRowChangeEventHandler" msprop:Generator_RowDeletedName="VisValFunzRowDeleted" msprop:Generator_UserTableName="VisValFunz" msprop:Generator_RowChangedName="VisValFunzRowChanged" msprop:Generator_RowEvArgName="VisValFunzRowChangeEvent" msprop:Generator_RowClassName="VisValFunzRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
|
||||
@@ -2613,7 +2613,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="VisValFunzGT" msprop:Generator_TableClassName="VisValFunzGTDataTable" msprop:Generator_TableVarName="tableVisValFunzGT" msprop:Generator_RowChangedName="VisValFunzGTRowChanged" msprop:Generator_TablePropName="VisValFunzGT" msprop:Generator_RowDeletingName="VisValFunzGTRowDeleting" msprop:Generator_RowChangingName="VisValFunzGTRowChanging" msprop:Generator_RowEvHandlerName="VisValFunzGTRowChangeEventHandler" msprop:Generator_RowDeletedName="VisValFunzGTRowDeleted" msprop:Generator_RowClassName="VisValFunzGTRow" msprop:Generator_UserTableName="VisValFunzGT" msprop:Generator_RowEvArgName="VisValFunzGTRowChangeEvent">
|
||||
<xs:element name="VisValFunzGT" msprop:Generator_TableClassName="VisValFunzGTDataTable" msprop:Generator_TableVarName="tableVisValFunzGT" msprop:Generator_TablePropName="VisValFunzGT" msprop:Generator_RowDeletingName="VisValFunzGTRowDeleting" msprop:Generator_RowChangingName="VisValFunzGTRowChanging" msprop:Generator_RowEvHandlerName="VisValFunzGTRowChangeEventHandler" msprop:Generator_RowDeletedName="VisValFunzGTRowDeleted" msprop:Generator_UserTableName="VisValFunzGT" msprop:Generator_RowChangedName="VisValFunzGTRowChanged" msprop:Generator_RowEvArgName="VisValFunzGTRowChangeEvent" msprop:Generator_RowClassName="VisValFunzGTRow">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
|
||||
@@ -2707,15 +2707,15 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
|
||||
</xs:element>
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<msdata:Relationship name="FK_VisClinGen_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisLab" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisLab" msprop:Generator_ChildPropName="GetVisLabRows" msprop:Generator_UserRelationName="FK_VisClinGen_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisClinGen_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
|
||||
<msdata:Relationship name="FK_VisAnamCli_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisAnamCli" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisAnamCli" msprop:Generator_ChildPropName="GetVisAnamCliRows" msprop:Generator_UserRelationName="FK_VisAnamCli_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisAnamCli_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
|
||||
<msdata:Relationship name="FK_VisCardioPol_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisCardioPol" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisCardioPol" msprop:Generator_ChildPropName="GetVisCardioPolRows" msprop:Generator_UserRelationName="FK_VisCardioPol_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisCardioPol_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
|
||||
<msdata:Relationship name="FK_VisPsico_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisPsico" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisPsico" msprop:Generator_ChildPropName="GetVisPsicoRows" msprop:Generator_UserRelationName="FK_VisPsico_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisPsico_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
|
||||
<msdata:Relationship name="FK_VisStileVita_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisStileVita" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisStileVita" msprop:Generator_ChildPropName="GetVisStileVitaRows" msprop:Generator_UserRelationName="FK_VisStileVita_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisStileVita_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
|
||||
<msdata:Relationship name="FK_VisRelazFin_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisRelazFin" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisRelazFin" msprop:Generator_ChildPropName="GetVisRelazFinRows" msprop:Generator_UserRelationName="FK_VisRelazFin_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisRelazFin_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
|
||||
<msdata:Relationship name="AnagPazienti_v_VisBioMecAnt" msdata:parent="AnagPazienti" msdata:child="VisBioMecAnt" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisBioMecAnt" msprop:Generator_ChildPropName="GetVisBioMecAntRows" msprop:Generator_UserRelationName="AnagPazienti_v_VisBioMecAnt" msprop:Generator_RelationVarName="relationAnagPazienti_v_VisBioMecAnt" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
|
||||
<msdata:Relationship name="FK_VisValFunz_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisValFunz" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisValFunz" msprop:Generator_ChildPropName="GetVisValFunzRows" msprop:Generator_UserRelationName="FK_VisValFunz_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisValFunz_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
|
||||
<msdata:Relationship name="FK_ValSvolAtt_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisValFunzGT" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisValFunzGT" msprop:Generator_ChildPropName="GetVisValFunzGTRows" msprop:Generator_UserRelationName="FK_ValSvolAtt_AnagPazienti" msprop:Generator_RelationVarName="relationFK_ValSvolAtt_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
|
||||
<msdata:Relationship name="FK_VisClinGen_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisLab" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisLab" msprop:Generator_ChildPropName="GetVisLabRows" msprop:Generator_UserRelationName="FK_VisClinGen_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisClinGen_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
|
||||
<msdata:Relationship name="FK_VisAnamCli_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisAnamCli" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisAnamCli" msprop:Generator_ChildPropName="GetVisAnamCliRows" msprop:Generator_UserRelationName="FK_VisAnamCli_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisAnamCli_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
|
||||
<msdata:Relationship name="FK_VisCardioPol_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisCardioPol" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisCardioPol" msprop:Generator_ChildPropName="GetVisCardioPolRows" msprop:Generator_UserRelationName="FK_VisCardioPol_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisCardioPol_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
|
||||
<msdata:Relationship name="FK_VisPsico_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisPsico" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisPsico" msprop:Generator_ChildPropName="GetVisPsicoRows" msprop:Generator_UserRelationName="FK_VisPsico_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisPsico_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
|
||||
<msdata:Relationship name="FK_VisStileVita_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisStileVita" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisStileVita" msprop:Generator_ChildPropName="GetVisStileVitaRows" msprop:Generator_UserRelationName="FK_VisStileVita_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisStileVita_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
|
||||
<msdata:Relationship name="FK_VisRelazFin_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisRelazFin" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisRelazFin" msprop:Generator_ChildPropName="GetVisRelazFinRows" msprop:Generator_UserRelationName="FK_VisRelazFin_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisRelazFin_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
|
||||
<msdata:Relationship name="AnagPazienti_v_VisBioMecAnt" msdata:parent="AnagPazienti" msdata:child="VisBioMecAnt" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisBioMecAnt" msprop:Generator_ChildPropName="GetVisBioMecAntRows" msprop:Generator_UserRelationName="AnagPazienti_v_VisBioMecAnt" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationAnagPazienti_v_VisBioMecAnt" msprop:Generator_UserParentTable="AnagPazienti" />
|
||||
<msdata:Relationship name="FK_VisValFunz_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisValFunz" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisValFunz" msprop:Generator_ChildPropName="GetVisValFunzRows" msprop:Generator_UserRelationName="FK_VisValFunz_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisValFunz_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
|
||||
<msdata:Relationship name="FK_ValSvolAtt_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisValFunzGT" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisValFunzGT" msprop:Generator_ChildPropName="GetVisValFunzGTRows" msprop:Generator_UserRelationName="FK_ValSvolAtt_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_ValSvolAtt_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
|
||||
</xs:appinfo>
|
||||
</xs:annotation>
|
||||
</xs:schema>
|
||||
Reference in New Issue
Block a user