FIXED scheda anagrafica paziente con nuovi campi...
This commit is contained in:
+45
-18
@@ -7,9 +7,19 @@
|
||||
<asp:Button runat="server" ID="btnNew" Text="Nuovo" CssClass="ui-btn ui-shadow ui-corner-all ui-icon-plus" OnClick="btnNew_Click" />
|
||||
<asp:TextBox runat="server" type="search" name="password" ID="txtSearch" value="" placeholder="Ricerca Nominativo" AutoPostBack="true" />
|
||||
<asp:GridView ID="grView" runat="server" DataSourceID="ods" AutoGenerateColumns="False" DataKeyNames="IdxPaziente" CellPadding="4" ForeColor="#333333" GridLines="None" Width="100%" AllowPaging="True" OnSelectedIndexChanged="grView_SelectedIndexChanged" OnRowCommand="grView_RowCommand">
|
||||
<EditRowStyle BackColor="#2461BF" />
|
||||
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
|
||||
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
|
||||
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
|
||||
<RowStyle BackColor="#EFF3FB" HorizontalAlign="Left" />
|
||||
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
|
||||
<SortedAscendingCellStyle BackColor="#F5F7FB" />
|
||||
<SortedAscendingHeaderStyle BackColor="#6D95E1" />
|
||||
<SortedDescendingCellStyle BackColor="#E9EBEF" />
|
||||
<SortedDescendingHeaderStyle BackColor="#4870BE" />
|
||||
<AlternatingRowStyle BackColor="White" />
|
||||
<Columns>
|
||||
<asp:TemplateField ShowHeader="False">
|
||||
<asp:TemplateField ShowHeader="False" ItemStyle-HorizontalAlign="Center" HeaderStyle-HorizontalAlign="Center">
|
||||
<ItemTemplate>
|
||||
<div class="ui-nodisc-icon ui-alt-icon" style="white-space: nowrap;">
|
||||
<asp:LinkButton CssClass="ui-btn ui-shadow ui-corner-all ui-icon-user ui-btn-icon-notext ui-btn-inline" ID="LinkButton1" data-icon="star" runat="server" CausesValidation="False" CommandArgument="select" CommandName="Select" Text="Sel"></asp:LinkButton>
|
||||
@@ -17,29 +27,46 @@
|
||||
</div>
|
||||
</ItemTemplate>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField HeaderText="Nominativo" SortExpression="Cognome">
|
||||
<asp:TemplateField HeaderText="Cognome" SortExpression="Cognome" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left">
|
||||
<ItemTemplate>
|
||||
<b>
|
||||
<asp:Label ID="Label2" runat="server" Text='<%# Eval("Cognome") %>' /></b>
|
||||
<asp:Label ID="Label3" runat="server" Text='<%# Eval("Nome") %>' />,
|
||||
<asp:Label ID="Label1" runat="server" Text='<%# Eval("DataNasc","{0:dd/MM/yy}") %>' />
|
||||
<br />
|
||||
<asp:Label ID="Label4" runat="server" Text='<%# Eval("CodF") %>' Font-Size="0.8em" />
|
||||
<asp:Label ID="lblCognome" runat="server" Text='<%# Eval("Cognome") %>' /></b>
|
||||
</ItemTemplate>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField HeaderText="Nome" SortExpression="Nome" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left">
|
||||
<ItemTemplate>
|
||||
<asp:Label ID="lblNome" runat="server" Text='<%# Eval("Nome") %>' />
|
||||
</ItemTemplate>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField HeaderText="Eta" SortExpression="Eta">
|
||||
<ItemTemplate>
|
||||
<asp:Label ID="lblEta" runat="server" Text='<%# Eval("Eta") %>' />
|
||||
</ItemTemplate>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField HeaderText="Indirizzo" SortExpression="Indirizzo" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left">
|
||||
<ItemTemplate>
|
||||
<asp:Label ID="lblIndirizzo" runat="server" Text='<%# Eval("Indirizzo") %>' />
|
||||
</ItemTemplate>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField HeaderText="Nato a" SortExpression="LuogoNascita" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left">
|
||||
<ItemTemplate>
|
||||
<asp:Label ID="lblLuogo" runat="server" Text='<%# Eval("LuogoNascita") %>' />
|
||||
</ItemTemplate>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField HeaderText="Nato il" SortExpression="DataNasc" ItemStyle-HorizontalAlign="Left" HeaderStyle-HorizontalAlign="Left">
|
||||
<ItemTemplate>
|
||||
<asp:Label ID="lblData" runat="server" Text='<%# Eval("DataNasc","{0:dd/MM/yy}") %>' />
|
||||
</ItemTemplate>
|
||||
</asp:TemplateField>
|
||||
<asp:TemplateField HeaderText="CodF" SortExpression="CodF" ItemStyle-HorizontalAlign="Right" HeaderStyle-HorizontalAlign="Right">
|
||||
<ItemTemplate>
|
||||
<asp:Label ID="lblCF" runat="server" Text='<%# Eval("CodF") %>' />
|
||||
</ItemTemplate>
|
||||
</asp:TemplateField>
|
||||
</Columns>
|
||||
<EditRowStyle BackColor="#2461BF" />
|
||||
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
|
||||
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
|
||||
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
|
||||
<RowStyle BackColor="#EFF3FB" />
|
||||
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
|
||||
<SortedAscendingCellStyle BackColor="#F5F7FB" />
|
||||
<SortedAscendingHeaderStyle BackColor="#6D95E1" />
|
||||
<SortedDescendingCellStyle BackColor="#E9EBEF" />
|
||||
<SortedDescendingHeaderStyle BackColor="#4870BE" />
|
||||
|
||||
</asp:GridView>
|
||||
<asp:ObjectDataSource ID="ods" runat="server" SelectMethod="GetData" TypeName="MedPred_Data.DS_ApplicazioneTableAdapters.AnagPazientiTableAdapter" FilterExpression="Cognome LIKE '%{0}%' OR Nome LIKE '%{0}%' OR CodF LIKE '%{0}%'">
|
||||
<asp:ObjectDataSource ID="ods" runat="server" SelectMethod="GetData" TypeName="MedPred_Data.DS_ApplicazioneTableAdapters.AnagPazientiTableAdapter" FilterExpression="Cognome LIKE '%{0}%' OR Nome LIKE '%{0}%' OR CodF LIKE '%{0}%' OR Indirizzo LIKE '%{0}%' OR LuogoNascita LIKE '%{0}%'">
|
||||
<FilterParameters>
|
||||
<asp:ControlParameter ControlID="txtSearch" DefaultValue="*" Type="String" />
|
||||
</FilterParameters>
|
||||
|
||||
+108
-32
@@ -6,62 +6,132 @@
|
||||
<div style="font-size: 0.8em;">
|
||||
<asp:FormView ID="frmView" runat="server" DataSourceID="ods" RenderOuterTable="False" OnModeChanged="frmView_ModeChanged">
|
||||
<ItemTemplate>
|
||||
ITEM
|
||||
ITEM - EMPTY
|
||||
</ItemTemplate>
|
||||
<InsertItemTemplate>
|
||||
<div class="ui-grid-a">
|
||||
<div class="ui-block-a">
|
||||
<asp:TextBox runat="server" ID="txtCognome" Text='<%# Bind("Cognome") %>' placeholder="Cognome" />
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li class="ui-field-contain">
|
||||
<label for="name2">Cognome:</label>
|
||||
<asp:TextBox runat="server" ID="txtCognome" Text='<%# Bind("Cognome") %>' placeholder="Cognome" data-clear-btn="false" />
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label for="textarea2">Nome:</label>
|
||||
<asp:TextBox runat="server" ID="txtNome" Text='<%# Bind("Nome") %>' placeholder="Nome" data-clear-btn="false" />
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label for="flip2">Sesso:</label>
|
||||
<asp:TextBox runat="server" ID="txtSesso" Text='<%# Bind("Sesso") %>' placeholder="Sesso (M/F)" />
|
||||
<%--<select name="flip2" id="flip2" data-role="slider">
|
||||
<option value="M">M</option>
|
||||
<option value="F">F</option>
|
||||
</select>--%>
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label for="textarea2">Indirizzo:</label>
|
||||
<asp:TextBox runat="server" ID="txtIndirizzo" Text='<%# Bind("Indirizzo") %>' placeholder="Indirizzo" data-clear-btn="false" />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="ui-block-b">
|
||||
<asp:TextBox runat="server" ID="txtNome" Text='<%# Bind("Nome") %>' placeholder="Nome" />
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li class="ui-field-contain">
|
||||
<label for="textarea2">Data Nascita:</label>
|
||||
<asp:TextBox runat="server" ID="txtDataNasc" Text='<%# Bind("DataNasc", "{0:dd/MM/yyyy}") %>' placeholder="Data di Nascita" data-role="date" data-clear-btn="false" />
|
||||
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label for="textarea2">Luogo Nascita:</label>
|
||||
<asp:TextBox runat="server" ID="txtLuogoNascita" Text='<%# Bind("LuogoNascita") %>' placeholder="Luogo di Nascita" data-clear-btn="false" />
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label for="textarea2">Cod Fisc.:</label>
|
||||
<asp:TextBox runat="server" ID="txtCodF" Text='<%# Bind("CodF") %>' placeholder="Codice Fiscale" data-clear-btn="false" />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ui-grid-a">
|
||||
<div class="ui-grid-solo">
|
||||
<div class="ui-block-a">
|
||||
<asp:TextBox runat="server" ID="txtDataNasc" Text='<%# Bind("DataNasc") %>' placeholder="Data di Nascita" data-role="date" />
|
||||
</div>
|
||||
<div class="ui-block-b">
|
||||
<asp:TextBox runat="server" ID="txtCodF" Text='<%# Bind("CodF") %>' placeholder="Codice Fiscale" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="ui-grid-a">
|
||||
<div class="ui-block-a">
|
||||
<asp:Button runat="server" CssClass="ui-btn ui-shadow ui-corner-all ui-icon-check" ID="btnInsert" CausesValidation="False" CommandName="Insert" Text="Salva" data-theme="a" />
|
||||
</div>
|
||||
<div class="ui-block-b">
|
||||
<asp:Button runat="server" CssClass="ui-btn ui-shadow ui-corner-all ui-icon-delete" ID="btnCancel" CausesValidation="False" CommandName="Cancel" Text="Cancel" data-theme="b" />
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li class="ui-body ui-body-b">
|
||||
<fieldset class="ui-grid-a">
|
||||
<div class="ui-block-a">
|
||||
<asp:Button runat="server" CssClass="ui-btn ui-shadow ui-corner-all ui-icon-check" ID="btnInsert" CausesValidation="False" CommandName="Insert" Text="Salva" data-theme="a" />
|
||||
</div>
|
||||
<div class="ui-block-b">
|
||||
<asp:Button runat="server" CssClass="ui-btn ui-shadow ui-corner-all ui-icon-delete" ID="btnCancel" CausesValidation="False" CommandName="Cancel" Text="Cancel" data-theme="b" />
|
||||
</div>
|
||||
</fieldset>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</InsertItemTemplate>
|
||||
<EditItemTemplate>
|
||||
<div class="ui-grid-a">
|
||||
<div class="ui-block-a">
|
||||
<asp:TextBox runat="server" ID="txtCognome" Text='<%# Bind("Cognome") %>' placeholder="Cognome" />
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li class="ui-field-contain">
|
||||
<label for="name2">Cognome:</label>
|
||||
<asp:TextBox runat="server" ID="txtCognome" Text='<%# Bind("Cognome") %>' placeholder="Cognome" data-clear-btn="false" />
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label for="textarea2">Nome:</label>
|
||||
<asp:TextBox runat="server" ID="txtNome" Text='<%# Bind("Nome") %>' placeholder="Nome" data-clear-btn="false" />
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label for="flip2">Sesso:</label>
|
||||
<asp:TextBox runat="server" ID="txtSesso" Text='<%# Bind("Sesso") %>' placeholder="Sesso (M/F)" />
|
||||
<%--<select name="flip2" id="flip2" data-role="slider">
|
||||
<option value="M">M</option>
|
||||
<option value="F">F</option>
|
||||
</select>--%>
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label for="textarea2">Indirizzo:</label>
|
||||
<asp:TextBox runat="server" ID="txtIndirizzo" Text='<%# Bind("Indirizzo") %>' placeholder="Indirizzo" data-clear-btn="false" />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="ui-block-b">
|
||||
<asp:TextBox runat="server" ID="txtNome" Text='<%# Bind("Nome") %>' placeholder="Nome" />
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li class="ui-field-contain">
|
||||
<label for="textarea2">Data Nascita:</label>
|
||||
<asp:TextBox runat="server" ID="txtDataNasc" Text='<%# Bind("DataNasc", "{0:dd/MM/yyyy}") %>' placeholder="Data di Nascita" data-role="date" data-clear-btn="false" />
|
||||
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label for="textarea2">Luogo Nascita:</label>
|
||||
<asp:TextBox runat="server" ID="txtLuogoNascita" Text='<%# Bind("LuogoNascita") %>' placeholder="Luogo di Nascita" data-clear-btn="false" />
|
||||
</li>
|
||||
<li class="ui-field-contain">
|
||||
<label for="textarea2">Cod Fisc.:</label>
|
||||
<asp:TextBox runat="server" ID="txtCodF" Text='<%# Bind("CodF") %>' placeholder="Codice Fiscale" data-clear-btn="false" />
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
<div class="ui-grid-a">
|
||||
<div class="ui-grid-solo">
|
||||
<div class="ui-block-a">
|
||||
<asp:TextBox runat="server" ID="txtDataNasc" Text='<%# Bind("DataNasc", "{0:dd/MM/yyyy}") %>' placeholder="Data di Nascita" data-role="date" />
|
||||
</div>
|
||||
<div class="ui-block-b">
|
||||
<asp:TextBox runat="server" ID="txtCodF" Text='<%# Bind("CodF") %>' placeholder="Codice Fiscale" />
|
||||
</div>
|
||||
</div>
|
||||
<div class="ui-grid-a">
|
||||
<div class="ui-block-a">
|
||||
<asp:Button runat="server" CssClass="ui-btn ui-shadow ui-corner-all ui-icon-check" ID="btnUpdate" CausesValidation="False" CommandName="Update" Text="Update" data-theme="a" />
|
||||
</div>
|
||||
<div class="ui-block-b">
|
||||
<asp:Button runat="server" CssClass="ui-btn ui-shadow ui-corner-all ui-icon-delete" ID="btnCancel" CausesValidation="False" CommandName="Cancel" Text="Cancel" data-theme="b" />
|
||||
<ul data-role="listview" data-inset="true">
|
||||
<li class="ui-body ui-body-b">
|
||||
<fieldset class="ui-grid-a">
|
||||
<div class="ui-block-a">
|
||||
<asp:Button runat="server" CssClass="ui-btn ui-shadow ui-corner-all ui-icon-check" ID="btnUpdate" CausesValidation="False" CommandName="Update" Text="Update" data-theme="a" />
|
||||
</div>
|
||||
<div class="ui-block-b">
|
||||
<asp:Button runat="server" CssClass="ui-btn ui-shadow ui-corner-all ui-icon-delete" ID="btnCancel" CausesValidation="False" CommandName="Cancel" Text="Cancel" data-theme="b" />
|
||||
</div>
|
||||
</fieldset>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</EditItemTemplate>
|
||||
</asp:FormView>
|
||||
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByKey" TypeName="MedPred_Data.DS_ApplicazioneTableAdapters.AnagPazientiTableAdapter" DeleteMethod="deleteQuery" InsertMethod="insertQuery" UpdateMethod="updateQuery">
|
||||
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="Original_{0}" SelectMethod="getByKey" TypeName="MedPred_Data.DS_ApplicazioneTableAdapters.AnagPazientiTableAdapter" DeleteMethod="deleteQuery" InsertMethod="insertQuery" UpdateMethod="updateQuery">
|
||||
<DeleteParameters>
|
||||
<asp:Parameter Name="Original_IdxPaziente" Type="Int32" />
|
||||
</DeleteParameters>
|
||||
@@ -69,7 +139,10 @@
|
||||
<asp:Parameter Name="Cognome" Type="String" />
|
||||
<asp:Parameter Name="Nome" Type="String" />
|
||||
<asp:Parameter Name="DataNasc" Type="DateTime" />
|
||||
<asp:Parameter Name="LuogoNascita" Type="String" />
|
||||
<asp:Parameter Name="CodF" Type="String" />
|
||||
<asp:Parameter Name="Indirizzo" Type="String" />
|
||||
<asp:Parameter Name="Sesso" Type="String" />
|
||||
</InsertParameters>
|
||||
<SelectParameters>
|
||||
<asp:QueryStringParameter DefaultValue="0" Name="IdxPaziente" QueryStringField="IdxPaziente" Type="Int32" />
|
||||
@@ -78,7 +151,10 @@
|
||||
<asp:Parameter Name="Cognome" Type="String" />
|
||||
<asp:Parameter Name="Nome" Type="String" />
|
||||
<asp:Parameter Name="DataNasc" Type="DateTime" />
|
||||
<asp:Parameter Name="LuogoNascita" Type="String" />
|
||||
<asp:Parameter Name="CodF" Type="String" />
|
||||
<asp:Parameter Name="Indirizzo" Type="String" />
|
||||
<asp:Parameter Name="Sesso" Type="String" />
|
||||
<asp:QueryStringParameter DefaultValue="0" Name="Original_IdxPaziente" QueryStringField="IdxPaziente" Type="Int32" />
|
||||
</UpdateParameters>
|
||||
</asp:ObjectDataSource>
|
||||
|
||||
@@ -31,5 +31,5 @@ using System.Runtime.InteropServices;
|
||||
//
|
||||
// You can specify all the values or you can default the Revision and Build Numbers
|
||||
// by using the '*' as shown below:
|
||||
[assembly: AssemblyVersion("0.7.*")]
|
||||
[assembly: AssemblyFileVersion("0.7.*")]
|
||||
[assembly: AssemblyVersion("0.8.*")]
|
||||
[assembly: AssemblyFileVersion("0.8.*")]
|
||||
|
||||
Generated
+339
-34
@@ -492,6 +492,14 @@ namespace MedPred_Data {
|
||||
|
||||
private global::System.Data.DataColumn columnCodF;
|
||||
|
||||
private global::System.Data.DataColumn columnLuogoNascita;
|
||||
|
||||
private global::System.Data.DataColumn columnSesso;
|
||||
|
||||
private global::System.Data.DataColumn columnIndirizzo;
|
||||
|
||||
private global::System.Data.DataColumn columnEta;
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public AnagPazientiDataTable() {
|
||||
@@ -565,6 +573,38 @@ namespace MedPred_Data {
|
||||
}
|
||||
}
|
||||
|
||||
[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 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")]
|
||||
[global::System.ComponentModel.Browsable(false)]
|
||||
@@ -602,14 +642,18 @@ namespace MedPred_Data {
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "4.0.0.0")]
|
||||
public AnagPazientiRow AddAnagPazientiRow(string Cognome, string Nome, System.DateTime DataNasc, string CodF) {
|
||||
public AnagPazientiRow AddAnagPazientiRow(string Cognome, string Nome, System.DateTime DataNasc, string CodF, string LuogoNascita, string Sesso, string Indirizzo, byte Eta) {
|
||||
AnagPazientiRow rowAnagPazientiRow = ((AnagPazientiRow)(this.NewRow()));
|
||||
object[] columnValuesArray = new object[] {
|
||||
null,
|
||||
Cognome,
|
||||
Nome,
|
||||
DataNasc,
|
||||
CodF};
|
||||
CodF,
|
||||
LuogoNascita,
|
||||
Sesso,
|
||||
Indirizzo,
|
||||
Eta};
|
||||
rowAnagPazientiRow.ItemArray = columnValuesArray;
|
||||
this.Rows.Add(rowAnagPazientiRow);
|
||||
return rowAnagPazientiRow;
|
||||
@@ -644,6 +688,10 @@ namespace MedPred_Data {
|
||||
this.columnNome = base.Columns["Nome"];
|
||||
this.columnDataNasc = base.Columns["DataNasc"];
|
||||
this.columnCodF = base.Columns["CodF"];
|
||||
this.columnLuogoNascita = base.Columns["LuogoNascita"];
|
||||
this.columnSesso = base.Columns["Sesso"];
|
||||
this.columnIndirizzo = base.Columns["Indirizzo"];
|
||||
this.columnEta = base.Columns["Eta"];
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -659,6 +707,14 @@ namespace MedPred_Data {
|
||||
base.Columns.Add(this.columnDataNasc);
|
||||
this.columnCodF = new global::System.Data.DataColumn("CodF", typeof(string), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnCodF);
|
||||
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.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(byte), null, global::System.Data.MappingType.Element);
|
||||
base.Columns.Add(this.columnEta);
|
||||
this.Constraints.Add(new global::System.Data.UniqueConstraint("Constraint1", new global::System.Data.DataColumn[] {
|
||||
this.columnIdxPaziente}, true));
|
||||
this.columnIdxPaziente.AutoIncrement = true;
|
||||
@@ -674,6 +730,13 @@ namespace MedPred_Data {
|
||||
this.columnDataNasc.AllowDBNull = false;
|
||||
this.columnCodF.AllowDBNull = false;
|
||||
this.columnCodF.MaxLength = 20;
|
||||
this.columnLuogoNascita.AllowDBNull = false;
|
||||
this.columnLuogoNascita.MaxLength = 50;
|
||||
this.columnSesso.AllowDBNull = false;
|
||||
this.columnSesso.MaxLength = 1;
|
||||
this.columnIndirizzo.AllowDBNull = false;
|
||||
this.columnIndirizzo.MaxLength = 50;
|
||||
this.columnEta.ReadOnly = true;
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -2958,6 +3021,67 @@ namespace MedPred_Data {
|
||||
}
|
||||
}
|
||||
|
||||
[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 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 byte Eta {
|
||||
get {
|
||||
try {
|
||||
return ((byte)(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 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 VisGenRow[] GetVisGenRows() {
|
||||
@@ -4327,42 +4451,59 @@ namespace MedPred_Data.DS_ApplicazioneTableAdapters {
|
||||
tableMapping.ColumnMappings.Add("Nome", "Nome");
|
||||
tableMapping.ColumnMappings.Add("DataNasc", "DataNasc");
|
||||
tableMapping.ColumnMappings.Add("CodF", "CodF");
|
||||
tableMapping.ColumnMappings.Add("LuogoNascita", "LuogoNascita");
|
||||
tableMapping.ColumnMappings.Add("Sesso", "Sesso");
|
||||
tableMapping.ColumnMappings.Add("Indirizzo", "Indirizzo");
|
||||
tableMapping.ColumnMappings.Add("Eta", "Eta");
|
||||
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].[AnagPazienti] WHERE (([IdxPaziente] = @Original_IdxPaziente) A" +
|
||||
"ND ([Cognome] = @Original_Cognome) AND ([Nome] = @Original_Nome) AND ([DataNasc]" +
|
||||
" = @Original_DataNasc) AND ([CodF] = @Original_CodF))";
|
||||
this._adapter.DeleteCommand.CommandText = @"DELETE FROM [AnagPazienti] WHERE (([IdxPaziente] = @Original_IdxPaziente) 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)))";
|
||||
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_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.TinyInt, 0, global::System.Data.ParameterDirection.Input, 0, 0, "Eta", 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].[AnagPazienti] ([Cognome], [Nome], [DataNasc], [CodF]) VALUES (" +
|
||||
"@Cognome, @Nome, @DataNasc, @CodF);\r\nSELECT IdxPaziente, Cognome, Nome, DataNasc" +
|
||||
", CodF FROM AnagPazienti WHERE (IdxPaziente = SCOPE_IDENTITY())";
|
||||
this._adapter.InsertCommand.CommandText = @"INSERT INTO [AnagPazienti] ([Cognome], [Nome], [DataNasc], [LuogoNascita], [Sesso], [CodF], [Indirizzo]) VALUES (@Cognome, @Nome, @DataNasc, @LuogoNascita, @Sesso, @CodF, @Indirizzo);
|
||||
SELECT IdxPaziente, Cognome, Nome, DataNasc, LuogoNascita, Sesso, CodF, Indirizzo, Eta 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("@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.UpdateCommand = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._adapter.UpdateCommand.Connection = this.Connection;
|
||||
this._adapter.UpdateCommand.CommandText = @"UPDATE [dbo].[AnagPazienti] SET [Cognome] = @Cognome, [Nome] = @Nome, [DataNasc] = @DataNasc, [CodF] = @CodF WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([Cognome] = @Original_Cognome) AND ([Nome] = @Original_Nome) AND ([DataNasc] = @Original_DataNasc) AND ([CodF] = @Original_CodF));
|
||||
SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPaziente = @IdxPaziente)";
|
||||
this._adapter.UpdateCommand.CommandText = @"UPDATE [AnagPazienti] SET [Cognome] = @Cognome, [Nome] = @Nome, [DataNasc] = @DataNasc, [LuogoNascita] = @LuogoNascita, [Sesso] = @Sesso, [CodF] = @CodF, [Indirizzo] = @Indirizzo WHERE (([IdxPaziente] = @Original_IdxPaziente) 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)));
|
||||
SELECT IdxPaziente, Cognome, Nome, DataNasc, LuogoNascita, Sesso, CodF, Indirizzo, Eta 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("@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("@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_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.TinyInt, 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("@IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 0, 0, "IdxPaziente", global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
}
|
||||
|
||||
@@ -4379,7 +4520,8 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
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, Cognome, Nome, DataNasc, CodF FROM dbo.AnagPazienti";
|
||||
this._commandCollection[0].CommandText = "SELECT IdxPaziente, Cognome, Nome, DataNasc, LuogoNascita, Sesso, CodF, In" +
|
||||
"dirizzo, Eta\r\nFROM 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;
|
||||
@@ -4401,7 +4543,10 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
this._commandCollection[3].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[3].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[3].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[3].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[3].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[3].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[3].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] = new global::System.Data.SqlClient.SqlCommand();
|
||||
this._commandCollection[4].Connection = this.Connection;
|
||||
this._commandCollection[4].CommandText = "dbo.stp_AP_updateQuery";
|
||||
@@ -4410,7 +4555,10 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
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("@Original_IdxPaziente", global::System.Data.SqlDbType.Int, 4, global::System.Data.ParameterDirection.Input, 10, 0, null, global::System.Data.DataRowVersion.Current, false, null, "", "", ""));
|
||||
}
|
||||
|
||||
@@ -4488,7 +4636,7 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
[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_Cognome, string Original_Nome, System.DateTime Original_DataNasc, string Original_CodF) {
|
||||
public virtual int Delete(int Original_IdxPaziente, 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<byte> Original_Eta) {
|
||||
this.Adapter.DeleteCommand.Parameters[0].Value = ((int)(Original_IdxPaziente));
|
||||
if ((Original_Cognome == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Cognome");
|
||||
@@ -4503,11 +4651,37 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
this.Adapter.DeleteCommand.Parameters[2].Value = ((string)(Original_Nome));
|
||||
}
|
||||
this.Adapter.DeleteCommand.Parameters[3].Value = ((System.DateTime)(Original_DataNasc));
|
||||
if ((Original_LuogoNascita == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_LuogoNascita");
|
||||
}
|
||||
else {
|
||||
this.Adapter.DeleteCommand.Parameters[4].Value = ((string)(Original_LuogoNascita));
|
||||
}
|
||||
if ((Original_Sesso == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Sesso");
|
||||
}
|
||||
else {
|
||||
this.Adapter.DeleteCommand.Parameters[5].Value = ((string)(Original_Sesso));
|
||||
}
|
||||
if ((Original_CodF == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_CodF");
|
||||
}
|
||||
else {
|
||||
this.Adapter.DeleteCommand.Parameters[4].Value = ((string)(Original_CodF));
|
||||
this.Adapter.DeleteCommand.Parameters[6].Value = ((string)(Original_CodF));
|
||||
}
|
||||
if ((Original_Indirizzo == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Indirizzo");
|
||||
}
|
||||
else {
|
||||
this.Adapter.DeleteCommand.Parameters[7].Value = ((string)(Original_Indirizzo));
|
||||
}
|
||||
if ((Original_Eta.HasValue == true)) {
|
||||
this.Adapter.DeleteCommand.Parameters[8].Value = ((object)(0));
|
||||
this.Adapter.DeleteCommand.Parameters[9].Value = ((byte)(Original_Eta.Value));
|
||||
}
|
||||
else {
|
||||
this.Adapter.DeleteCommand.Parameters[8].Value = ((object)(1));
|
||||
this.Adapter.DeleteCommand.Parameters[9].Value = global::System.DBNull.Value;
|
||||
}
|
||||
global::System.Data.ConnectionState previousConnectionState = this.Adapter.DeleteCommand.Connection.State;
|
||||
if (((this.Adapter.DeleteCommand.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
@@ -4529,7 +4703,7 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
[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 Cognome, string Nome, System.DateTime DataNasc, string CodF) {
|
||||
public virtual int Insert(string Cognome, string Nome, System.DateTime DataNasc, string LuogoNascita, string Sesso, string CodF, string Indirizzo) {
|
||||
if ((Cognome == null)) {
|
||||
throw new global::System.ArgumentNullException("Cognome");
|
||||
}
|
||||
@@ -4543,11 +4717,29 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
this.Adapter.InsertCommand.Parameters[1].Value = ((string)(Nome));
|
||||
}
|
||||
this.Adapter.InsertCommand.Parameters[2].Value = ((System.DateTime)(DataNasc));
|
||||
if ((LuogoNascita == null)) {
|
||||
throw new global::System.ArgumentNullException("LuogoNascita");
|
||||
}
|
||||
else {
|
||||
this.Adapter.InsertCommand.Parameters[3].Value = ((string)(LuogoNascita));
|
||||
}
|
||||
if ((Sesso == null)) {
|
||||
throw new global::System.ArgumentNullException("Sesso");
|
||||
}
|
||||
else {
|
||||
this.Adapter.InsertCommand.Parameters[4].Value = ((string)(Sesso));
|
||||
}
|
||||
if ((CodF == null)) {
|
||||
throw new global::System.ArgumentNullException("CodF");
|
||||
}
|
||||
else {
|
||||
this.Adapter.InsertCommand.Parameters[3].Value = ((string)(CodF));
|
||||
this.Adapter.InsertCommand.Parameters[5].Value = ((string)(CodF));
|
||||
}
|
||||
if ((Indirizzo == null)) {
|
||||
throw new global::System.ArgumentNullException("Indirizzo");
|
||||
}
|
||||
else {
|
||||
this.Adapter.InsertCommand.Parameters[6].Value = ((string)(Indirizzo));
|
||||
}
|
||||
global::System.Data.ConnectionState previousConnectionState = this.Adapter.InsertCommand.Connection.State;
|
||||
if (((this.Adapter.InsertCommand.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
@@ -4569,7 +4761,24 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
[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 Cognome, string Nome, System.DateTime DataNasc, string CodF, int Original_IdxPaziente, string Original_Cognome, string Original_Nome, System.DateTime Original_DataNasc, string Original_CodF, int IdxPaziente) {
|
||||
public virtual int Update(
|
||||
string Cognome,
|
||||
string Nome,
|
||||
System.DateTime DataNasc,
|
||||
string LuogoNascita,
|
||||
string Sesso,
|
||||
string CodF,
|
||||
string Indirizzo,
|
||||
int Original_IdxPaziente,
|
||||
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<byte> Original_Eta,
|
||||
int IdxPaziente) {
|
||||
if ((Cognome == null)) {
|
||||
throw new global::System.ArgumentNullException("Cognome");
|
||||
}
|
||||
@@ -4583,33 +4792,77 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
this.Adapter.UpdateCommand.Parameters[1].Value = ((string)(Nome));
|
||||
}
|
||||
this.Adapter.UpdateCommand.Parameters[2].Value = ((System.DateTime)(DataNasc));
|
||||
if ((LuogoNascita == null)) {
|
||||
throw new global::System.ArgumentNullException("LuogoNascita");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(LuogoNascita));
|
||||
}
|
||||
if ((Sesso == null)) {
|
||||
throw new global::System.ArgumentNullException("Sesso");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[4].Value = ((string)(Sesso));
|
||||
}
|
||||
if ((CodF == null)) {
|
||||
throw new global::System.ArgumentNullException("CodF");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[3].Value = ((string)(CodF));
|
||||
this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(CodF));
|
||||
}
|
||||
this.Adapter.UpdateCommand.Parameters[4].Value = ((int)(Original_IdxPaziente));
|
||||
if ((Indirizzo == null)) {
|
||||
throw new global::System.ArgumentNullException("Indirizzo");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[6].Value = ((string)(Indirizzo));
|
||||
}
|
||||
this.Adapter.UpdateCommand.Parameters[7].Value = ((int)(Original_IdxPaziente));
|
||||
if ((Original_Cognome == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Cognome");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[5].Value = ((string)(Original_Cognome));
|
||||
this.Adapter.UpdateCommand.Parameters[8].Value = ((string)(Original_Cognome));
|
||||
}
|
||||
if ((Original_Nome == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Nome");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[6].Value = ((string)(Original_Nome));
|
||||
this.Adapter.UpdateCommand.Parameters[9].Value = ((string)(Original_Nome));
|
||||
}
|
||||
this.Adapter.UpdateCommand.Parameters[10].Value = ((System.DateTime)(Original_DataNasc));
|
||||
if ((Original_LuogoNascita == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_LuogoNascita");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[11].Value = ((string)(Original_LuogoNascita));
|
||||
}
|
||||
if ((Original_Sesso == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Sesso");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[12].Value = ((string)(Original_Sesso));
|
||||
}
|
||||
this.Adapter.UpdateCommand.Parameters[7].Value = ((System.DateTime)(Original_DataNasc));
|
||||
if ((Original_CodF == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_CodF");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[8].Value = ((string)(Original_CodF));
|
||||
this.Adapter.UpdateCommand.Parameters[13].Value = ((string)(Original_CodF));
|
||||
}
|
||||
this.Adapter.UpdateCommand.Parameters[9].Value = ((int)(IdxPaziente));
|
||||
if ((Original_Indirizzo == null)) {
|
||||
throw new global::System.ArgumentNullException("Original_Indirizzo");
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[14].Value = ((string)(Original_Indirizzo));
|
||||
}
|
||||
if ((Original_Eta.HasValue == true)) {
|
||||
this.Adapter.UpdateCommand.Parameters[15].Value = ((object)(0));
|
||||
this.Adapter.UpdateCommand.Parameters[16].Value = ((byte)(Original_Eta.Value));
|
||||
}
|
||||
else {
|
||||
this.Adapter.UpdateCommand.Parameters[15].Value = ((object)(1));
|
||||
this.Adapter.UpdateCommand.Parameters[16].Value = global::System.DBNull.Value;
|
||||
}
|
||||
this.Adapter.UpdateCommand.Parameters[17].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)) {
|
||||
@@ -4630,8 +4883,24 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
[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 Cognome, string Nome, System.DateTime DataNasc, string CodF, int Original_IdxPaziente, string Original_Cognome, string Original_Nome, System.DateTime Original_DataNasc, string Original_CodF) {
|
||||
return this.Update(Cognome, Nome, DataNasc, CodF, Original_IdxPaziente, Original_Cognome, Original_Nome, Original_DataNasc, Original_CodF, Original_IdxPaziente);
|
||||
public virtual int Update(
|
||||
string Cognome,
|
||||
string Nome,
|
||||
System.DateTime DataNasc,
|
||||
string LuogoNascita,
|
||||
string Sesso,
|
||||
string CodF,
|
||||
string Indirizzo,
|
||||
int Original_IdxPaziente,
|
||||
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<byte> Original_Eta) {
|
||||
return this.Update(Cognome, Nome, DataNasc, LuogoNascita, Sesso, CodF, Indirizzo, Original_IdxPaziente, Original_Cognome, Original_Nome, Original_DataNasc, Original_LuogoNascita, Original_Sesso, Original_CodF, Original_Indirizzo, Original_Eta, Original_IdxPaziente);
|
||||
}
|
||||
|
||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||
@@ -4667,7 +4936,7 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
[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 Cognome, string Nome, global::System.Nullable<global::System.DateTime> DataNasc, string CodF) {
|
||||
public virtual int insertQuery(string Cognome, string Nome, global::System.Nullable<global::System.DateTime> DataNasc, string LuogoNascita, string CodF, string Indirizzo, string Sesso) {
|
||||
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[3];
|
||||
if ((Cognome == null)) {
|
||||
command.Parameters[1].Value = global::System.DBNull.Value;
|
||||
@@ -4687,11 +4956,29 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
else {
|
||||
command.Parameters[3].Value = global::System.DBNull.Value;
|
||||
}
|
||||
if ((CodF == null)) {
|
||||
if ((LuogoNascita == null)) {
|
||||
command.Parameters[4].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
command.Parameters[4].Value = ((string)(CodF));
|
||||
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));
|
||||
}
|
||||
global::System.Data.ConnectionState previousConnectionState = command.Connection.State;
|
||||
if (((command.Connection.State & global::System.Data.ConnectionState.Open)
|
||||
@@ -4714,7 +5001,7 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
[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<global::System.DateTime> DataNasc, string CodF, global::System.Nullable<int> Original_IdxPaziente) {
|
||||
public virtual int updateQuery(string Cognome, string Nome, global::System.Nullable<global::System.DateTime> DataNasc, string LuogoNascita, string CodF, string Indirizzo, string Sesso, global::System.Nullable<int> Original_IdxPaziente) {
|
||||
global::System.Data.SqlClient.SqlCommand command = this.CommandCollection[4];
|
||||
if ((Cognome == null)) {
|
||||
command.Parameters[1].Value = global::System.DBNull.Value;
|
||||
@@ -4734,17 +5021,35 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
else {
|
||||
command.Parameters[3].Value = global::System.DBNull.Value;
|
||||
}
|
||||
if ((CodF == null)) {
|
||||
if ((LuogoNascita == null)) {
|
||||
command.Parameters[4].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
command.Parameters[4].Value = ((string)(CodF));
|
||||
command.Parameters[4].Value = ((string)(LuogoNascita));
|
||||
}
|
||||
if ((Original_IdxPaziente.HasValue == true)) {
|
||||
command.Parameters[5].Value = ((int)(Original_IdxPaziente.Value));
|
||||
if ((CodF == null)) {
|
||||
command.Parameters[5].Value = global::System.DBNull.Value;
|
||||
}
|
||||
else {
|
||||
command.Parameters[5].Value = global::System.DBNull.Value;
|
||||
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 ((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)
|
||||
|
||||
@@ -12,49 +12,66 @@
|
||||
<DbSource ConnectionRef="MedPredConnectionString (Settings)" DbObjectName="MedPred.dbo.AnagPazienti" DbObjectType="Table" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="true" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetData" UserSourceName="Fill">
|
||||
<DeleteCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>DELETE FROM [dbo].[AnagPazienti] WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([Cognome] = @Original_Cognome) AND ([Nome] = @Original_Nome) AND ([DataNasc] = @Original_DataNasc) AND ([CodF] = @Original_CodF))</CommandText>
|
||||
<CommandText>DELETE FROM [AnagPazienti] WHERE (([IdxPaziente] = @Original_IdxPaziente) 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)))</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_IdxPaziente" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="IdxPaziente" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Cognome" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Cognome" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Nome" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Nome" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@Original_DataNasc" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="DataNasc" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_LuogoNascita" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="LuogoNascita" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiStringFixedLength" Direction="Input" ParameterName="@Original_Sesso" Precision="0" ProviderType="Char" Scale="0" Size="0" SourceColumn="Sesso" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_CodF" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodF" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Indirizzo" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Indirizzo" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Eta" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Eta" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Byte" Direction="Input" ParameterName="@Original_Eta" Precision="0" ProviderType="TinyInt" Scale="0" Size="0" SourceColumn="Eta" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</DeleteCommand>
|
||||
<InsertCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>INSERT INTO [dbo].[AnagPazienti] ([Cognome], [Nome], [DataNasc], [CodF]) VALUES (@Cognome, @Nome, @DataNasc, @CodF);
|
||||
SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPaziente = SCOPE_IDENTITY())</CommandText>
|
||||
<CommandText>INSERT INTO [AnagPazienti] ([Cognome], [Nome], [DataNasc], [LuogoNascita], [Sesso], [CodF], [Indirizzo]) VALUES (@Cognome, @Nome, @DataNasc, @LuogoNascita, @Sesso, @CodF, @Indirizzo);
|
||||
SELECT IdxPaziente, Cognome, Nome, DataNasc, LuogoNascita, Sesso, CodF, Indirizzo, Eta FROM AnagPazienti WHERE (IdxPaziente = SCOPE_IDENTITY())</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Cognome" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Cognome" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Nome" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Nome" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@DataNasc" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="DataNasc" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@LuogoNascita" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="LuogoNascita" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiStringFixedLength" Direction="Input" ParameterName="@Sesso" Precision="0" ProviderType="Char" Scale="0" Size="0" SourceColumn="Sesso" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CodF" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodF" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Indirizzo" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Indirizzo" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</InsertCommand>
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM dbo.AnagPazienti</CommandText>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="true">
|
||||
<CommandText>SELECT IdxPaziente, Cognome, Nome, DataNasc, LuogoNascita, Sesso, CodF, Indirizzo, Eta
|
||||
FROM AnagPazienti</CommandText>
|
||||
<Parameters />
|
||||
</DbCommand>
|
||||
</SelectCommand>
|
||||
<UpdateCommand>
|
||||
<DbCommand CommandType="Text" ModifiedByUser="false">
|
||||
<CommandText>UPDATE [dbo].[AnagPazienti] SET [Cognome] = @Cognome, [Nome] = @Nome, [DataNasc] = @DataNasc, [CodF] = @CodF WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([Cognome] = @Original_Cognome) AND ([Nome] = @Original_Nome) AND ([DataNasc] = @Original_DataNasc) AND ([CodF] = @Original_CodF));
|
||||
SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPaziente = @IdxPaziente)</CommandText>
|
||||
<CommandText>UPDATE [AnagPazienti] SET [Cognome] = @Cognome, [Nome] = @Nome, [DataNasc] = @DataNasc, [LuogoNascita] = @LuogoNascita, [Sesso] = @Sesso, [CodF] = @CodF, [Indirizzo] = @Indirizzo WHERE (([IdxPaziente] = @Original_IdxPaziente) 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)));
|
||||
SELECT IdxPaziente, Cognome, Nome, DataNasc, LuogoNascita, Sesso, CodF, Indirizzo, Eta FROM AnagPazienti WHERE (IdxPaziente = @IdxPaziente)</CommandText>
|
||||
<Parameters>
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Cognome" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Cognome" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Nome" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Nome" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@DataNasc" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="DataNasc" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@LuogoNascita" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="LuogoNascita" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiStringFixedLength" Direction="Input" ParameterName="@Sesso" Precision="0" ProviderType="Char" Scale="0" Size="0" SourceColumn="Sesso" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CodF" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodF" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Indirizzo" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Indirizzo" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@Original_IdxPaziente" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="IdxPaziente" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Cognome" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Cognome" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Nome" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Nome" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="DateTime" Direction="Input" ParameterName="@Original_DataNasc" Precision="0" ProviderType="DateTime" Scale="0" Size="0" SourceColumn="DataNasc" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_LuogoNascita" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="LuogoNascita" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="AnsiStringFixedLength" Direction="Input" ParameterName="@Original_Sesso" Precision="0" ProviderType="Char" Scale="0" Size="0" SourceColumn="Sesso" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_CodF" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodF" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="IdxPaziente" ColumnName="IdxPaziente" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@IdxPaziente" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="IdxPaziente" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@Original_Indirizzo" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="Indirizzo" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IsNull_Eta" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="Eta" SourceColumnNullMapping="true" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DbType="Byte" Direction="Input" ParameterName="@Original_Eta" Precision="0" ProviderType="TinyInt" Scale="0" Size="0" SourceColumn="Eta" SourceColumnNullMapping="false" SourceVersion="Original" />
|
||||
<Parameter AllowDbNull="false" AutogeneratedName="IdxPaziente" ColumnName="IdxPaziente" DataSourceName="MedPred.dbo.AnagPazienti" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@IdxPaziente" Precision="0" ProviderType="Int" Scale="0" Size="4" SourceColumn="IdxPaziente" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</UpdateCommand>
|
||||
@@ -66,6 +83,10 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
<Mapping SourceColumn="Nome" DataSetColumn="Nome" />
|
||||
<Mapping SourceColumn="DataNasc" DataSetColumn="DataNasc" />
|
||||
<Mapping SourceColumn="CodF" DataSetColumn="CodF" />
|
||||
<Mapping SourceColumn="LuogoNascita" DataSetColumn="LuogoNascita" />
|
||||
<Mapping SourceColumn="Sesso" DataSetColumn="Sesso" />
|
||||
<Mapping SourceColumn="Indirizzo" DataSetColumn="Indirizzo" />
|
||||
<Mapping SourceColumn="Eta" DataSetColumn="Eta" />
|
||||
</Mappings>
|
||||
<Sources>
|
||||
<DbSource ConnectionRef="MedPredConnectionString (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">
|
||||
@@ -99,7 +120,10 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Cognome" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Nome" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@DataNasc" Precision="23" ProviderType="DateTime" Scale="3" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@LuogoNascita" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@CodF" Precision="0" ProviderType="NVarChar" Scale="0" Size="20" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Indirizzo" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="char" DbType="AnsiStringFixedLength" Direction="Input" ParameterName="@Sesso" Precision="0" ProviderType="Char" Scale="0" Size="1" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
</Parameters>
|
||||
</DbCommand>
|
||||
</InsertCommand>
|
||||
@@ -113,7 +137,10 @@ SELECT IdxPaziente, Cognome, Nome, DataNasc, CodF FROM AnagPazienti WHERE (IdxPa
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Cognome" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Nome" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@DataNasc" Precision="23" ProviderType="DateTime" Scale="3" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@LuogoNascita" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@CodF" Precision="0" ProviderType="NVarChar" Scale="0" Size="20" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Indirizzo" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
|
||||
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="char" DbType="AnsiStringFixedLength" Direction="Input" ParameterName="@Sesso" Precision="0" ProviderType="Char" Scale="0" Size="1" 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>
|
||||
</DbCommand>
|
||||
@@ -362,8 +389,7 @@ SELECT IdxPaziente, DataVisita, FrazEiez, TDI, PlaccheVas FROM VisCardio WHERE (
|
||||
<Mapping SourceColumn="PlaccheVas" DataSetColumn="PlaccheVas" />
|
||||
</Mappings>
|
||||
<Sources>
|
||||
<DbSource ConnectionRef="MedPredConnectionString (Settings)" DbObjectName="MedPred.dbo.stp_
|
||||
_DeleteQuery" DbObjectType="StoredProcedure" 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">
|
||||
<DbSource ConnectionRef="MedPredConnectionString (Settings)" DbObjectName="MedPred.dbo.stp_
 _DeleteQuery" DbObjectType="StoredProcedure" 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">
|
||||
<SelectCommand>
|
||||
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
|
||||
<CommandText>dbo.stp_VCardio_DeleteQuery</CommandText>
|
||||
@@ -800,7 +826,7 @@ SELECT IdxPaziente, DataVisita, PaSis, PaDia, QR1, QR1_Mas, VO2, VO2_a, FC_QR1,
|
||||
<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" />
|
||||
@@ -826,10 +852,32 @@ SELECT IdxPaziente, DataVisita, PaSis, PaDia, QR1, QR1_Mas, VO2, VO2_a, FC_QR1,
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="LuogoNascita" msprop:Generator_ColumnVarNameInTable="columnLuogoNascita" msprop:Generator_ColumnPropNameInRow="LuogoNascita" msprop:Generator_ColumnPropNameInTable="LuogoNascitaColumn" msprop:Generator_UserColumnName="LuogoNascita">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Sesso" msprop:Generator_ColumnVarNameInTable="columnSesso" msprop:Generator_ColumnPropNameInRow="Sesso" msprop:Generator_ColumnPropNameInTable="SessoColumn" msprop:Generator_UserColumnName="Sesso">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="1" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Indirizzo" msprop:Generator_ColumnVarNameInTable="columnIndirizzo" msprop:Generator_ColumnPropNameInRow="Indirizzo" msprop:Generator_ColumnPropNameInTable="IndirizzoColumn" msprop:Generator_UserColumnName="Indirizzo">
|
||||
<xs:simpleType>
|
||||
<xs:restriction base="xs:string">
|
||||
<xs:maxLength value="50" />
|
||||
</xs:restriction>
|
||||
</xs:simpleType>
|
||||
</xs:element>
|
||||
<xs:element name="Eta" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnEta" msprop:Generator_ColumnPropNameInRow="Eta" msprop:Generator_ColumnPropNameInTable="EtaColumn" msprop:Generator_UserColumnName="Eta" type="xs:unsignedByte" minOccurs="0" />
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="VisGen" msprop:Generator_TableClassName="VisGenDataTable" msprop:Generator_TableVarName="tableVisGen" msprop:Generator_TablePropName="VisGen" msprop:Generator_RowDeletingName="VisGenRowDeleting" msprop:Generator_RowChangingName="VisGenRowChanging" msprop:Generator_RowEvHandlerName="VisGenRowChangeEventHandler" msprop:Generator_RowDeletedName="VisGenRowDeleted" msprop:Generator_UserTableName="VisGen" msprop:Generator_RowChangedName="VisGenRowChanged" msprop:Generator_RowEvArgName="VisGenRowChangeEvent" msprop:Generator_RowClassName="VisGenRow">
|
||||
<xs:element name="VisGen" msprop:Generator_TableClassName="VisGenDataTable" msprop:Generator_TableVarName="tableVisGen" msprop:Generator_RowChangedName="VisGenRowChanged" msprop:Generator_TablePropName="VisGen" msprop:Generator_RowDeletingName="VisGenRowDeleting" msprop:Generator_RowChangingName="VisGenRowChanging" msprop:Generator_RowEvHandlerName="VisGenRowChangeEventHandler" msprop:Generator_RowDeletedName="VisGenRowDeleted" msprop:Generator_RowClassName="VisGenRow" msprop:Generator_UserTableName="VisGen" msprop:Generator_RowEvArgName="VisGenRowChangeEvent">
|
||||
<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" />
|
||||
@@ -848,7 +896,7 @@ SELECT IdxPaziente, DataVisita, PaSis, PaDia, QR1, QR1_Mas, VO2, VO2_a, FC_QR1,
|
||||
</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" />
|
||||
@@ -861,7 +909,7 @@ SELECT IdxPaziente, DataVisita, PaSis, PaDia, QR1, QR1_Mas, VO2, VO2_a, FC_QR1,
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="VisCardio" msprop:Generator_TableClassName="VisCardioDataTable" msprop:Generator_TableVarName="tableVisCardio" msprop:Generator_RowChangedName="VisCardioRowChanged" msprop:Generator_TablePropName="VisCardio" msprop:Generator_RowDeletingName="VisCardioRowDeleting" msprop:Generator_RowChangingName="VisCardioRowChanging" msprop:Generator_RowEvHandlerName="VisCardioRowChangeEventHandler" msprop:Generator_RowDeletedName="VisCardioRowDeleted" msprop:Generator_RowClassName="VisCardioRow" msprop:Generator_UserTableName="VisCardio" msprop:Generator_RowEvArgName="VisCardioRowChangeEvent">
|
||||
<xs:element name="VisCardio" msprop:Generator_TableClassName="VisCardioDataTable" msprop:Generator_TableVarName="tableVisCardio" msprop:Generator_TablePropName="VisCardio" msprop:Generator_RowDeletingName="VisCardioRowDeleting" msprop:Generator_RowChangingName="VisCardioRowChanging" msprop:Generator_RowEvHandlerName="VisCardioRowChangeEventHandler" msprop:Generator_RowDeletedName="VisCardioRowDeleted" msprop:Generator_UserTableName="VisCardio" msprop:Generator_RowChangedName="VisCardioRowChanged" msprop:Generator_RowEvArgName="VisCardioRowChangeEvent" msprop:Generator_RowClassName="VisCardioRow">
|
||||
<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" />
|
||||
@@ -872,7 +920,7 @@ SELECT IdxPaziente, DataVisita, PaSis, PaDia, QR1, QR1_Mas, VO2, VO2_a, FC_QR1,
|
||||
</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" />
|
||||
@@ -891,7 +939,7 @@ SELECT IdxPaziente, DataVisita, PaSis, PaDia, QR1, QR1_Mas, VO2, VO2_a, FC_QR1,
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
<xs:element name="VisCiclo" msprop:Generator_TableClassName="VisCicloDataTable" msprop:Generator_TableVarName="tableVisCiclo" msprop:Generator_RowChangedName="VisCicloRowChanged" msprop:Generator_TablePropName="VisCiclo" msprop:Generator_RowDeletingName="VisCicloRowDeleting" msprop:Generator_RowChangingName="VisCicloRowChanging" msprop:Generator_RowEvHandlerName="VisCicloRowChangeEventHandler" msprop:Generator_RowDeletedName="VisCicloRowDeleted" msprop:Generator_RowClassName="VisCicloRow" msprop:Generator_UserTableName="VisCiclo" msprop:Generator_RowEvArgName="VisCicloRowChangeEvent">
|
||||
<xs:element name="VisCiclo" msprop:Generator_TableClassName="VisCicloDataTable" msprop:Generator_TableVarName="tableVisCiclo" msprop:Generator_TablePropName="VisCiclo" msprop:Generator_RowDeletingName="VisCicloRowDeleting" msprop:Generator_RowChangingName="VisCicloRowChanging" msprop:Generator_RowEvHandlerName="VisCicloRowChangeEventHandler" msprop:Generator_RowDeletedName="VisCicloRowDeleted" msprop:Generator_UserTableName="VisCiclo" msprop:Generator_RowChangedName="VisCicloRowChanged" msprop:Generator_RowEvArgName="VisCicloRowChangeEvent" msprop:Generator_RowClassName="VisCicloRow">
|
||||
<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" />
|
||||
@@ -948,10 +996,10 @@ SELECT IdxPaziente, DataVisita, PaSis, PaDia, QR1, QR1_Mas, VO2, VO2_a, FC_QR1,
|
||||
</xs:element>
|
||||
<xs:annotation>
|
||||
<xs:appinfo>
|
||||
<msdata:Relationship name="FK_VisGen_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisGen" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisGen" msprop:Generator_ChildPropName="GetVisGenRows" msprop:Generator_UserRelationName="FK_VisGen_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisGen_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
|
||||
<msdata:Relationship name="FK_VisCardio_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisCardio" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisCardio" msprop:Generator_ChildPropName="GetVisCardioRows" msprop:Generator_UserRelationName="FK_VisCardio_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisCardio_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_RelationVarName="relationFK_VisClinGen_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
|
||||
<msdata:Relationship name="FK_VisCiclo_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisCiclo" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisCiclo" msprop:Generator_ChildPropName="GetVisCicloRows" msprop:Generator_UserRelationName="FK_VisCiclo_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisCiclo_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
|
||||
<msdata:Relationship name="FK_VisGen_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisGen" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisGen" msprop:Generator_ChildPropName="GetVisGenRows" msprop:Generator_UserRelationName="FK_VisGen_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisGen_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
|
||||
<msdata:Relationship name="FK_VisCardio_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisCardio" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisCardio" msprop:Generator_ChildPropName="GetVisCardioRows" msprop:Generator_UserRelationName="FK_VisCardio_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisCardio_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
|
||||
<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_VisCiclo_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisCiclo" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisCiclo" msprop:Generator_ChildPropName="GetVisCicloRows" msprop:Generator_UserRelationName="FK_VisCiclo_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisCiclo_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
|
||||
</xs:appinfo>
|
||||
</xs:annotation>
|
||||
</xs:schema>
|
||||
@@ -4,68 +4,64 @@
|
||||
Changes to this file may cause incorrect behavior and will be lost if
|
||||
the code is regenerated.
|
||||
</autogenerated>-->
|
||||
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="124" ViewPortY="46" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||
<DiagramLayout xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" ex:showrelationlabel="False" ViewPortX="193" ViewPortY="46" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
|
||||
<Shapes>
|
||||
<Shape ID="DesignTable:AnagPazienti" ZOrder="10" X="698" Y="94" Height="248" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:VisGen" ZOrder="7" X="1060" Y="56" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:ElencoVisite" ZOrder="8" X="286" Y="83" Height="210" Width="260" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
|
||||
<Shape ID="DesignTable:VisCardio" ZOrder="6" X="700" Y="425" Height="286" Width="200" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:VisLab" ZOrder="4" X="277" Y="383" Height="381" Width="200" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:VisCiclo" ZOrder="1" X="1095" Y="477" Height="440" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="313" />
|
||||
<Shape ID="DesignTable:AnagPazienti" ZOrder="1" X="674" Y="64" Height="324" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
|
||||
<Shape ID="DesignTable:VisGen" ZOrder="8" X="1060" Y="56" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:ElencoVisite" ZOrder="9" X="286" Y="83" Height="210" Width="260" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
|
||||
<Shape ID="DesignTable:VisCardio" ZOrder="7" X="724" Y="445" Height="286" Width="200" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
|
||||
<Shape ID="DesignTable:VisLab" ZOrder="5" X="277" Y="383" Height="381" Width="200" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
|
||||
<Shape ID="DesignTable:VisCiclo" ZOrder="2" X="1095" Y="477" Height="440" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="313" />
|
||||
</Shapes>
|
||||
<Connectors>
|
||||
<Connector ID="DesignRelation:FK_VisGen_AnagPazienti" ZOrder="9" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_VisGen_AnagPazienti" ZOrder="10" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>998</X>
|
||||
<Y>206</Y>
|
||||
<X>974</X>
|
||||
<Y>176</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
<X>1060</X>
|
||||
<Y>206</Y>
|
||||
<Y>176</Y>
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_VisCardio_AnagPazienti" ZOrder="5" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_VisCardio_AnagPazienti" ZOrder="6" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>908</X>
|
||||
<Y>342</Y>
|
||||
<X>824</X>
|
||||
<Y>388</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
<X>908</X>
|
||||
<Y>442</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
<X>900</X>
|
||||
<Y>442</Y>
|
||||
<X>824</X>
|
||||
<Y>445</Y>
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_VisClinGen_AnagPazienti" ZOrder="3" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_VisClinGen_AnagPazienti" ZOrder="4" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>715</X>
|
||||
<Y>342</Y>
|
||||
<X>691</X>
|
||||
<Y>388</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
<X>715</X>
|
||||
<Y>400</Y>
|
||||
<X>691</X>
|
||||
<Y>426</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
<X>477</X>
|
||||
<Y>400</Y>
|
||||
<Y>426</Y>
|
||||
</Point>
|
||||
</RoutePoints>
|
||||
</Connector>
|
||||
<Connector ID="DesignRelation:FK_VisCiclo_AnagPazienti" ZOrder="2" LineWidth="11">
|
||||
<Connector ID="DesignRelation:FK_VisCiclo_AnagPazienti" ZOrder="3" LineWidth="11">
|
||||
<RoutePoints>
|
||||
<Point>
|
||||
<X>981</X>
|
||||
<Y>342</Y>
|
||||
<X>957</X>
|
||||
<Y>388</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
<X>981</X>
|
||||
<X>957</X>
|
||||
<Y>494</Y>
|
||||
</Point>
|
||||
<Point>
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Reference in New Issue
Block a user