Fix rinominate colonne

This commit is contained in:
Samuele E. Locatelli
2020-10-26 16:46:54 +01:00
parent 010b5635b9
commit 062cb9986c
3 changed files with 106 additions and 16 deletions
+94 -7
View File
@@ -944,7 +944,7 @@ namespace AppData {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public TaskListRow AddTaskListRow(string NumTask, string CodGruppo, string CodArt, int QtaRic, double TimeEst, int QtaEv, int Prior, bool Concluso, System.DateTime DataIns, int NumRec, int CurrStatus, decimal MinTotWrk, decimal TCMedio, decimal MinTotFix) {
public TaskListRow AddTaskListRow(string NumTask, string CodGruppo, string CodArt, int QtaRic, decimal TimeEst, int QtaEv, int Prior, bool Concluso, System.DateTime DataIns, int NumRec, int CurrStatus, decimal MinTotWrk, decimal TCMedio, decimal MinTotFix) {
TaskListRow rowTaskListRow = ((TaskListRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
NumTask,
@@ -1017,7 +1017,7 @@ namespace AppData {
base.Columns.Add(this.columnCodArt);
this.columnQtaRic = new global::System.Data.DataColumn("QtaRic", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnQtaRic);
this.columnTimeEst = new global::System.Data.DataColumn("TimeEst", typeof(double), null, global::System.Data.MappingType.Element);
this.columnTimeEst = new global::System.Data.DataColumn("TimeEst", typeof(decimal), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnTimeEst);
this.columnQtaEv = new global::System.Data.DataColumn("QtaEv", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnQtaEv);
@@ -1793,6 +1793,8 @@ namespace AppData {
private global::System.Data.DataColumn columnQtaRic;
private global::System.Data.DataColumn columnTempoPrev;
private global::System.Data.DataColumn columnCodOpr;
private global::System.Data.DataColumn columnNomeOpr;
@@ -1888,6 +1890,14 @@ namespace AppData {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public global::System.Data.DataColumn TempoPrevColumn {
get {
return this.columnTempoPrev;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public global::System.Data.DataColumn CodOprColumn {
@@ -2013,7 +2023,23 @@ namespace AppData {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public TaskRecRow AddTaskRecRow(string NumTask, string CodTag, string CodArt, int QtaRic, string CodOpr, string NomeOpr, string CodPost, string Descrizione, string CodFase, string DescrFase, System.DateTime DtStart, System.DateTime DtEnd, int QtaEv, decimal DurataMin, decimal TCiclo) {
public TaskRecRow AddTaskRecRow(
string NumTask,
string CodTag,
string CodArt,
int QtaRic,
decimal TempoPrev,
string CodOpr,
string NomeOpr,
string CodPost,
string Descrizione,
string CodFase,
string DescrFase,
System.DateTime DtStart,
System.DateTime DtEnd,
int QtaEv,
decimal DurataMin,
decimal TCiclo) {
TaskRecRow rowTaskRecRow = ((TaskRecRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
null,
@@ -2021,6 +2047,7 @@ namespace AppData {
CodTag,
CodArt,
QtaRic,
TempoPrev,
CodOpr,
NomeOpr,
CodPost,
@@ -2066,6 +2093,7 @@ namespace AppData {
this.columnCodTag = base.Columns["CodTag"];
this.columnCodArt = base.Columns["CodArt"];
this.columnQtaRic = base.Columns["QtaRic"];
this.columnTempoPrev = base.Columns["TempoPrev"];
this.columnCodOpr = base.Columns["CodOpr"];
this.columnNomeOpr = base.Columns["NomeOpr"];
this.columnCodPost = base.Columns["CodPost"];
@@ -2092,6 +2120,8 @@ namespace AppData {
base.Columns.Add(this.columnCodArt);
this.columnQtaRic = new global::System.Data.DataColumn("QtaRic", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnQtaRic);
this.columnTempoPrev = new global::System.Data.DataColumn("TempoPrev", typeof(decimal), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnTempoPrev);
this.columnCodOpr = new global::System.Data.DataColumn("CodOpr", typeof(string), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnCodOpr);
this.columnNomeOpr = new global::System.Data.DataColumn("NomeOpr", typeof(string), null, global::System.Data.MappingType.Element);
@@ -2129,6 +2159,7 @@ namespace AppData {
this.columnCodArt.AllowDBNull = false;
this.columnCodArt.MaxLength = 50;
this.columnQtaRic.AllowDBNull = false;
this.columnTempoPrev.AllowDBNull = false;
this.columnCodOpr.AllowDBNull = false;
this.columnCodOpr.MaxLength = 50;
this.columnNomeOpr.ReadOnly = true;
@@ -5650,6 +5681,8 @@ namespace AppData {
private global::System.Data.DataColumn columnQtaRic;
private global::System.Data.DataColumn columnTempoPrev;
private global::System.Data.DataColumn columnIdxRec;
private global::System.Data.DataColumn columnDtStart;
@@ -5719,6 +5752,14 @@ namespace AppData {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public global::System.Data.DataColumn TempoPrevColumn {
get {
return this.columnTempoPrev;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public global::System.Data.DataColumn IdxRecColumn {
@@ -5804,12 +5845,13 @@ namespace AppData {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public TaskRecAggRow AddTaskRecAggRow(string NumTask, string CodArt, int QtaRic, int IdxRec, System.DateTime DtStart, System.DateTime DtEnd, int QtaEv, decimal DurataMin, decimal TCiclo) {
public TaskRecAggRow AddTaskRecAggRow(string NumTask, string CodArt, int QtaRic, decimal TempoPrev, int IdxRec, System.DateTime DtStart, System.DateTime DtEnd, int QtaEv, decimal DurataMin, decimal TCiclo) {
TaskRecAggRow rowTaskRecAggRow = ((TaskRecAggRow)(this.NewRow()));
object[] columnValuesArray = new object[] {
NumTask,
CodArt,
QtaRic,
TempoPrev,
IdxRec,
DtStart,
DtEnd,
@@ -5848,6 +5890,7 @@ namespace AppData {
this.columnNumTask = base.Columns["NumTask"];
this.columnCodArt = base.Columns["CodArt"];
this.columnQtaRic = base.Columns["QtaRic"];
this.columnTempoPrev = base.Columns["TempoPrev"];
this.columnIdxRec = base.Columns["IdxRec"];
this.columnDtStart = base.Columns["DtStart"];
this.columnDtEnd = base.Columns["DtEnd"];
@@ -5865,6 +5908,8 @@ namespace AppData {
base.Columns.Add(this.columnCodArt);
this.columnQtaRic = new global::System.Data.DataColumn("QtaRic", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnQtaRic);
this.columnTempoPrev = new global::System.Data.DataColumn("TempoPrev", typeof(decimal), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnTempoPrev);
this.columnIdxRec = new global::System.Data.DataColumn("IdxRec", typeof(int), null, global::System.Data.MappingType.Element);
base.Columns.Add(this.columnIdxRec);
this.columnDtStart = new global::System.Data.DataColumn("DtStart", typeof(global::System.DateTime), null, global::System.Data.MappingType.Element);
@@ -5885,6 +5930,7 @@ namespace AppData {
this.columnCodArt.ReadOnly = true;
this.columnCodArt.MaxLength = 50;
this.columnQtaRic.ReadOnly = true;
this.columnTempoPrev.ReadOnly = true;
this.columnIdxRec.ReadOnly = true;
this.columnDtStart.ReadOnly = true;
this.columnDtEnd.ReadOnly = true;
@@ -6077,10 +6123,10 @@ namespace AppData {
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public double TimeEst {
public decimal TimeEst {
get {
try {
return ((double)(this[this.tableTaskList.TimeEstColumn]));
return ((decimal)(this[this.tableTaskList.TimeEstColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("Il valore della colonna \'TimeEst\' nella tabella \'TaskList\' è DBNull.", e);
@@ -6515,6 +6561,17 @@ namespace AppData {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public decimal TempoPrev {
get {
return ((decimal)(this[this.tableTaskRec.TempoPrevColumn]));
}
set {
this[this.tableTaskRec.TempoPrevColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public string CodOpr {
@@ -8181,6 +8238,22 @@ namespace AppData {
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public decimal TempoPrev {
get {
try {
return ((decimal)(this[this.tableTaskRecAgg.TempoPrevColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("Il valore della colonna \'TempoPrev\' nella tabella \'TaskRecAgg\' è DBNull.", e);
}
}
set {
this[this.tableTaskRecAgg.TempoPrevColumn] = value;
}
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public int IdxRec {
@@ -8301,6 +8374,18 @@ namespace AppData {
this[this.tableTaskRecAgg.QtaRicColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public bool IsTempoPrevNull() {
return this.IsNull(this.tableTaskRecAgg.TempoPrevColumn);
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public void SetTempoPrevNull() {
this[this.tableTaskRecAgg.TempoPrevColumn] = global::System.Convert.DBNull;
}
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Data.Design.TypedDataSetGenerator", "16.0.0.0")]
public bool IsIdxRecNull() {
@@ -9005,7 +9090,7 @@ namespace AppData.DS_AppTableAdapters {
this._commandCollection = new global::System.Data.SqlClient.SqlCommand[8];
this._commandCollection[0] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[0].Connection = this.Connection;
this._commandCollection[0].CommandText = "SELECT *\r\nFROM v_TaskList";
this._commandCollection[0].CommandText = "SELECT * FROM v_TaskList";
this._commandCollection[0].CommandType = global::System.Data.CommandType.Text;
this._commandCollection[1] = new global::System.Data.SqlClient.SqlCommand();
this._commandCollection[1].Connection = this.Connection;
@@ -10216,6 +10301,7 @@ SELECT CodOpr, Cognome, Nome FROM AnagOpr WHERE (CodOpr = @CodOpr)";
tableMapping.ColumnMappings.Add("CodTag", "CodTag");
tableMapping.ColumnMappings.Add("CodArt", "CodArt");
tableMapping.ColumnMappings.Add("QtaRic", "QtaRic");
tableMapping.ColumnMappings.Add("TempoPrev", "TempoPrev");
tableMapping.ColumnMappings.Add("CodOpr", "CodOpr");
tableMapping.ColumnMappings.Add("NomeOpr", "NomeOpr");
tableMapping.ColumnMappings.Add("CodPost", "CodPost");
@@ -14373,6 +14459,7 @@ SELECT CodTag, TipoTag, DescrTag FROM AnagTag WHERE (CodTag = @CodTag)";
tableMapping.ColumnMappings.Add("NumTask", "NumTask");
tableMapping.ColumnMappings.Add("CodArt", "CodArt");
tableMapping.ColumnMappings.Add("QtaRic", "QtaRic");
tableMapping.ColumnMappings.Add("TempoPrev", "TempoPrev");
tableMapping.ColumnMappings.Add("IdxRec", "IdxRec");
tableMapping.ColumnMappings.Add("DtStart", "DtStart");
tableMapping.ColumnMappings.Add("DtEnd", "DtEnd");
+6 -3
View File
@@ -12,8 +12,7 @@
<DbSource ConnectionRef="C_TRACKConnectionString (Settings)" DbObjectName="C_TRACK.dbo.v_TaskList" 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="true">
<CommandText>SELECT *
FROM v_TaskList</CommandText>
<CommandText>SELECT * FROM v_TaskList</CommandText>
<Parameters />
</DbCommand>
</SelectCommand>
@@ -289,6 +288,7 @@ FROM v_TaskRec</CommandText>
<Mapping SourceColumn="CodTag" DataSetColumn="CodTag" />
<Mapping SourceColumn="CodArt" DataSetColumn="CodArt" />
<Mapping SourceColumn="QtaRic" DataSetColumn="QtaRic" />
<Mapping SourceColumn="TempoPrev" DataSetColumn="TempoPrev" />
<Mapping SourceColumn="CodOpr" DataSetColumn="CodOpr" />
<Mapping SourceColumn="NomeOpr" DataSetColumn="NomeOpr" />
<Mapping SourceColumn="CodPost" DataSetColumn="CodPost" />
@@ -1149,6 +1149,7 @@ SELECT CodTag, TipoTag, DescrTag FROM AnagTag WHERE (CodTag = @CodTag)</CommandT
<Mapping SourceColumn="NumTask" DataSetColumn="NumTask" />
<Mapping SourceColumn="CodArt" DataSetColumn="CodArt" />
<Mapping SourceColumn="QtaRic" DataSetColumn="QtaRic" />
<Mapping SourceColumn="TempoPrev" DataSetColumn="TempoPrev" />
<Mapping SourceColumn="IdxRec" DataSetColumn="IdxRec" />
<Mapping SourceColumn="DtStart" DataSetColumn="DtStart" />
<Mapping SourceColumn="DtEnd" DataSetColumn="DtEnd" />
@@ -1191,7 +1192,7 @@ SELECT CodTag, TipoTag, DescrTag FROM AnagTag WHERE (CodTag = @CodTag)</CommandT
</xs:simpleType>
</xs:element>
<xs:element name="QtaRic" msprop:Generator_ColumnVarNameInTable="columnQtaRic" msprop:Generator_ColumnPropNameInRow="QtaRic" msprop:Generator_ColumnPropNameInTable="QtaRicColumn" msprop:Generator_UserColumnName="QtaRic" type="xs:int" />
<xs:element name="TimeEst" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnTimeEst" msprop:Generator_ColumnPropNameInRow="TimeEst" msprop:Generator_ColumnPropNameInTable="TimeEstColumn" msprop:Generator_UserColumnName="TimeEst" type="xs:double" minOccurs="0" />
<xs:element name="TimeEst" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnTimeEst" msprop:Generator_ColumnPropNameInRow="TimeEst" msprop:Generator_ColumnPropNameInTable="TimeEstColumn" msprop:Generator_UserColumnName="TimeEst" type="xs:decimal" minOccurs="0" />
<xs:element name="QtaEv" msprop:Generator_ColumnVarNameInTable="columnQtaEv" msprop:Generator_ColumnPropNameInRow="QtaEv" msprop:Generator_ColumnPropNameInTable="QtaEvColumn" msprop:Generator_UserColumnName="QtaEv" type="xs:int" minOccurs="0" />
<xs:element name="Prior" msprop:Generator_ColumnVarNameInTable="columnPrior" msprop:Generator_ColumnPropNameInRow="Prior" msprop:Generator_ColumnPropNameInTable="PriorColumn" msprop:Generator_UserColumnName="Prior" type="xs:int" />
<xs:element name="Concluso" msprop:Generator_ColumnVarNameInTable="columnConcluso" msprop:Generator_ColumnPropNameInRow="Concluso" msprop:Generator_ColumnPropNameInTable="ConclusoColumn" msprop:Generator_UserColumnName="Concluso" type="xs:boolean" />
@@ -1279,6 +1280,7 @@ SELECT CodTag, TipoTag, DescrTag FROM AnagTag WHERE (CodTag = @CodTag)</CommandT
</xs:simpleType>
</xs:element>
<xs:element name="QtaRic" msprop:Generator_ColumnVarNameInTable="columnQtaRic" msprop:Generator_ColumnPropNameInRow="QtaRic" msprop:Generator_ColumnPropNameInTable="QtaRicColumn" msprop:Generator_UserColumnName="QtaRic" type="xs:int" />
<xs:element name="TempoPrev" msprop:Generator_ColumnVarNameInTable="columnTempoPrev" msprop:Generator_ColumnPropNameInRow="TempoPrev" msprop:Generator_ColumnPropNameInTable="TempoPrevColumn" msprop:Generator_UserColumnName="TempoPrev" type="xs:decimal" />
<xs:element name="CodOpr" msprop:Generator_ColumnVarNameInTable="columnCodOpr" msprop:Generator_ColumnPropNameInRow="CodOpr" msprop:Generator_ColumnPropNameInTable="CodOprColumn" msprop:Generator_UserColumnName="CodOpr">
<xs:simpleType>
<xs:restriction base="xs:string">
@@ -1776,6 +1778,7 @@ SELECT CodTag, TipoTag, DescrTag FROM AnagTag WHERE (CodTag = @CodTag)</CommandT
</xs:simpleType>
</xs:element>
<xs:element name="QtaRic" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnQtaRic" msprop:Generator_ColumnPropNameInRow="QtaRic" msprop:Generator_ColumnPropNameInTable="QtaRicColumn" msprop:Generator_UserColumnName="QtaRic" type="xs:int" minOccurs="0" />
<xs:element name="TempoPrev" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnTempoPrev" msprop:Generator_ColumnPropNameInRow="TempoPrev" msprop:Generator_ColumnPropNameInTable="TempoPrevColumn" msprop:Generator_UserColumnName="TempoPrev" type="xs:decimal" minOccurs="0" />
<xs:element name="IdxRec" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnIdxRec" msprop:Generator_ColumnPropNameInRow="IdxRec" msprop:Generator_ColumnPropNameInTable="IdxRecColumn" msprop:Generator_UserColumnName="IdxRec" type="xs:int" minOccurs="0" />
<xs:element name="DtStart" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnDtStart" msprop:Generator_ColumnPropNameInRow="DtStart" msprop:Generator_ColumnPropNameInTable="DtStartColumn" msprop:Generator_UserColumnName="DtStart" type="xs:dateTime" minOccurs="0" />
<xs:element name="DtEnd" msdata:ReadOnly="true" msprop:Generator_ColumnVarNameInTable="columnDtEnd" msprop:Generator_ColumnPropNameInRow="DtEnd" msprop:Generator_ColumnPropNameInTable="DtEndColumn" msprop:Generator_UserColumnName="DtEnd" type="xs:dateTime" minOccurs="0" />
+6 -6
View File
@@ -4,22 +4,22 @@
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="-10" ViewPortY="342" 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="-10" ViewPortY="304" xmlns:ex="urn:schemas-microsoft-com:xml-msdatasource-layout-extended" xmlns="urn:schemas-microsoft-com:xml-msdatasource-layout">
<Shapes>
<Shape ID="DesignTable:TaskList" ZOrder="2" X="85" Y="299" Height="419" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="292" />
<Shape ID="DesignTable:TaskList" ZOrder="2" X="85" Y="299" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:AnagFasi" ZOrder="11" X="887" Y="474" Height="191" Width="197" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:AnagOpr" ZOrder="14" X="910" Y="728" Height="153" Width="197" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:TaskRec" ZOrder="5" X="519" Y="541" Height="457" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="306" />
<Shape ID="DesignTable:TaskRec" ZOrder="5" X="519" Y="541" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:AnagPost" ZOrder="10" X="519" Y="209" Height="267" Width="200" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="140" />
<Shape ID="DesignTable:TraEv2Stati" ZOrder="13" X="195" Y="1020" Height="248" Width="210" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="178" />
<Shape ID="DesignTable:AnagEventi" ZOrder="12" X="903" Y="966" Height="172" Width="211" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:PODL" ZOrder="9" X="560" Y="1047" Height="343" Width="199" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:AnagArticoli" ZOrder="8" X="258" Y="1475" Height="229" Width="217" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
<Shape ID="DesignTable:TaskList2Post" ZOrder="3" X="809" Y="16" Height="400" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:AnagArticoli" ZOrder="8" X="152" Y="1317" Height="229" Width="217" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="159" />
<Shape ID="DesignTable:TaskList2Post" ZOrder="3" X="809" Y="16" Height="381" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="254" />
<Shape ID="DesignTable:AnagStati" ZOrder="7" X="220" Y="54" Height="191" Width="201" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="102" />
<Shape ID="DesignTable:Opr2Post" ZOrder="6" X="175" Y="774" Height="229" Width="300" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="121" />
<Shape ID="DesignTable:AnagTag" ZOrder="4" X="563" Y="18" Height="153" Width="196" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="83" />
<Shape ID="DesignTable:TaskRecAgg" ZOrder="1" X="833" Y="1202" Height="248" Width="232" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="197" />
<Shape ID="DesignTable:TaskRecAgg" ZOrder="1" X="833" Y="1202" Height="267" Width="232" AdapterExpanded="true" DataTableExpanded="true" OldAdapterHeight="0" OldDataTableHeight="0" SplitterPosition="216" />
</Shapes>
<Connectors />
</DiagramLayout>