imbastista gestione edit e salvataggio filtri x pazienti

This commit is contained in:
Samuele E. Locatelli
2017-03-30 16:23:36 +02:00
parent 374cb098bd
commit a8badfdff1
9 changed files with 1284 additions and 70 deletions
+26 -3
View File
@@ -24,6 +24,28 @@ namespace ScheMe
/// ultimo comando letto da link button
/// </summary>
public string lastCmd { get; set; }
protected string selFiltroUno
{
get
{
return ddlFiltUno.SelectedValue;
}
set
{
ddlFiltUno.SelectedValue = value;
}
}
protected string selFiltroDue
{
get
{
return ddlFiltDue.SelectedValue;
}
set
{
ddlFiltDue.SelectedValue = value;
}
}
/// <summary>
/// gestione evento novo record
/// </summary>
@@ -32,7 +54,7 @@ namespace ScheMe
protected void btnNew_Click(object sender, EventArgs e)
{
// richiamo pagina di edit senza parametri x metodo NEW
Response.Redirect("AccettazioneEdit");
Response.Redirect(string.Format("AccettazioneEdit?selFiltUno={0}&selFiltDue={1}", selFiltroUno, selFiltroDue));
}
/// <summary>
/// evento selezione paziente...
@@ -54,8 +76,9 @@ namespace ScheMe
{ }
if (lastCmd == "edit")
{
// richiamo pagina con edit del record richiesto
Response.Redirect(string.Format("AccettazioneEdit?IdxPaziente={0}", grView.SelectedDataKey["IdxPaziente"]));
// richiamo pagina con edit del record richiesto, compreso suoi filtri...
Response.Redirect(string.Format("AccettazioneEdit?IdxPaziente={0}&selFiltUno={1}&selFiltDue={2}", IdxPaziente, selFiltroUno, selFiltroDue));
//Response.Redirect(string.Format("AccettazioneEdit?IdxPaziente={0}", grView.SelectedDataKey["IdxPaziente"]));
}
}
+28 -4
View File
@@ -4,6 +4,30 @@
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" runat="server">
<div style="font-size: 0.8em;">
<div class="ui-grid-b">
<div class="ui-block-a">
<asp:DropDownList runat="server" ID="ddlFiltUno" DataSourceID="odsFiltUno" DataTextField="label" DataValueField="value" AutoPostBack="True" OnSelectedIndexChanged="ddlFiltUno_SelectedIndexChanged">
</asp:DropDownList>
<asp:ObjectDataSource runat="server" ID="odsFiltUno" OldValuesParameterFormatString="original_{0}" SelectMethod="getByConditio" TypeName="ScheMe_Data.DS_UtilityTableAdapters.v_selLabelTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="hfMainLblCond" DefaultValue="*" Name="conditio" PropertyName="Value" Type="String" />
</SelectParameters>
</asp:ObjectDataSource>
<asp:HiddenField runat="server" ID="hfMainLblCond" />
</div>
<div class="ui-block-b">
<asp:DropDownList runat="server" ID="ddlFiltDue" DataSourceID="odsFiltDue" DataTextField="label" DataValueField="value" AutoPostBack="True" OnSelectedIndexChanged="ddlFiltDue_SelectedIndexChanged">
</asp:DropDownList>
<asp:ObjectDataSource runat="server" ID="odsFiltDue" OldValuesParameterFormatString="original_{0}" SelectMethod="getByConditio" TypeName="ScheMe_Data.DS_UtilityTableAdapters.v_selLabelTableAdapter">
<SelectParameters>
<asp:ControlParameter ControlID="ddlFiltUno" DefaultValue="*" Name="conditio" PropertyName="SelectedValue" Type="String" />
</SelectParameters>
</asp:ObjectDataSource>
</div>
<div class="ui-block-c">
<asp:Button runat="server" ID="btnSave" CssClass="btn btn-success" Text="Salva Gruppo" Width="100%" Enabled="false" OnClick="btnSave_Click" />
</div>
</div>
<asp:FormView ID="frmView" runat="server" DataSourceID="ods" RenderOuterTable="False" OnModeChanged="frmView_ModeChanged">
<ItemTemplate>
ITEM - EMPTY
@@ -51,7 +75,7 @@
<label for="textarea2">Telefono</label>
<asp:TextBox runat="server" ID="txtRecTel" Text='<%# Bind("RecTel") %>' placeholder="Telefono" data-clear-btn="false" />
</li>
<li class="ui-field-contain">
<li class="ui-field-contain">
<label for="textarea2">Altezza</label>
<asp:TextBox runat="server" ID="txtAltezza" Text='<%# Bind("Altezza") %>' placeholder="Altezza" data-clear-btn="false" />
</li>
@@ -108,7 +132,7 @@
</li>
<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 gg/mm/aaaa" data-role="date" data-clear-btn="false" />
<asp:TextBox runat="server" ID="txtDataNasc" Text='<%# Bind("DataNasc", "{0:dd/MM/yyyy}") %>' data-role="date" data-clear-btn="false" placeholder="Data di Nascita gg/mm/aaaa" />
</li>
<li class="ui-field-contain">
<label for="textarea2">Luogo Nascita</label>
@@ -130,7 +154,7 @@
<label for="textarea2">Telefono</label>
<asp:TextBox runat="server" ID="txtRecTel" Text='<%# Bind("RecTel") %>' placeholder="Telefono" data-clear-btn="false" />
</li>
<li class="ui-field-contain">
<li class="ui-field-contain">
<label for="textarea2">Altezza</label>
<asp:TextBox runat="server" ID="txtAltezza" Text='<%# Bind("Altezza") %>' placeholder="Altezza" data-clear-btn="false" />
</li>
@@ -167,7 +191,7 @@
</div>
</EditItemTemplate>
</asp:FormView>
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="Original_{0}" SelectMethod="getByKey" TypeName="ScheMe_Data.DS_ApplicazioneTableAdapters.AnagPazientiTableAdapter" DeleteMethod="deleteQuery" InsertMethod="insertQuery" UpdateMethod="updateQuery">
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="Original_{0}" SelectMethod="getByKey" TypeName="ScheMe_Data.DS_ApplicazioneTableAdapters.AnagPazientiTableAdapter" DeleteMethod="deleteQuery" InsertMethod="insertQuery" UpdateMethod="updateQuery" OnInserted="ods_Inserted">
<DeleteParameters>
<asp:Parameter Name="Original_IdxPaziente" Type="Int32" DefaultValue="0" />
</DeleteParameters>
+139 -3
View File
@@ -1,4 +1,6 @@
using System;
using ScheMe_Data;
using SteamWare;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
@@ -9,20 +11,108 @@ namespace ScheMe
{
public partial class AccettazioneEdit : System.Web.UI.Page
{
protected int IdxPaziente
{
get
{
int answ = 0;
try
{
answ = memLayer.ML.QSI("IdxPaziente");
}
catch
{ }
return answ;
}
}
protected string selFiltUno
{
get
{
string answ = "";
try
{
answ = memLayer.ML.QSS("selFiltUno");
}
catch
{ }
return answ;
}
}
protected string selFiltDue
{
get
{
string answ = "";
try
{
answ = memLayer.ML.QSS("selFiltDue");
}
catch
{ }
return answ;
}
}
protected void Page_Load(object sender, EventArgs e)
{
if (!Page.IsPostBack)
{
// verifico se sia con parametro paziente o NEW...
string IdxPaziente = Request.QueryString["IdxPaziente"];
if (IdxPaziente == "" || IdxPaziente == null)
if (IdxPaziente == 0)
{
frmView.ChangeMode(FormViewMode.Insert);
btnSave.Visible = false;
}
else
{
frmView.ChangeMode(FormViewMode.Edit);
btnSave.Visible = true;
}
// aggiungo valore prefiltraggio base
hfMainLblCond.Value = memLayer.ML.AppConf["BaseLabel"];
setFilters();
}
}
private void setFilters()
{
// in prima istanza: blocco filtri...
ddlFiltUno.Enabled = false;
ddlFiltDue.Enabled = false;
string currFiltUno = selFiltUno;
string currFiltDue = selFiltDue;
// se ho il paziente verifico ed i filtri fossero "*"...
if (IdxPaziente != 0)
{
if (currFiltUno == "*" || currFiltDue == "*")
{
//... li recupero da DB... prima il filtro livello 1... se c'è...
DS_Applicazione.Pazienti2LabelsDataTable tab = DtProxy.man.taP2L.getByIdxPaz(IdxPaziente, hfMainLblCond.Value);
// se trovo procedo...
if (tab.Rows.Count > 0)
{
currFiltUno = tab[0].CodLabel;
// ora stesso controllo x filtro 2...
tab = DtProxy.man.taP2L.getByIdxPaz(IdxPaziente, currFiltUno);
if (tab.Rows.Count > 0)
{
currFiltDue = tab[0].CodLabel;
}
}
}
}
// ora procedo!
if (currFiltUno != "")
{
ddlFiltUno.SelectedValue = currFiltUno;
ddlFiltUno.Enabled = true;
}
if (currFiltDue != "")
{
ddlFiltDue.Enabled = (currFiltUno != "*");
ddlFiltDue.DataBind();
ddlFiltDue.SelectedValue = currFiltDue;
ddlFiltDue.Enabled = true;
}
}
@@ -34,5 +124,51 @@ namespace ScheMe
}
}
protected void ddlFiltUno_SelectedIndexChanged(object sender, EventArgs e)
{
// aggiorna seconda DDL DUE --SE valore !="*"
ddlFiltDue.Enabled = (ddlFiltUno.SelectedValue != "*");
ddlFiltDue.DataBind();
btnSave.Enabled = true;
}
protected void ddlFiltDue_SelectedIndexChanged(object sender, EventArgs e)
{
btnSave.Enabled = true;
}
protected void ods_Inserted(object sender, ObjectDataSourceStatusEventArgs e)
{
int idxPaziente = 0;
try
{
idxPaziente = Convert.ToInt32(e.ReturnValue.ToString());
}
catch (Exception exc)
{
logger.lg.scriviLog(string.Format("Errore in redirect post creazione paziente{0}{1}", Environment.NewLine, exc));
}
if (idxPaziente > 0)
{
// se sono selezionati valori filtraggio --> li salvo!
salvaGruppi(idxPaziente);
// rimando a pagina corrente in edit paziente...
Response.Redirect(string.Format("AccettazioneEdit?IdxPaziente={0}&selFiltUno={1}&selFiltDue={2}", idxPaziente, ddlFiltUno.SelectedValue, ddlFiltDue.SelectedValue));
}
}
protected void btnSave_Click(object sender, EventArgs e)
{
salvaGruppi(IdxPaziente);
}
private void salvaGruppi(int currIdxPaz)
{
// elimino gruppi precedenti x utente...
DtProxy.man.taP2L.deleteByIdxPaz(currIdxPaz);
// salvo i gruppi selezionati...
DtProxy.man.taP2L.Insert(currIdxPaz, ddlFiltUno.SelectedValue);
DtProxy.man.taP2L.Insert(currIdxPaz, ddlFiltDue.SelectedValue);
}
}
}
+54
View File
@@ -12,6 +12,60 @@ namespace ScheMe {
public partial class AccettazioneEdit {
/// <summary>
/// ddlFiltUno control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.DropDownList ddlFiltUno;
/// <summary>
/// odsFiltUno control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.ObjectDataSource odsFiltUno;
/// <summary>
/// hfMainLblCond control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.HiddenField hfMainLblCond;
/// <summary>
/// ddlFiltDue control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.DropDownList ddlFiltDue;
/// <summary>
/// odsFiltDue control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.ObjectDataSource odsFiltDue;
/// <summary>
/// btnSave control.
/// </summary>
/// <remarks>
/// Auto-generated field.
/// To modify move field declaration from designer file to code-behind file.
/// </remarks>
protected global::System.Web.UI.WebControls.Button btnSave;
/// <summary>
/// frmView control.
/// </summary>
File diff suppressed because it is too large Load Diff
+114 -22
View File
@@ -164,7 +164,7 @@ SELECT IdxPaziente, Gruppo, Cognome, Nome, DataNasc, LuogoNascita, Sesso, Altezz
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="" DbObjectType="Unknown" GenerateShortCommands="true" GeneratorSourceName="insertQuery" Modifier="Public" Name="insertQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy1" UserSourceName="insertQuery">
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="" DbObjectType="Unknown" GenerateShortCommands="true" GeneratorSourceName="insertQuery" Modifier="Public" Name="insertQuery" QueryType="Scalar" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy1" UserSourceName="insertQuery">
<InsertCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_AP_insertQuery</CommandText>
@@ -1777,6 +1777,78 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
</DbSource>
</Sources>
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="Pazienti2LabelsTableAdapter" GeneratorDataComponentClassName="Pazienti2LabelsTableAdapter" Name="Pazienti2Labels" UserDataComponentName="Pazienti2LabelsTableAdapter">
<MainSource>
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="ScheMe.dbo.Pazienti2Labels" 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].[Pazienti2Labels] WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([CodLabel] = @Original_CodLabel))</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_CodLabel" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodLabel" SourceColumnNullMapping="false" SourceVersion="Original" />
</Parameters>
</DbCommand>
</DeleteCommand>
<InsertCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>INSERT INTO [dbo].[Pazienti2Labels] ([IdxPaziente], [CodLabel]) VALUES (@IdxPaziente, @CodLabel);
SELECT IdxPaziente, CodLabel FROM Pazienti2Labels WHERE (CodLabel = @CodLabel) AND (IdxPaziente = @IdxPaziente)</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IdxPaziente" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="IdxPaziente" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CodLabel" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodLabel" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</InsertCommand>
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT IdxPaziente, CodLabel FROM dbo.Pazienti2Labels</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
<UpdateCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>UPDATE [dbo].[Pazienti2Labels] SET [IdxPaziente] = @IdxPaziente, [CodLabel] = @CodLabel WHERE (([IdxPaziente] = @Original_IdxPaziente) AND ([CodLabel] = @Original_CodLabel));
SELECT IdxPaziente, CodLabel FROM Pazienti2Labels WHERE (CodLabel = @CodLabel) AND (IdxPaziente = @IdxPaziente)</CommandText>
<Parameters>
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="Int32" Direction="Input" ParameterName="@IdxPaziente" Precision="0" ProviderType="Int" Scale="0" Size="0" SourceColumn="IdxPaziente" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="false" AutogeneratedName="" DataSourceName="" DbType="String" Direction="Input" ParameterName="@CodLabel" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodLabel" 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_CodLabel" Precision="0" ProviderType="NVarChar" Scale="0" Size="0" SourceColumn="CodLabel" SourceColumnNullMapping="false" SourceVersion="Original" />
</Parameters>
</DbCommand>
</UpdateCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="IdxPaziente" DataSetColumn="IdxPaziente" />
<Mapping SourceColumn="CodLabel" DataSetColumn="CodLabel" />
</Mappings>
<Sources>
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="ScheMe.dbo.stp_P2F_deleteByIdxPaz" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="deleteByIdxPaz" Modifier="Public" Name="deleteByIdxPaz" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="deleteByIdxPaz">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_P2F_deleteByIdxPaz</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@IdxPaziente" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="ScheMe.dbo.stp_P2F_getByIdxPaz" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByIdxPaz" GetMethodModifier="Public" GetMethodName="getByIdxPaz" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByIdxPaz" UserSourceName="getByIdxPaz">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_P2F_getByIdxPaz</CommandText>
<Parameters>
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="ReturnValue" ParameterName="@RETURN_VALUE" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@IdxPaziente" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@CodLabelBase" Precision="0" ProviderType="NVarChar" Scale="0" Size="50" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</Sources>
</TableAdapter>
</Tables>
<Sources />
</DataSource>
@@ -1785,7 +1857,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
<xs:element name="DS_Applicazione" msdata:IsDataSet="true" msdata:UseCurrentLocale="true" msprop:EnableTableAdapterManager="true" msprop:Generator_DataSetName="DS_Applicazione" msprop:Generator_UserDSName="DS_Applicazione">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="AnagPazienti" msprop:Generator_TableClassName="AnagPazientiDataTable" msprop:Generator_TableVarName="tableAnagPazienti" msprop:Generator_RowChangedName="AnagPazientiRowChanged" msprop:Generator_TablePropName="AnagPazienti" msprop:Generator_RowDeletingName="AnagPazientiRowDeleting" msprop:Generator_RowChangingName="AnagPazientiRowChanging" msprop:Generator_RowEvHandlerName="AnagPazientiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagPazientiRowDeleted" msprop:Generator_RowClassName="AnagPazientiRow" msprop:Generator_UserTableName="AnagPazienti" msprop:Generator_RowEvArgName="AnagPazientiRowChangeEvent">
<xs:element name="AnagPazienti" msprop:Generator_TableClassName="AnagPazientiDataTable" msprop:Generator_TableVarName="tableAnagPazienti" msprop:Generator_TablePropName="AnagPazienti" msprop:Generator_RowDeletingName="AnagPazientiRowDeleting" msprop:Generator_RowChangingName="AnagPazientiRowChanging" msprop:Generator_RowEvHandlerName="AnagPazientiRowChangeEventHandler" msprop:Generator_RowDeletedName="AnagPazientiRowDeleted" msprop:Generator_UserTableName="AnagPazienti" msprop:Generator_RowChangedName="AnagPazientiRowChanged" msprop:Generator_RowEvArgName="AnagPazientiRowChangeEvent" msprop:Generator_RowClassName="AnagPazientiRow">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxPaziente" msdata:ReadOnly="true" msdata:AutoIncrement="true" msdata:AutoIncrementSeed="-1" msdata:AutoIncrementStep="-1" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
@@ -1866,7 +1938,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="ElencoVisite" msprop:Generator_TableClassName="ElencoVisiteDataTable" msprop:Generator_TableVarName="tableElencoVisite" msprop:Generator_TablePropName="ElencoVisite" msprop:Generator_RowDeletingName="ElencoVisiteRowDeleting" msprop:Generator_RowChangingName="ElencoVisiteRowChanging" msprop:Generator_RowEvHandlerName="ElencoVisiteRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoVisiteRowDeleted" msprop:Generator_UserTableName="ElencoVisite" msprop:Generator_RowChangedName="ElencoVisiteRowChanged" msprop:Generator_RowEvArgName="ElencoVisiteRowChangeEvent" msprop:Generator_RowClassName="ElencoVisiteRow">
<xs:element name="ElencoVisite" msprop:Generator_TableClassName="ElencoVisiteDataTable" msprop:Generator_TableVarName="tableElencoVisite" msprop:Generator_RowChangedName="ElencoVisiteRowChanged" msprop:Generator_TablePropName="ElencoVisite" msprop:Generator_RowDeletingName="ElencoVisiteRowDeleting" msprop:Generator_RowChangingName="ElencoVisiteRowChanging" msprop:Generator_RowEvHandlerName="ElencoVisiteRowChangeEventHandler" msprop:Generator_RowDeletedName="ElencoVisiteRowDeleted" msprop:Generator_RowClassName="ElencoVisiteRow" msprop:Generator_UserTableName="ElencoVisite" msprop:Generator_RowEvArgName="ElencoVisiteRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="DataVisita" msprop:Generator_ColumnVarNameInTable="columnDataVisita" msprop:Generator_ColumnPropNameInRow="DataVisita" msprop:Generator_ColumnPropNameInTable="DataVisitaColumn" msprop:Generator_UserColumnName="DataVisita" type="xs:dateTime" />
@@ -1882,7 +1954,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="VisLab" msprop:Generator_TableClassName="VisLabDataTable" msprop:Generator_TableVarName="tableVisLab" msprop:Generator_RowChangedName="VisLabRowChanged" msprop:Generator_TablePropName="VisLab" msprop:Generator_RowDeletingName="VisLabRowDeleting" msprop:Generator_RowChangingName="VisLabRowChanging" msprop:Generator_RowEvHandlerName="VisLabRowChangeEventHandler" msprop:Generator_RowDeletedName="VisLabRowDeleted" msprop:Generator_RowClassName="VisLabRow" msprop:Generator_UserTableName="VisLab" msprop:Generator_RowEvArgName="VisLabRowChangeEvent">
<xs:element name="VisLab" msprop:Generator_TableClassName="VisLabDataTable" msprop:Generator_TableVarName="tableVisLab" msprop:Generator_TablePropName="VisLab" msprop:Generator_RowDeletingName="VisLabRowDeleting" msprop:Generator_RowChangingName="VisLabRowChanging" msprop:Generator_RowEvHandlerName="VisLabRowChangeEventHandler" msprop:Generator_RowDeletedName="VisLabRowDeleted" msprop:Generator_UserTableName="VisLab" msprop:Generator_RowChangedName="VisLabRowChanged" msprop:Generator_RowEvArgName="VisLabRowChangeEvent" msprop:Generator_RowClassName="VisLabRow">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
@@ -1905,7 +1977,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="VisAnamCli" msprop:Generator_TableClassName="VisAnamCliDataTable" msprop:Generator_TableVarName="tableVisAnamCli" msprop:Generator_RowChangedName="VisAnamCliRowChanged" msprop:Generator_TablePropName="VisAnamCli" msprop:Generator_RowDeletingName="VisAnamCliRowDeleting" msprop:Generator_RowChangingName="VisAnamCliRowChanging" msprop:Generator_RowEvHandlerName="VisAnamCliRowChangeEventHandler" msprop:Generator_RowDeletedName="VisAnamCliRowDeleted" msprop:Generator_RowClassName="VisAnamCliRow" msprop:Generator_UserTableName="VisAnamCli" msprop:Generator_RowEvArgName="VisAnamCliRowChangeEvent">
<xs:element name="VisAnamCli" msprop:Generator_TableClassName="VisAnamCliDataTable" msprop:Generator_TableVarName="tableVisAnamCli" msprop:Generator_TablePropName="VisAnamCli" msprop:Generator_RowDeletingName="VisAnamCliRowDeleting" msprop:Generator_RowChangingName="VisAnamCliRowChanging" msprop:Generator_RowEvHandlerName="VisAnamCliRowChangeEventHandler" msprop:Generator_RowDeletedName="VisAnamCliRowDeleted" msprop:Generator_UserTableName="VisAnamCli" msprop:Generator_RowChangedName="VisAnamCliRowChanged" msprop:Generator_RowEvArgName="VisAnamCliRowChangeEvent" msprop:Generator_RowClassName="VisAnamCliRow">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
@@ -1928,7 +2000,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="VisCardioPol" msprop:Generator_TableClassName="VisCardioPolDataTable" msprop:Generator_TableVarName="tableVisCardioPol" msprop:Generator_TablePropName="VisCardioPol" msprop:Generator_RowDeletingName="VisCardioPolRowDeleting" msprop:Generator_RowChangingName="VisCardioPolRowChanging" msprop:Generator_RowEvHandlerName="VisCardioPolRowChangeEventHandler" msprop:Generator_RowDeletedName="VisCardioPolRowDeleted" msprop:Generator_UserTableName="VisCardioPol" msprop:Generator_RowChangedName="VisCardioPolRowChanged" msprop:Generator_RowEvArgName="VisCardioPolRowChangeEvent" msprop:Generator_RowClassName="VisCardioPolRow">
<xs:element name="VisCardioPol" msprop:Generator_TableClassName="VisCardioPolDataTable" msprop:Generator_TableVarName="tableVisCardioPol" msprop:Generator_RowChangedName="VisCardioPolRowChanged" msprop:Generator_TablePropName="VisCardioPol" msprop:Generator_RowDeletingName="VisCardioPolRowDeleting" msprop:Generator_RowChangingName="VisCardioPolRowChanging" msprop:Generator_RowEvHandlerName="VisCardioPolRowChangeEventHandler" msprop:Generator_RowDeletedName="VisCardioPolRowDeleted" msprop:Generator_RowClassName="VisCardioPolRow" msprop:Generator_UserTableName="VisCardioPol" msprop:Generator_RowEvArgName="VisCardioPolRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
@@ -1956,7 +2028,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="VisPsico" msprop:Generator_TableClassName="VisPsicoDataTable" msprop:Generator_TableVarName="tableVisPsico" msprop:Generator_RowChangedName="VisPsicoRowChanged" msprop:Generator_TablePropName="VisPsico" msprop:Generator_RowDeletingName="VisPsicoRowDeleting" msprop:Generator_RowChangingName="VisPsicoRowChanging" msprop:Generator_RowEvHandlerName="VisPsicoRowChangeEventHandler" msprop:Generator_RowDeletedName="VisPsicoRowDeleted" msprop:Generator_RowClassName="VisPsicoRow" msprop:Generator_UserTableName="VisPsico" msprop:Generator_RowEvArgName="VisPsicoRowChangeEvent">
<xs:element name="VisPsico" msprop:Generator_TableClassName="VisPsicoDataTable" msprop:Generator_TableVarName="tableVisPsico" msprop:Generator_TablePropName="VisPsico" msprop:Generator_RowDeletingName="VisPsicoRowDeleting" msprop:Generator_RowChangingName="VisPsicoRowChanging" msprop:Generator_RowEvHandlerName="VisPsicoRowChangeEventHandler" msprop:Generator_RowDeletedName="VisPsicoRowDeleted" msprop:Generator_UserTableName="VisPsico" msprop:Generator_RowChangedName="VisPsicoRowChanged" msprop:Generator_RowEvArgName="VisPsicoRowChangeEvent" msprop:Generator_RowClassName="VisPsicoRow">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
@@ -1970,7 +2042,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="VisStileVita" msprop:Generator_TableClassName="VisStileVitaDataTable" msprop:Generator_TableVarName="tableVisStileVita" msprop:Generator_TablePropName="VisStileVita" msprop:Generator_RowDeletingName="VisStileVitaRowDeleting" msprop:Generator_RowChangingName="VisStileVitaRowChanging" msprop:Generator_RowEvHandlerName="VisStileVitaRowChangeEventHandler" msprop:Generator_RowDeletedName="VisStileVitaRowDeleted" msprop:Generator_UserTableName="VisStileVita" msprop:Generator_RowChangedName="VisStileVitaRowChanged" msprop:Generator_RowEvArgName="VisStileVitaRowChangeEvent" msprop:Generator_RowClassName="VisStileVitaRow">
<xs:element name="VisStileVita" msprop:Generator_TableClassName="VisStileVitaDataTable" msprop:Generator_TableVarName="tableVisStileVita" msprop:Generator_RowChangedName="VisStileVitaRowChanged" msprop:Generator_TablePropName="VisStileVita" msprop:Generator_RowDeletingName="VisStileVitaRowDeleting" msprop:Generator_RowChangingName="VisStileVitaRowChanging" msprop:Generator_RowEvHandlerName="VisStileVitaRowChangeEventHandler" msprop:Generator_RowDeletedName="VisStileVitaRowDeleted" msprop:Generator_RowClassName="VisStileVitaRow" msprop:Generator_UserTableName="VisStileVita" msprop:Generator_RowEvArgName="VisStileVitaRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
@@ -2022,7 +2094,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="VisRelazFin" msprop:Generator_TableClassName="VisRelazFinDataTable" msprop:Generator_TableVarName="tableVisRelazFin" msprop:Generator_RowChangedName="VisRelazFinRowChanged" msprop:Generator_TablePropName="VisRelazFin" msprop:Generator_RowDeletingName="VisRelazFinRowDeleting" msprop:Generator_RowChangingName="VisRelazFinRowChanging" msprop:Generator_RowEvHandlerName="VisRelazFinRowChangeEventHandler" msprop:Generator_RowDeletedName="VisRelazFinRowDeleted" msprop:Generator_RowClassName="VisRelazFinRow" msprop:Generator_UserTableName="VisRelazFin" msprop:Generator_RowEvArgName="VisRelazFinRowChangeEvent">
<xs:element name="VisRelazFin" msprop:Generator_TableClassName="VisRelazFinDataTable" msprop:Generator_TableVarName="tableVisRelazFin" msprop:Generator_TablePropName="VisRelazFin" msprop:Generator_RowDeletingName="VisRelazFinRowDeleting" msprop:Generator_RowChangingName="VisRelazFinRowChanging" msprop:Generator_RowEvHandlerName="VisRelazFinRowChangeEventHandler" msprop:Generator_RowDeletedName="VisRelazFinRowDeleted" msprop:Generator_UserTableName="VisRelazFin" msprop:Generator_RowChangedName="VisRelazFinRowChanged" msprop:Generator_RowEvArgName="VisRelazFinRowChangeEvent" msprop:Generator_RowClassName="VisRelazFinRow">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
@@ -2039,7 +2111,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="stp_rep_DatiFullByPazienteData" msprop:Generator_TableClassName="stp_rep_DatiFullByPazienteDataDataTable" msprop:Generator_TableVarName="tablestp_rep_DatiFullByPazienteData" msprop:Generator_TablePropName="stp_rep_DatiFullByPazienteData" msprop:Generator_RowDeletingName="stp_rep_DatiFullByPazienteDataRowDeleting" msprop:Generator_RowChangingName="stp_rep_DatiFullByPazienteDataRowChanging" msprop:Generator_RowEvHandlerName="stp_rep_DatiFullByPazienteDataRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_rep_DatiFullByPazienteDataRowDeleted" msprop:Generator_UserTableName="stp_rep_DatiFullByPazienteData" msprop:Generator_RowChangedName="stp_rep_DatiFullByPazienteDataRowChanged" msprop:Generator_RowEvArgName="stp_rep_DatiFullByPazienteDataRowChangeEvent" msprop:Generator_RowClassName="stp_rep_DatiFullByPazienteDataRow">
<xs:element name="stp_rep_DatiFullByPazienteData" msprop:Generator_TableClassName="stp_rep_DatiFullByPazienteDataDataTable" msprop:Generator_TableVarName="tablestp_rep_DatiFullByPazienteData" msprop:Generator_RowChangedName="stp_rep_DatiFullByPazienteDataRowChanged" msprop:Generator_TablePropName="stp_rep_DatiFullByPazienteData" msprop:Generator_RowDeletingName="stp_rep_DatiFullByPazienteDataRowDeleting" msprop:Generator_RowChangingName="stp_rep_DatiFullByPazienteDataRowChanging" msprop:Generator_RowEvHandlerName="stp_rep_DatiFullByPazienteDataRowChangeEventHandler" msprop:Generator_RowDeletedName="stp_rep_DatiFullByPazienteDataRowDeleted" msprop:Generator_RowClassName="stp_rep_DatiFullByPazienteDataRow" msprop:Generator_UserTableName="stp_rep_DatiFullByPazienteData" msprop:Generator_RowEvArgName="stp_rep_DatiFullByPazienteDataRowChangeEvent">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxPaziente" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" minOccurs="0" />
@@ -2528,7 +2600,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="VisBioMecAnt" msprop:Generator_TableClassName="VisBioMecAntDataTable" msprop:Generator_TableVarName="tableVisBioMecAnt" msprop:Generator_RowChangedName="VisBioMecAntRowChanged" msprop:Generator_TablePropName="VisBioMecAnt" msprop:Generator_RowDeletingName="VisBioMecAntRowDeleting" msprop:Generator_RowChangingName="VisBioMecAntRowChanging" msprop:Generator_RowEvHandlerName="VisBioMecAntRowChangeEventHandler" msprop:Generator_RowDeletedName="VisBioMecAntRowDeleted" msprop:Generator_RowClassName="VisBioMecAntRow" msprop:Generator_UserTableName="VisBioMecAnt" msprop:Generator_RowEvArgName="VisBioMecAntRowChangeEvent">
<xs:element name="VisBioMecAnt" msprop:Generator_TableClassName="VisBioMecAntDataTable" msprop:Generator_TableVarName="tableVisBioMecAnt" msprop:Generator_TablePropName="VisBioMecAnt" msprop:Generator_RowDeletingName="VisBioMecAntRowDeleting" msprop:Generator_RowChangingName="VisBioMecAntRowChanging" msprop:Generator_RowEvHandlerName="VisBioMecAntRowChangeEventHandler" msprop:Generator_RowDeletedName="VisBioMecAntRowDeleted" msprop:Generator_UserTableName="VisBioMecAnt" msprop:Generator_RowChangedName="VisBioMecAntRowChanged" msprop:Generator_RowEvArgName="VisBioMecAntRowChangeEvent" msprop:Generator_RowClassName="VisBioMecAntRow">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
@@ -2580,7 +2652,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="VisValFunz" msprop:Generator_TableClassName="VisValFunzDataTable" msprop:Generator_TableVarName="tableVisValFunz" msprop:Generator_RowChangedName="VisValFunzRowChanged" msprop:Generator_TablePropName="VisValFunz" msprop:Generator_RowDeletingName="VisValFunzRowDeleting" msprop:Generator_RowChangingName="VisValFunzRowChanging" msprop:Generator_RowEvHandlerName="VisValFunzRowChangeEventHandler" msprop:Generator_RowDeletedName="VisValFunzRowDeleted" msprop:Generator_RowClassName="VisValFunzRow" msprop:Generator_UserTableName="VisValFunz" msprop:Generator_RowEvArgName="VisValFunzRowChangeEvent">
<xs:element name="VisValFunz" msprop:Generator_TableClassName="VisValFunzDataTable" msprop:Generator_TableVarName="tableVisValFunz" msprop:Generator_TablePropName="VisValFunz" msprop:Generator_RowDeletingName="VisValFunzRowDeleting" msprop:Generator_RowChangingName="VisValFunzRowChanging" msprop:Generator_RowEvHandlerName="VisValFunzRowChangeEventHandler" msprop:Generator_RowDeletedName="VisValFunzRowDeleted" msprop:Generator_UserTableName="VisValFunz" msprop:Generator_RowChangedName="VisValFunzRowChanged" msprop:Generator_RowEvArgName="VisValFunzRowChangeEvent" msprop:Generator_RowClassName="VisValFunzRow">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
@@ -2613,7 +2685,7 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="VisValFunzGT" msprop:Generator_TableClassName="VisValFunzGTDataTable" msprop:Generator_TableVarName="tableVisValFunzGT" msprop:Generator_RowChangedName="VisValFunzGTRowChanged" msprop:Generator_TablePropName="VisValFunzGT" msprop:Generator_RowDeletingName="VisValFunzGTRowDeleting" msprop:Generator_RowChangingName="VisValFunzGTRowChanging" msprop:Generator_RowEvHandlerName="VisValFunzGTRowChangeEventHandler" msprop:Generator_RowDeletedName="VisValFunzGTRowDeleted" msprop:Generator_RowClassName="VisValFunzGTRow" msprop:Generator_UserTableName="VisValFunzGT" msprop:Generator_RowEvArgName="VisValFunzGTRowChangeEvent">
<xs:element name="VisValFunzGT" msprop:Generator_TableClassName="VisValFunzGTDataTable" msprop:Generator_TableVarName="tableVisValFunzGT" msprop:Generator_TablePropName="VisValFunzGT" msprop:Generator_RowDeletingName="VisValFunzGTRowDeleting" msprop:Generator_RowChangingName="VisValFunzGTRowChanging" msprop:Generator_RowEvHandlerName="VisValFunzGTRowChangeEventHandler" msprop:Generator_RowDeletedName="VisValFunzGTRowDeleted" msprop:Generator_UserTableName="VisValFunzGT" msprop:Generator_RowChangedName="VisValFunzGTRowChanged" msprop:Generator_RowEvArgName="VisValFunzGTRowChangeEvent" msprop:Generator_RowClassName="VisValFunzGTRow">
<xs:complexType>
<xs:sequence>
<xs:element name="IdxPaziente" msprop:Generator_ColumnVarNameInTable="columnIdxPaziente" msprop:Generator_ColumnPropNameInRow="IdxPaziente" msprop:Generator_ColumnPropNameInTable="IdxPazienteColumn" msprop:Generator_UserColumnName="IdxPaziente" type="xs:int" />
@@ -2649,6 +2721,20 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="Pazienti2Labels" msprop:Generator_TableClassName="Pazienti2LabelsDataTable" msprop:Generator_TableVarName="tablePazienti2Labels" msprop:Generator_TablePropName="Pazienti2Labels" msprop:Generator_RowDeletingName="Pazienti2LabelsRowDeleting" msprop:Generator_RowChangingName="Pazienti2LabelsRowChanging" msprop:Generator_RowEvHandlerName="Pazienti2LabelsRowChangeEventHandler" msprop:Generator_RowDeletedName="Pazienti2LabelsRowDeleted" msprop:Generator_UserTableName="Pazienti2Labels" msprop:Generator_RowChangedName="Pazienti2LabelsRowChanged" msprop:Generator_RowEvArgName="Pazienti2LabelsRowChangeEvent" msprop:Generator_RowClassName="Pazienti2LabelsRow">
<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" />
<xs:element name="CodLabel" msprop:Generator_ColumnVarNameInTable="columnCodLabel" msprop:Generator_ColumnPropNameInRow="CodLabel" msprop:Generator_ColumnPropNameInTable="CodLabelColumn" msprop:Generator_UserColumnName="CodLabel">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="50" />
</xs:restriction>
</xs:simpleType>
</xs:element>
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
<xs:unique name="Constraint1" msdata:PrimaryKey="true">
@@ -2704,18 +2790,24 @@ SELECT IdxPaziente, DataVisita, Note, Score1, Score2 FROM VisRelazFin WHERE (Dat
<xs:field xpath="mstns:IdxPaziente" />
<xs:field xpath="mstns:DataVisita" />
</xs:unique>
<xs:unique name="Pazienti2Labels_Constraint1" msdata:ConstraintName="Constraint1" msdata:PrimaryKey="true">
<xs:selector xpath=".//mstns:Pazienti2Labels" />
<xs:field xpath="mstns:IdxPaziente" />
<xs:field xpath="mstns:CodLabel" />
</xs:unique>
</xs:element>
<xs:annotation>
<xs:appinfo>
<msdata:Relationship name="FK_VisClinGen_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisLab" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisLab" msprop:Generator_ChildPropName="GetVisLabRows" msprop:Generator_UserRelationName="FK_VisClinGen_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisClinGen_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
<msdata:Relationship name="FK_VisAnamCli_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisAnamCli" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisAnamCli" msprop:Generator_ChildPropName="GetVisAnamCliRows" msprop:Generator_UserRelationName="FK_VisAnamCli_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisAnamCli_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
<msdata:Relationship name="FK_VisCardioPol_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisCardioPol" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisCardioPol" msprop:Generator_ChildPropName="GetVisCardioPolRows" msprop:Generator_UserRelationName="FK_VisCardioPol_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisCardioPol_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
<msdata:Relationship name="FK_VisPsico_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisPsico" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisPsico" msprop:Generator_ChildPropName="GetVisPsicoRows" msprop:Generator_UserRelationName="FK_VisPsico_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisPsico_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
<msdata:Relationship name="FK_VisStileVita_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisStileVita" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisStileVita" msprop:Generator_ChildPropName="GetVisStileVitaRows" msprop:Generator_UserRelationName="FK_VisStileVita_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisStileVita_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
<msdata:Relationship name="FK_VisRelazFin_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisRelazFin" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisRelazFin" msprop:Generator_ChildPropName="GetVisRelazFinRows" msprop:Generator_UserRelationName="FK_VisRelazFin_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisRelazFin_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
<msdata:Relationship name="AnagPazienti_v_VisBioMecAnt" msdata:parent="AnagPazienti" msdata:child="VisBioMecAnt" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisBioMecAnt" msprop:Generator_ChildPropName="GetVisBioMecAntRows" msprop:Generator_UserRelationName="AnagPazienti_v_VisBioMecAnt" msprop:Generator_RelationVarName="relationAnagPazienti_v_VisBioMecAnt" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
<msdata:Relationship name="FK_VisValFunz_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisValFunz" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisValFunz" msprop:Generator_ChildPropName="GetVisValFunzRows" msprop:Generator_UserRelationName="FK_VisValFunz_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisValFunz_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
<msdata:Relationship name="FK_ValSvolAtt_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisValFunzGT" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisValFunzGT" msprop:Generator_ChildPropName="GetVisValFunzGTRows" msprop:Generator_UserRelationName="FK_ValSvolAtt_AnagPazienti" msprop:Generator_RelationVarName="relationFK_ValSvolAtt_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
<msdata:Relationship name="FK_VisClinGen_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisLab" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisLab" msprop:Generator_ChildPropName="GetVisLabRows" msprop:Generator_UserRelationName="FK_VisClinGen_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisClinGen_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
<msdata:Relationship name="FK_VisAnamCli_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisAnamCli" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisAnamCli" msprop:Generator_ChildPropName="GetVisAnamCliRows" msprop:Generator_UserRelationName="FK_VisAnamCli_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisAnamCli_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
<msdata:Relationship name="FK_VisCardioPol_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisCardioPol" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisCardioPol" msprop:Generator_ChildPropName="GetVisCardioPolRows" msprop:Generator_UserRelationName="FK_VisCardioPol_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisCardioPol_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
<msdata:Relationship name="FK_VisPsico_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisPsico" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisPsico" msprop:Generator_ChildPropName="GetVisPsicoRows" msprop:Generator_UserRelationName="FK_VisPsico_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisPsico_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
<msdata:Relationship name="FK_VisStileVita_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisStileVita" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisStileVita" msprop:Generator_ChildPropName="GetVisStileVitaRows" msprop:Generator_UserRelationName="FK_VisStileVita_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisStileVita_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
<msdata:Relationship name="FK_VisRelazFin_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisRelazFin" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisRelazFin" msprop:Generator_ChildPropName="GetVisRelazFinRows" msprop:Generator_UserRelationName="FK_VisRelazFin_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisRelazFin_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
<msdata:Relationship name="AnagPazienti_v_VisBioMecAnt" msdata:parent="AnagPazienti" msdata:child="VisBioMecAnt" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisBioMecAnt" msprop:Generator_ChildPropName="GetVisBioMecAntRows" msprop:Generator_UserRelationName="AnagPazienti_v_VisBioMecAnt" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationAnagPazienti_v_VisBioMecAnt" msprop:Generator_UserParentTable="AnagPazienti" />
<msdata:Relationship name="FK_VisValFunz_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisValFunz" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisValFunz" msprop:Generator_ChildPropName="GetVisValFunzRows" msprop:Generator_UserRelationName="FK_VisValFunz_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_VisValFunz_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
<msdata:Relationship name="FK_ValSvolAtt_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisValFunzGT" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisValFunzGT" msprop:Generator_ChildPropName="GetVisValFunzGTRows" msprop:Generator_UserRelationName="FK_ValSvolAtt_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_ValSvolAtt_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
<msdata:Relationship name="FK_Pazienti2Labels_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="Pazienti2Labels" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="Pazienti2Labels" msprop:Generator_ChildPropName="GetPazienti2LabelsRows" msprop:Generator_UserRelationName="FK_Pazienti2Labels_AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" msprop:Generator_RelationVarName="relationFK_Pazienti2Labels_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" />
</xs:appinfo>
</xs:annotation>
</xs:schema>
+47 -34
View File
@@ -4,39 +4,36 @@
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="52" ViewPortY="545" 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="81" ViewPortY="150" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:AnagPazienti" ZOrder="5" X="680" Y="16" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:ElencoVisite" ZOrder="21" X="35" Y="-15" Height="267" Width="214" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="216" />
<Shape ID="DesignTable:VisLab" ZOrder="11" X="338" Y="386" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:VisAnamCli" ZOrder="18" X="1100" Y="11" Height="459" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="332" />
<Shape ID="DesignTable:VisCardioPol" ZOrder="8" X="757" Y="617" Height="381" Width="236" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:VisPsico" ZOrder="12" X="328" Y="818" Height="305" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
<Shape ID="DesignTable:VisStileVita" ZOrder="3" X="668" Y="1041" Height="381" Width="285" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:VisRelazFin" ZOrder="9" X="371" Y="23" Height="286" Width="203" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="142" />
<Shape ID="DesignTable:stp_rep_DatiFullByPazienteData" ZOrder="13" X="-5" Y="284" Height="305" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:VisBioMecAnt" ZOrder="6" X="1078" Y="506" Height="381" Width="260" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:VisValFunz" ZOrder="1" X="1083" Y="940" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:VisValFunzGT" ZOrder="2" X="337" Y="1147" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:AnagPazienti" ZOrder="3" X="680" Y="16" Height="476" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="311" />
<Shape ID="DesignTable:ElencoVisite" ZOrder="23" X="35" Y="-15" Height="267" Width="214" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="216" />
<Shape ID="DesignTable:VisLab" ZOrder="4" X="326" Y="378" Height="381" Width="285" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:VisAnamCli" ZOrder="21" X="1100" Y="11" Height="459" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="332" />
<Shape ID="DesignTable:VisCardioPol" ZOrder="12" X="757" Y="617" Height="381" Width="236" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:VisPsico" ZOrder="15" X="328" Y="818" Height="305" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
<Shape ID="DesignTable:VisStileVita" ZOrder="8" X="668" Y="1041" Height="381" Width="285" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:VisRelazFin" ZOrder="13" X="371" Y="23" Height="286" Width="203" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="142" />
<Shape ID="DesignTable:stp_rep_DatiFullByPazienteData" ZOrder="16" X="-5" Y="284" Height="305" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:VisBioMecAnt" ZOrder="10" X="1078" Y="506" Height="381" Width="260" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:VisValFunz" ZOrder="6" X="1083" Y="940" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:VisValFunzGT" ZOrder="7" X="337" Y="1147" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:Pazienti2Labels" ZOrder="1" X="87" Y="653" Height="153" Width="280" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="64" />
</Shapes>
<Connectors>
<Connector ID="DesignRelation:FK_VisClinGen_AnagPazienti" ZOrder="20" LineWidth="11">
<Connector ID="DesignRelation:FK_VisClinGen_AnagPazienti" ZOrder="5" LineWidth="11">
<RoutePoints>
<Point>
<X>697</X>
<Y>397</Y>
<X>680</X>
<Y>436</Y>
</Point>
<Point>
<X>697</X>
<Y>456</Y>
</Point>
<Point>
<X>638</X>
<Y>456</Y>
<X>611</X>
<Y>436</Y>
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_VisAnamCli_AnagPazienti" ZOrder="19" LineWidth="11">
<Connector ID="DesignRelation:FK_VisAnamCli_AnagPazienti" ZOrder="22" LineWidth="11">
<RoutePoints>
<Point>
<X>980</X>
@@ -48,11 +45,11 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_VisCardioPol_AnagPazienti" ZOrder="17" LineWidth="11">
<Connector ID="DesignRelation:FK_VisCardioPol_AnagPazienti" ZOrder="20" LineWidth="11">
<RoutePoints>
<Point>
<X>842</X>
<Y>397</Y>
<Y>492</Y>
</Point>
<Point>
<X>842</X>
@@ -60,11 +57,11 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_VisPsico_AnagPazienti" ZOrder="16" LineWidth="11">
<Connector ID="DesignRelation:FK_VisPsico_AnagPazienti" ZOrder="19" LineWidth="11">
<RoutePoints>
<Point>
<X>705</X>
<Y>397</Y>
<Y>492</Y>
</Point>
<Point>
<X>705</X>
@@ -76,11 +73,11 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_VisStileVita_AnagPazienti" ZOrder="15" LineWidth="11">
<Connector ID="DesignRelation:FK_VisStileVita_AnagPazienti" ZOrder="18" LineWidth="11">
<RoutePoints>
<Point>
<X>747</X>
<Y>397</Y>
<Y>492</Y>
</Point>
<Point>
<X>747</X>
@@ -88,7 +85,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_VisRelazFin_AnagPazienti" ZOrder="14" LineWidth="11">
<Connector ID="DesignRelation:FK_VisRelazFin_AnagPazienti" ZOrder="17" LineWidth="11">
<RoutePoints>
<Point>
<X>680</X>
@@ -100,7 +97,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:AnagPazienti_v_VisBioMecAnt" ZOrder="10" LineWidth="11">
<Connector ID="DesignRelation:AnagPazienti_v_VisBioMecAnt" ZOrder="14" LineWidth="11">
<RoutePoints>
<Point>
<X>980</X>
@@ -120,7 +117,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_VisValFunz_AnagPazienti" ZOrder="7" LineWidth="11">
<Connector ID="DesignRelation:FK_VisValFunz_AnagPazienti" ZOrder="11" LineWidth="11">
<RoutePoints>
<Point>
<X>980</X>
@@ -140,11 +137,11 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_ValSvolAtt_AnagPazienti" ZOrder="4" LineWidth="11">
<Connector ID="DesignRelation:FK_ValSvolAtt_AnagPazienti" ZOrder="9" LineWidth="11">
<RoutePoints>
<Point>
<X>713</X>
<Y>397</Y>
<Y>492</Y>
</Point>
<Point>
<X>713</X>
@@ -156,5 +153,21 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_Pazienti2Labels_AnagPazienti" ZOrder="2" LineWidth="11">
<RoutePoints>
<Point>
<X>721</X>
<Y>492</Y>
</Point>
<Point>
<X>721</X>
<Y>670</Y>
</Point>
<Point>
<X>367</X>
<Y>670</Y>
</Point>
</RoutePoints>
</Connector>
</Connectors>
</DiagramLayout>
+3
View File
@@ -23,6 +23,7 @@ namespace ScheMe_Data
protected virtual void avvioTableAdapters()
{
taAP = new DS_ApplicazioneTableAdapters.AnagPazientiTableAdapter();
taP2L = new DS_ApplicazioneTableAdapters.Pazienti2LabelsTableAdapter();
taVAC = new DS_ApplicazioneTableAdapters.VisAnamCliTableAdapter();
taVCP = new DS_ApplicazioneTableAdapters.VisCardioPolTableAdapter();
taVLab = new DS_ApplicazioneTableAdapters.VisLabTableAdapter();
@@ -39,6 +40,7 @@ namespace ScheMe_Data
string connStrFiles = memLayer.ML.confReadString("ScheMeFilesConnectionString");
// connections del db vocabolario
taAP.Connection.ConnectionString = connStr;
taP2L.Connection.ConnectionString = connStr;
taVAC.Connection.ConnectionString = connStr;
taVCP.Connection.ConnectionString = connStr;
taVLab.Connection.ConnectionString = connStr;
@@ -52,6 +54,7 @@ namespace ScheMe_Data
#region area public
public DS_ApplicazioneTableAdapters.AnagPazientiTableAdapter taAP;
public DS_ApplicazioneTableAdapters.Pazienti2LabelsTableAdapter taP2L;
public DS_ApplicazioneTableAdapters.VisAnamCliTableAdapter taVAC;
public DS_ApplicazioneTableAdapters.VisCardioPolTableAdapter taVCP;
public DS_ApplicazioneTableAdapters.VisLabTableAdapter taVLab;
Binary file not shown.