aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SQLExaminer/ExaminerDataReport.cs
diff options
context:
space:
mode:
authorRoy Ben Shabat <Roy.mail.net@gmail.com>2018-08-06 09:19:53 +0300
committerRoy Ben Shabat <Roy.mail.net@gmail.com>2018-08-06 09:19:53 +0300
commitcd22de677cf942c8bf82c8bbb6e02ee5630076eb (patch)
tree5fde4c94370c174e4aac3f06cf89dbb09e51b9a8 /Software/Visual_Studio/Tango.SQLExaminer/ExaminerDataReport.cs
parent4fb8ff57dcd3bce39ac54d4c52cef091df8c570b (diff)
downloadTango-cd22de677cf942c8bf82c8bbb6e02ee5630076eb.tar.gz
Tango-cd22de677cf942c8bf82c8bbb6e02ee5630076eb.zip
Working on SQL Examiner Reports Loading..
Diffstat (limited to 'Software/Visual_Studio/Tango.SQLExaminer/ExaminerDataReport.cs')
-rw-r--r--Software/Visual_Studio/Tango.SQLExaminer/ExaminerDataReport.cs35
1 files changed, 35 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.SQLExaminer/ExaminerDataReport.cs b/Software/Visual_Studio/Tango.SQLExaminer/ExaminerDataReport.cs
new file mode 100644
index 000000000..333b31202
--- /dev/null
+++ b/Software/Visual_Studio/Tango.SQLExaminer/ExaminerDataReport.cs
@@ -0,0 +1,35 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using System.Xml.Serialization;
+
+namespace Tango.SQLExaminer
+{
+ [XmlRoot("VarianceReport")]
+ public class ExaminerDataReport : ExaminerSerializedObject<ExaminerDataReport>
+ {
+ [XmlAttribute("date")]
+ public String Date { get; set; }
+
+ public List<ReportSource> Sources { get; set; }
+
+ [XmlArray("Details")]
+ public List<CompareTotalItem> Totals { get; set; }
+
+ [XmlArray("Objects")]
+ public List<CompareTable> Summary { get; set; }
+
+ [XmlElement("Object")]
+ public List<CompareTable> Details { get; set; }
+
+ public ExaminerDataReport()
+ {
+ Sources = new List<ReportSource>();
+ Totals = new List<CompareTotalItem>();
+ Summary = new List<CompareTable>();
+ Details = new List<CompareTable>();
+ }
+ }
+}