Inserita bozza: compila prestazioni PAI (da sistemare!!!)

This commit is contained in:
Samuele E. Locatelli
2017-09-20 11:03:34 +02:00
parent ce93e6a714
commit 7848134bf6
10 changed files with 1496 additions and 48 deletions
+8
View File
@@ -171,6 +171,7 @@
<Content Include="VPAI.aspx" />
<Content Include="VPP.aspx" />
<Content Include="VVMD.aspx" />
<Content Include="WebUserControls\mod_PrestPAI.ascx" />
<Content Include="WebUserControls\mod_top.ascx" />
<None Include="compilerconfig.json" />
<None Include="compilerconfig.json.defaults">
@@ -487,6 +488,13 @@
<Compile Include="WebUserControls\mod_fileUpload.ascx.designer.cs">
<DependentUpon>mod_fileUpload.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_PrestPAI.ascx.cs">
<DependentUpon>mod_PrestPAI.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
</Compile>
<Compile Include="WebUserControls\mod_PrestPAI.ascx.designer.cs">
<DependentUpon>mod_PrestPAI.ascx</DependentUpon>
</Compile>
<Compile Include="WebUserControls\mod_reportVisita.ascx.cs">
<DependentUpon>mod_reportVisita.ascx</DependentUpon>
<SubType>ASPXCodeBehind</SubType>
+11 -8
View File
@@ -1,5 +1,8 @@
<%@ Page Title="" Language="C#" MasterPageFile="~/Bootstrap.Master" AutoEventWireup="true" CodeBehind="VPAI.aspx.cs" Inherits="ScheMe.VPAI" %>
<%@ Register Src="~/WebUserControls/mod_PrestPAI.ascx" TagPrefix="uc1" TagName="mod_PrestPAI" %>
<asp:Content ID="Content1" ContentPlaceHolderID="head" runat="server">
</asp:Content>
<asp:Content ID="Content2" ContentPlaceHolderID="MainContent" runat="server">
@@ -66,18 +69,18 @@
</li>
</ul>
</div>
<div class="col-xs-4">
<asp:LinkButton runat="server" CssClass="btn btn-success form-control" ID="lbtAddStd"><i class="fa fa-filter"></i> ADD STANDARD</asp:LinkButton>
<div class="col-xs-6">
<asp:LinkButton runat="server" CssClass="btn btn-success form-control" ID="lbtAddStd" CommandArgument='<%# Eval("CodPatologia")+"#"+Eval("Livello")+"#"+Eval("Classe") %>' OnClick="lbtAddStd_Click"><i class="fa fa-filter"></i> ADD STANDARD</asp:LinkButton>
</div>
<div class="col-xs-4">
<asp:LinkButton runat="server" CssClass="btn btn-primary form-control" ID="lbtAddFree"><i class="fa fa-search"></i> ADD LIBERO</asp:LinkButton>
<div class="col-xs-6">
<asp:LinkButton runat="server" CssClass="btn btn-primary form-control" ID="lbtAddFree" OnClick="lbtAddFree_Click"><i class="fa fa-search"></i> ADD LIBERO</asp:LinkButton>
</div>
<div class="col-xs-4">
<asp:LinkButton runat="server" CssClass="btn btn-warning form-control" ID="lbtAddOpt"><i class="fa fa-cog"></i> ADD OPZIONALI</asp:LinkButton>
<div class="col-xs-12">
<uc1:mod_PrestPAI runat="server" ID="mod_PrestPAI" />
</div>
</div>
</div>
<div class="col-xs-12 col-sm-4 col-md-3">
</div>
<div class="col-xs-12 col-sm-4 col-md-3">
<ul class="list-group">
<li class="list-group-item hBlock">
<button class="btn btn-default btn-sm" type="button" data-toggle="collapse" data-target="#collapseBdgt" aria-expanded="false" aria-controls="collapseBdgt">
+28
View File
@@ -119,5 +119,33 @@ namespace ScheMe
e.Values["Note"] = "-";
}
}
protected void lbtAddStd_Click(object sender, EventArgs e)
{
// verifico parametri richeista..
int CodPatologia = 0;
int Livello = 0;
int Classe = 0;
try
{
LinkButton lbtAddStd = (LinkButton)sender;
string[] parametri = lbtAddStd.CommandArgument.Split('#');
CodPatologia = Convert.ToInt32(parametri[0]);
Livello = Convert.ToInt32(parametri[1]);
Classe = Convert.ToInt32(parametri[2]);
}
catch
{ }
// chiamo stored!
DtProxy.man.taVPAI_Prest.CloneFromSetupPDC(idxPaziente, DataVisita, CodPatologia, Livello, Classe);
// update!
frmView.DataBind();
}
protected void lbtAddFree_Click(object sender, EventArgs e)
{
}
}
}
@@ -0,0 +1,62 @@
<%@ Control Language="C#" AutoEventWireup="true" CodeBehind="mod_PrestPAI.ascx.cs" Inherits="ScheMe.WebUserControls.mod_PrestPAI" %>
<div class="row">
<div class="col-xs-12">
<asp:GridView ID="grView" runat="server" AutoGenerateColumns="False" DataKeyNames="IdxPaziente,DataVisita,CodPres,Num" DataSourceID="ods">
<EditRowStyle CssClass="editRowStyle spacedRow" />
<FooterStyle CssClass="footerRowStyle" />
<HeaderStyle CssClass="headerRowStyle" />
<PagerStyle CssClass="active GridPager" />
<RowStyle CssClass="rowStyle spacedRow" />
<SelectedRowStyle CssClass="selectedRowStyle spacedRow" />
<AlternatingRowStyle CssClass="alternatingRowStyle spacedRow" />
<SortedAscendingCellStyle CssClass="stortAscCellStyle" />
<SortedAscendingHeaderStyle CssClass="stortAscHeadStyle" />
<SortedDescendingCellStyle CssClass="stortDescCellStyle" />
<SortedDescendingHeaderStyle CssClass="stortDescHeadStyle" />
<EmptyDataTemplate>
<h3>NO DATA</h3>
</EmptyDataTemplate>
<Columns>
<asp:BoundField DataField="IdxPaziente" HeaderText="IdxPaziente" ReadOnly="True" SortExpression="IdxPaziente" />
<asp:BoundField DataField="DataVisita" HeaderText="DataVisita" ReadOnly="True" SortExpression="DataVisita" />
<asp:BoundField DataField="CodPres" HeaderText="CodPres" ReadOnly="True" SortExpression="CodPres" />
<asp:BoundField DataField="Num" HeaderText="Num" ReadOnly="True" SortExpression="Num" />
<asp:BoundField DataField="Freq" HeaderText="Freq" SortExpression="Freq" />
<asp:BoundField DataField="Note" HeaderText="Note" SortExpression="Note" />
<asp:BoundField DataField="Tariffa" HeaderText="Tariffa" SortExpression="Tariffa" />
<asp:BoundField DataField="SpesaPrev" HeaderText="SpesaPrev" ReadOnly="True" SortExpression="SpesaPrev" />
</Columns>
</asp:GridView>
<asp:ObjectDataSource ID="ods" runat="server" OldValuesParameterFormatString="original_{0}" SelectMethod="getByPaziente" TypeName="ScheMe_Data.DS_ApplicazioneTableAdapters.VisPAI_PrestTableAdapter" OnDeleted="ods_Deleted" UpdateMethod="UpdateQuery" InsertMethod="UpdateQuery" DeleteMethod="UpdateQuery">
<DeleteParameters>
<asp:Parameter Name="CodPres" Type="String" />
<asp:Parameter Name="Num" Type="Int32" />
<asp:Parameter Name="Freq" Type="Double" />
<asp:Parameter Name="Note" Type="String" />
<asp:QueryStringParameter DefaultValue="0" Name="Original_DataVisita" QueryStringField="DataVisita" Type="DateTime" />
<asp:SessionParameter Name="Original_IdxPaziente" SessionField="IdxPaziente" Type="Int32" DefaultValue="0" />
</DeleteParameters>
<InsertParameters>
<asp:Parameter Name="CodPres" Type="String" />
<asp:Parameter Name="Num" Type="Int32" />
<asp:Parameter Name="Freq" Type="Double" />
<asp:Parameter Name="Note" Type="String" />
<asp:Parameter Name="Original_DataVisita" Type="DateTime" />
<asp:Parameter Name="Original_IdxPaziente" Type="Int32" />
</InsertParameters>
<SelectParameters>
<asp:SessionParameter Name="IdxPaziente" SessionField="IdxPaziente" Type="Int32" DefaultValue="0" />
<asp:QueryStringParameter DefaultValue="" Name="DataVisita" QueryStringField="DataVisita" Type="DateTime" />
</SelectParameters>
<UpdateParameters>
<asp:Parameter Name="CodPres" Type="String" />
<asp:Parameter Name="Num" Type="Int32" />
<asp:Parameter Name="Freq" Type="Double" />
<asp:Parameter Name="Note" Type="String" />
<asp:QueryStringParameter DefaultValue="0" Name="Original_DataVisita" QueryStringField="DataVisita" Type="DateTime" />
<asp:SessionParameter Name="Original_IdxPaziente" SessionField="IdxPaziente" Type="Int32" DefaultValue="0" />
</UpdateParameters>
</asp:ObjectDataSource>
</div>
</div>
@@ -0,0 +1,45 @@
using SteamWare;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
namespace ScheMe.WebUserControls
{
public partial class mod_PrestPAI : System.Web.UI.UserControl
{
protected int idxPaziente
{
get
{
return memLayer.ML.IntSessionObj("IdxPaziente");
}
}
protected DateTime DataVisita
{
get
{
DateTime answ = DateTime.Now.Date;
try
{
answ = memLayer.ML.QSD("DataVisita");
}
catch
{ }
return answ;
}
}
protected void Page_Load(object sender, EventArgs e)
{
}
protected void ods_Deleted(object sender, ObjectDataSourceStatusEventArgs e)
{
}
}
}
+33
View File
@@ -0,0 +1,33 @@
//------------------------------------------------------------------------------
// <generato automaticamente>
// Codice generato da uno strumento.
//
// Le modifiche a questo file possono causare un comportamento non corretto e verranno perse se
// il codice viene rigenerato.
// </generato automaticamente>
//------------------------------------------------------------------------------
namespace ScheMe.WebUserControls {
public partial class mod_PrestPAI {
/// <summary>
/// Controllo grView.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.GridView grView;
/// <summary>
/// Controllo ods.
/// </summary>
/// <remarks>
/// Campo generato automaticamente.
/// Per la modifica, spostare la dichiarazione di campo dal file di progettazione al file code-behind.
/// </remarks>
protected global::System.Web.UI.WebControls.ObjectDataSource ods;
}
}
+1108 -2
View File
File diff suppressed because it is too large Load Diff
+146 -3
View File
@@ -1608,10 +1608,10 @@ SELECT CodPatologia, Livello, DescrPatologia, BudgetSpesa, QuotaPIC FROM Patolog
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="VisPAITableAdapter" GeneratorDataComponentClassName="VisPAITableAdapter" Name="VisPAI" UserDataComponentName="VisPAITableAdapter">
<MainSource>
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="[ScheMe-PIC].dbo.V_VisPAI" DbObjectType="View" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="false" 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">
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="[ScheMe-PIC].dbo.v_VisPAI" DbObjectType="View" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="false" GeneratorGetMethodName="GetData" GeneratorSourceName="Fill" GetMethodModifier="Public" GetMethodName="GetData" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="false" UserGetMethodName="GetData" UserSourceName="Fill">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT IdxPaziente, DataVisita, CodPatologia, Livello, Classe, Note, BudgetSpesa, CurrSpesa FROM dbo.V_VisPAI</CommandText>
<DbCommand CommandType="Text" ModifiedByUser="true">
<CommandText>SELECT * FROM dbo.v_VisPAI</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
@@ -1686,6 +1686,115 @@ SELECT CodPatologia, Livello, DescrPatologia, BudgetSpesa, QuotaPIC FROM Patolog
</DbSource>
</Sources>
</TableAdapter>
<TableAdapter BaseClass="System.ComponentModel.Component" DataAccessorModifier="AutoLayout, AnsiClass, Class, Public" DataAccessorName="VisPAI_PrestTableAdapter" GeneratorDataComponentClassName="VisPAI_PrestTableAdapter" Name="VisPAI_Prest" UserDataComponentName="VisPAI_PrestTableAdapter">
<MainSource>
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="[ScheMe-PIC].dbo.v_VisPAI_Prest" DbObjectType="View" FillMethodModifier="Public" FillMethodName="Fill" GenerateMethods="Both" GenerateShortCommands="false" 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">
<SelectCommand>
<DbCommand CommandType="Text" ModifiedByUser="false">
<CommandText>SELECT IdxPaziente, DataVisita, CodPres, Num, Freq, Note, Tariffa, SpesaPrev FROM dbo.v_VisPAI_Prest</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
</DbSource>
</MainSource>
<Mappings>
<Mapping SourceColumn="IdxPaziente" DataSetColumn="IdxPaziente" />
<Mapping SourceColumn="DataVisita" DataSetColumn="DataVisita" />
<Mapping SourceColumn="CodPres" DataSetColumn="CodPres" />
<Mapping SourceColumn="Num" DataSetColumn="Num" />
<Mapping SourceColumn="Freq" DataSetColumn="Freq" />
<Mapping SourceColumn="Note" DataSetColumn="Note" />
<Mapping SourceColumn="Tariffa" DataSetColumn="Tariffa" />
<Mapping SourceColumn="SpesaPrev" DataSetColumn="SpesaPrev" />
</Mappings>
<Sources>
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="[ScheMe-PIC].dbo.stp_SetPDC_InsVPAI" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="CloneFromSetupPDC" Modifier="Public" Name="CloneFromSetupPDC" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy4" UserSourceName="CloneFromSetupPDC">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_SetPDC_InsVPAI</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="datetime" DbType="DateTime" Direction="Input" ParameterName="@DataVisita" Precision="23" ProviderType="DateTime" Scale="3" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@CodPatologia" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@Livello" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@Classe" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="[ScheMe-PIC].dbo.stp_VisPAI_Prest_DeleteGroup" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="DeleteGroup" Modifier="Public" Name="DeleteGroup" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy" UserSourceName="DeleteGroup">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_VisPAI_Prest_DeleteGroup</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="datetime" DbType="DateTime" Direction="Input" ParameterName="@DataVisita" Precision="23" ProviderType="DateTime" Scale="3" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="[ScheMe-PIC].dbo.stp_VisPAI_Prest_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="GetDataBy1" UserSourceName="DeleteQuery">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_VisPAI_Prest_DeleteQuery</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="@Original_IdxPaziente" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@Original_DataVisita" Precision="23" ProviderType="DateTime" Scale="3" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Original_CodPres" Precision="0" ProviderType="NVarChar" Scale="0" Size="10" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@Original_Num" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="[ScheMe-PIC].dbo.stp_VisPAI_Prest_getByPaziente" DbObjectType="StoredProcedure" GenerateMethods="Get" GenerateShortCommands="true" GeneratorGetMethodName="getByPaziente" GetMethodModifier="Public" GetMethodName="getByPaziente" QueryType="Rowset" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="getByPaziente" UserSourceName="getByPaziente">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_VisPAI_Prest_getByPaziente</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="datetime" DbType="DateTime" Direction="Input" ParameterName="@DataVisita" Precision="23" ProviderType="DateTime" Scale="3" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="[ScheMe-PIC].dbo.stp_VisPAI_Prest_InsertQuery" DbObjectType="StoredProcedure" 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="GetDataBy2" UserSourceName="InsertQuery">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_VisPAI_Prest_InsertQuery</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="datetime" DbType="DateTime" Direction="Input" ParameterName="@DataVisita" Precision="23" ProviderType="DateTime" Scale="3" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@CodPres" Precision="0" ProviderType="NVarChar" Scale="0" Size="10" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@Num" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="float" DbType="Double" Direction="Input" ParameterName="@Freq" Precision="53" ProviderType="Float" Scale="0" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Note" Precision="0" ProviderType="NVarChar" Scale="0" Size="250" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
<DbSource ConnectionRef="ScheMeConnectionString (Settings)" DbObjectName="[ScheMe-PIC].dbo.stp_VisPAI_Prest_UpdateQuery" DbObjectType="StoredProcedure" GenerateShortCommands="true" GeneratorSourceName="UpdateQuery" Modifier="Public" Name="UpdateQuery" QueryType="NoData" ScalarCallRetval="System.Object, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" UseOptimisticConcurrency="true" UserGetMethodName="GetDataBy3" UserSourceName="UpdateQuery">
<SelectCommand>
<DbCommand CommandType="StoredProcedure" ModifiedByUser="false">
<CommandText>dbo.stp_VisPAI_Prest_UpdateQuery</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="nvarchar" DbType="String" Direction="Input" ParameterName="@CodPres" Precision="0" ProviderType="NVarChar" Scale="0" Size="10" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@Num" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="float" DbType="Double" Direction="Input" ParameterName="@Freq" Precision="53" ProviderType="Float" Scale="0" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="nvarchar" DbType="String" Direction="Input" ParameterName="@Note" Precision="0" ProviderType="NVarChar" Scale="0" Size="250" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="datetime" DbType="DateTime" Direction="Input" ParameterName="@Original_DataVisita" Precision="23" ProviderType="DateTime" Scale="3" Size="8" SourceColumnNullMapping="false" SourceVersion="Current" />
<Parameter AllowDbNull="true" AutogeneratedName="" DataSourceName="" DataTypeServer="int" DbType="Int32" Direction="Input" ParameterName="@Original_IdxPaziente" Precision="10" ProviderType="Int" Scale="0" Size="4" SourceColumnNullMapping="false" SourceVersion="Current" />
</Parameters>
</DbCommand>
</SelectCommand>
</DbSource>
</Sources>
</TableAdapter>
</Tables>
<Sources />
</DataSource>
@@ -2547,6 +2656,32 @@ SELECT CodPatologia, Livello, DescrPatologia, BudgetSpesa, QuotaPIC FROM Patolog
</xs:sequence>
</xs:complexType>
</xs:element>
<xs:element name="VisPAI_Prest" msprop:Generator_TableClassName="VisPAI_PrestDataTable" msprop:Generator_TableVarName="tableVisPAI_Prest" msprop:Generator_TablePropName="VisPAI_Prest" msprop:Generator_RowDeletingName="VisPAI_PrestRowDeleting" msprop:Generator_RowChangingName="VisPAI_PrestRowChanging" msprop:Generator_RowEvHandlerName="VisPAI_PrestRowChangeEventHandler" msprop:Generator_RowDeletedName="VisPAI_PrestRowDeleted" msprop:Generator_UserTableName="VisPAI_Prest" msprop:Generator_RowChangedName="VisPAI_PrestRowChanged" msprop:Generator_RowEvArgName="VisPAI_PrestRowChangeEvent" msprop:Generator_RowClassName="VisPAI_PrestRow">
<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="DataVisita" msprop:Generator_ColumnVarNameInTable="columnDataVisita" msprop:Generator_ColumnPropNameInRow="DataVisita" msprop:Generator_ColumnPropNameInTable="DataVisitaColumn" msprop:Generator_UserColumnName="DataVisita" type="xs:dateTime" />
<xs:element name="CodPres" msprop:Generator_ColumnVarNameInTable="columnCodPres" msprop:Generator_ColumnPropNameInRow="CodPres" msprop:Generator_ColumnPropNameInTable="CodPresColumn" msprop:Generator_UserColumnName="CodPres">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="10" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Num" msprop:Generator_ColumnVarNameInTable="columnNum" msprop:Generator_ColumnPropNameInRow="Num" msprop:Generator_ColumnPropNameInTable="NumColumn" msprop:Generator_UserColumnName="Num" type="xs:int" />
<xs:element name="Freq" msprop:Generator_ColumnVarNameInTable="columnFreq" msprop:Generator_ColumnPropNameInRow="Freq" msprop:Generator_ColumnPropNameInTable="FreqColumn" msprop:Generator_UserColumnName="Freq" type="xs:double" />
<xs:element name="Note" msprop:Generator_ColumnVarNameInTable="columnNote" msprop:Generator_ColumnPropNameInRow="Note" msprop:Generator_ColumnPropNameInTable="NoteColumn" msprop:Generator_UserColumnName="Note">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:maxLength value="250" />
</xs:restriction>
</xs:simpleType>
</xs:element>
<xs:element name="Tariffa" msprop:Generator_ColumnVarNameInTable="columnTariffa" msprop:Generator_ColumnPropNameInRow="Tariffa" msprop:Generator_ColumnPropNameInTable="TariffaColumn" msprop:Generator_UserColumnName="Tariffa" type="xs:decimal" minOccurs="0" />
<xs:element name="SpesaPrev" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnSpesaPrev" msprop:Generator_ColumnPropNameInRow="SpesaPrev" msprop:Generator_ColumnPropNameInTable="SpesaPrevColumn" msprop:Generator_UserColumnName="SpesaPrev" type="xs:double" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
<xs:unique name="Constraint1" msdata:PrimaryKey="true">
@@ -2607,6 +2742,13 @@ SELECT CodPatologia, Livello, DescrPatologia, BudgetSpesa, QuotaPIC FROM Patolog
<xs:field xpath="mstns:IdxPaziente" />
<xs:field xpath="mstns:DataVisita" />
</xs:unique>
<xs:unique name="VisPAI_Prest_Constraint1" msdata:ConstraintName="Constraint1" msdata:PrimaryKey="true">
<xs:selector xpath=".//mstns:VisPAI_Prest" />
<xs:field xpath="mstns:IdxPaziente" />
<xs:field xpath="mstns:DataVisita" />
<xs:field xpath="mstns:CodPres" />
<xs:field xpath="mstns:Num" />
</xs:unique>
</xs:element>
<xs:annotation>
<xs:appinfo>
@@ -2619,6 +2761,7 @@ SELECT CodPatologia, Livello, DescrPatologia, BudgetSpesa, QuotaPIC FROM Patolog
<msdata:Relationship name="FK_VisPatoPaz_AnagPazienti" msdata:parent="AnagPazienti" msdata:child="VisPatoPaz" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="VisPatoPaz" msprop:Generator_ChildPropName="GetVisPatoPazRows" msprop:Generator_UserRelationName="FK_VisPatoPaz_AnagPazienti" msprop:Generator_RelationVarName="relationFK_VisPatoPaz_AnagPazienti" msprop:Generator_UserParentTable="AnagPazienti" msprop:Generator_ParentPropName="AnagPazientiRow" />
<msdata:Relationship name="VisVMD_AnagPazienti" msdata:parent="VisVMD" msdata:child="AnagPazienti" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="AnagPazienti" msprop:Generator_ChildPropName="GetAnagPazientiRows" msprop:Generator_UserRelationName="VisVMD_AnagPazienti" msprop:Generator_RelationVarName="relationVisVMD_AnagPazienti" msprop:Generator_UserParentTable="VisVMD" msprop:Generator_ParentPropName="VisVMDRow" />
<msdata:Relationship name="VisPAI_AnagPazienti" msdata:parent="VisPAI" msdata:child="AnagPazienti" msdata:parentkey="IdxPaziente" msdata:childkey="IdxPaziente" msprop:Generator_UserChildTable="AnagPazienti" msprop:Generator_ChildPropName="GetAnagPazientiRows" msprop:Generator_UserRelationName="VisPAI_AnagPazienti" msprop:Generator_RelationVarName="relationVisPAI_AnagPazienti" msprop:Generator_UserParentTable="VisPAI" msprop:Generator_ParentPropName="VisPAIRow" />
<msdata:Relationship name="VisPAI_Prest_VisPAI" msdata:parent="VisPAI_Prest" msdata:child="VisPAI" msdata:parentkey="IdxPaziente DataVisita" msdata:childkey="IdxPaziente DataVisita" msprop:Generator_UserChildTable="VisPAI" msprop:Generator_ChildPropName="GetVisPAIRows" msprop:Generator_UserRelationName="VisPAI_Prest_VisPAI" msprop:Generator_RelationVarName="relationVisPAI_Prest_VisPAI" msprop:Generator_UserParentTable="VisPAI_Prest" msprop:Generator_ParentPropName="VisPAI_PrestRowParent" />
</xs:appinfo>
</xs:annotation>
</xs:schema>
+52 -35
View File
@@ -4,24 +4,25 @@
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="-15" ViewPortY="1" 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="16" ViewPortY="1" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:AnagPazienti" ZOrder="8" X="680" Y="16" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:VisLab" ZOrder="13" X="326" Y="378" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:VisAnamCli" ZOrder="21" X="1100" Y="11" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:VisCardioPol" ZOrder="9" X="757" Y="617" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:VisRelazFin" ZOrder="16" X="371" Y="23" Height="296" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="145" />
<Shape ID="DesignTable:stp_rep_DatiFullByPazienteData" ZOrder="18" X="-5" Y="284" Height="365" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:VisBioMecAnt" ZOrder="15" X="1078" Y="506" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:Pazienti2Labels" ZOrder="11" X="87" Y="653" Height="181" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="76" />
<Shape ID="DesignTable:ElencoVisite" ZOrder="10" X="11" Y="1123" Height="250" Width="252" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="191" />
<Shape ID="DesignTable:Patologie" ZOrder="7" X="7" Y="16" Height="204" Width="234" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="145" />
<Shape ID="DesignTable:VisPatoPaz" ZOrder="6" X="199" Y="1191" Height="342" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="191" />
<Shape ID="DesignTable:VisVMD" ZOrder="4" X="565" Y="1206" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:VisPAI" ZOrder="3" X="989" Y="1223" Height="365" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="214" />
<Shape ID="DesignTable:AnagPazienti" ZOrder="11" X="680" Y="16" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:VisLab" ZOrder="15" X="326" Y="378" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:VisAnamCli" ZOrder="23" X="1100" Y="11" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:VisCardioPol" ZOrder="12" X="757" Y="617" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:VisRelazFin" ZOrder="18" X="371" Y="23" Height="296" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="145" />
<Shape ID="DesignTable:stp_rep_DatiFullByPazienteData" ZOrder="20" X="-5" Y="284" Height="365" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:VisBioMecAnt" ZOrder="17" X="1078" Y="506" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:Pazienti2Labels" ZOrder="13" X="87" Y="653" Height="181" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="76" />
<Shape ID="DesignTable:ElencoVisite" ZOrder="1" X="725" Y="1150" Height="250" Width="252" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="191" />
<Shape ID="DesignTable:Patologie" ZOrder="10" X="7" Y="16" Height="204" Width="234" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="145" />
<Shape ID="DesignTable:VisPatoPaz" ZOrder="9" X="34" Y="884" Height="342" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="191" />
<Shape ID="DesignTable:VisVMD" ZOrder="7" X="375" Y="935" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:VisPAI" ZOrder="6" X="1091" Y="998" Height="365" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="214" />
<Shape ID="DesignTable:VisPAI_Prest" ZOrder="3" X="1099" Y="1416" Height="411" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="214" />
</Shapes>
<Connectors>
<Connector ID="DesignRelation:FK_VisClinGen_AnagPazienti" ZOrder="14" LineWidth="11">
<Connector ID="DesignRelation:FK_VisClinGen_AnagPazienti" ZOrder="16" LineWidth="11">
<RoutePoints>
<Point>
<X>680</X>
@@ -33,7 +34,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_VisAnamCli_AnagPazienti" ZOrder="22" LineWidth="11">
<Connector ID="DesignRelation:FK_VisAnamCli_AnagPazienti" ZOrder="24" LineWidth="11">
<RoutePoints>
<Point>
<X>980</X>
@@ -45,7 +46,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_VisCardioPol_AnagPazienti" ZOrder="20" LineWidth="11">
<Connector ID="DesignRelation:FK_VisCardioPol_AnagPazienti" ZOrder="22" LineWidth="11">
<RoutePoints>
<Point>
<X>842</X>
@@ -57,7 +58,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_VisRelazFin_AnagPazienti" ZOrder="19" LineWidth="11">
<Connector ID="DesignRelation:FK_VisRelazFin_AnagPazienti" ZOrder="21" LineWidth="11">
<RoutePoints>
<Point>
<X>680</X>
@@ -69,7 +70,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:AnagPazienti_v_VisBioMecAnt" ZOrder="17" LineWidth="11">
<Connector ID="DesignRelation:AnagPazienti_v_VisBioMecAnt" ZOrder="19" LineWidth="11">
<RoutePoints>
<Point>
<X>980</X>
@@ -89,7 +90,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_Pazienti2Labels_AnagPazienti" ZOrder="12" LineWidth="11">
<Connector ID="DesignRelation:FK_Pazienti2Labels_AnagPazienti" ZOrder="14" LineWidth="11">
<RoutePoints>
<Point>
<X>721</X>
@@ -105,7 +106,7 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:FK_VisPatoPaz_AnagPazienti" ZOrder="5" LineWidth="11">
<Connector ID="DesignRelation:FK_VisPatoPaz_AnagPazienti" ZOrder="8" LineWidth="11">
<RoutePoints>
<Point>
<X>729</X>
@@ -113,38 +114,42 @@
</Point>
<Point>
<X>729</X>
<Y>938</Y>
<Y>876</Y>
</Point>
<Point>
<X>439</X>
<Y>938</Y>
<X>274</X>
<Y>876</Y>
</Point>
<Point>
<X>439</X>
<Y>1191</Y>
<X>274</X>
<Y>884</Y>
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:VisVMD_AnagPazienti" ZOrder="2" LineWidth="11">
<Connector ID="DesignRelation:VisVMD_AnagPazienti" ZOrder="5" LineWidth="11">
<RoutePoints>
<Point>
<X>772</X>
<Y>1206</Y>
<X>658</X>
<Y>935</Y>
</Point>
<Point>
<X>772</X>
<Y>473</Y>
<X>658</X>
<Y>456</Y>
</Point>
<Point>
<X>680</X>
<Y>456</Y>
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:VisPAI_AnagPazienti" ZOrder="1" LineWidth="11">
<Connector ID="DesignRelation:VisPAI_AnagPazienti" ZOrder="4" LineWidth="11">
<RoutePoints>
<Point>
<X>1046</X>
<Y>1223</Y>
<X>1148</X>
<Y>998</Y>
</Point>
<Point>
<X>1046</X>
<X>1148</X>
<Y>473</Y>
</Point>
<Point>
@@ -153,5 +158,17 @@
</Point>
</RoutePoints>
</Connector>
<Connector ID="DesignRelation:VisPAI_Prest_VisPAI" ZOrder="2" LineWidth="11">
<RoutePoints>
<Point>
<X>1336</X>
<Y>1416</Y>
</Point>
<Point>
<X>1336</X>
<Y>1363</Y>
</Point>
</RoutePoints>
</Connector>
</Connectors>
</DiagramLayout>
+3
View File
@@ -29,6 +29,7 @@ namespace ScheMe_Data
taVLab = new DS_ApplicazioneTableAdapters.VisLabTableAdapter();
taVPP = new DS_ApplicazioneTableAdapters.VisPatoPazTableAdapter();
taVPAI = new DS_ApplicazioneTableAdapters.VisPAITableAdapter();
taVPAI_Prest = new DS_ApplicazioneTableAdapters.VisPAI_PrestTableAdapter();
taVRF = new DS_ApplicazioneTableAdapters.VisRelazFinTableAdapter();
taRepVis = new DS_ApplicazioneTableAdapters.stp_rep_DatiFullByPazienteDataTableAdapter();
taFile = new DS_UtilityTableAdapters.tblFilesTableAdapter();
@@ -48,6 +49,7 @@ namespace ScheMe_Data
taVLab.Connection.ConnectionString = connStr;
taVPP.Connection.ConnectionString = connStr;
taVPAI.Connection.ConnectionString = connStr;
taVPAI_Prest.Connection.ConnectionString = connStr;
taVRF.Connection.ConnectionString = connStr;
taRepVis.Connection.ConnectionString = connStr;
taFile.Connection.ConnectionString = connStrFiles;
@@ -64,6 +66,7 @@ namespace ScheMe_Data
public DS_ApplicazioneTableAdapters.VisLabTableAdapter taVLab;
public DS_ApplicazioneTableAdapters.VisPatoPazTableAdapter taVPP;
public DS_ApplicazioneTableAdapters.VisPAITableAdapter taVPAI;
public DS_ApplicazioneTableAdapters.VisPAI_PrestTableAdapter taVPAI_Prest;
public DS_ApplicazioneTableAdapters.VisRelazFinTableAdapter taVRF;
public DS_ApplicazioneTableAdapters.stp_rep_DatiFullByPazienteDataTableAdapter taRepVis;