aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.Integration/Observables/Entities/Configuration.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.Integration/Observables/Entities/Configuration.cs')
-rw-r--r--Software/Visual_Studio/Tango.Integration/Observables/Entities/Configuration.cs23
1 files changed, 23 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.Integration/Observables/Entities/Configuration.cs b/Software/Visual_Studio/Tango.Integration/Observables/Entities/Configuration.cs
index fb993a36e..78470f2ff 100644
--- a/Software/Visual_Studio/Tango.Integration/Observables/Entities/Configuration.cs
+++ b/Software/Visual_Studio/Tango.Integration/Observables/Entities/Configuration.cs
@@ -3,6 +3,8 @@ using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.ComponentModel.DataAnnotations;
using System.ComponentModel.DataAnnotations.Schema;
+using System.Xml.Serialization;
+using Newtonsoft.Json;
using System.Linq;
using Tango.DAL.Remote.DB;
@@ -58,6 +60,7 @@ namespace Tango.Integration.Observables
/// </summary>
[Column("APPLICATION_VERSION_GUID")]
[ForeignKey("ApplicationVersion")]
+
public String ApplicationVersionGuid
{
get
@@ -78,6 +81,7 @@ namespace Tango.Integration.Observables
/// </summary>
[Column("APPLICATION_OS_VERSION_GUID")]
[ForeignKey("ApplicationOsVersion")]
+
public String ApplicationOsVersionGuid
{
get
@@ -98,6 +102,7 @@ namespace Tango.Integration.Observables
/// </summary>
[Column("APPLICATION_FIRMWARE_VERSION_GUID")]
[ForeignKey("ApplicationFirmwareVersion")]
+
public String ApplicationFirmwareVersionGuid
{
get
@@ -118,6 +123,7 @@ namespace Tango.Integration.Observables
/// </summary>
[Column("APPLICATION_DISPLAY_PANEL_VERSION_GUID")]
[ForeignKey("ApplicationDisplayPanelVersion")]
+
public String ApplicationDisplayPanelVersionGuid
{
get
@@ -138,6 +144,7 @@ namespace Tango.Integration.Observables
/// </summary>
[Column("EMBEDDED_FIRMWARE_VERSION_GUID")]
[ForeignKey("EmbeddedFirmwareVersion")]
+
public String EmbeddedFirmwareVersionGuid
{
get
@@ -158,6 +165,7 @@ namespace Tango.Integration.Observables
/// </summary>
[Column("EMBEDDED_SOFTWARE_VERSION_GUID")]
[ForeignKey("EmbeddedSoftwareVersion")]
+
public String EmbeddedSoftwareVersionGuid
{
get
@@ -178,6 +186,7 @@ namespace Tango.Integration.Observables
/// </summary>
[Column("HARDWARE_VERSION_GUID")]
[ForeignKey("HardwareVersion")]
+
public String HardwareVersionGuid
{
get
@@ -197,6 +206,8 @@ namespace Tango.Integration.Observables
/// Gets or sets the configuration application display panel versions.
/// </summary>
+ [XmlIgnore]
+ [JsonIgnore]
public virtual ApplicationDisplayPanelVersion ApplicationDisplayPanelVersion
{
get
@@ -216,6 +227,8 @@ namespace Tango.Integration.Observables
/// Gets or sets the configuration application firmware versions.
/// </summary>
+ [XmlIgnore]
+ [JsonIgnore]
public virtual ApplicationFirmwareVersion ApplicationFirmwareVersion
{
get
@@ -235,6 +248,8 @@ namespace Tango.Integration.Observables
/// Gets or sets the configuration application os versions.
/// </summary>
+ [XmlIgnore]
+ [JsonIgnore]
public virtual ApplicationOsVersion ApplicationOsVersion
{
get
@@ -254,6 +269,8 @@ namespace Tango.Integration.Observables
/// Gets or sets the configuration application versions.
/// </summary>
+ [XmlIgnore]
+ [JsonIgnore]
public virtual ApplicationVersion ApplicationVersion
{
get
@@ -273,6 +290,8 @@ namespace Tango.Integration.Observables
/// Gets or sets the configuration embedded firmware versions.
/// </summary>
+ [XmlIgnore]
+ [JsonIgnore]
public virtual EmbeddedFirmwareVersion EmbeddedFirmwareVersion
{
get
@@ -292,6 +311,8 @@ namespace Tango.Integration.Observables
/// Gets or sets the configuration embedded software versions.
/// </summary>
+ [XmlIgnore]
+ [JsonIgnore]
public virtual EmbeddedSoftwareVersion EmbeddedSoftwareVersion
{
get
@@ -311,6 +332,8 @@ namespace Tango.Integration.Observables
/// Gets or sets the configuration hardware versions.
/// </summary>
+ [XmlIgnore]
+ [JsonIgnore]
public virtual HardwareVersion HardwareVersion
{
get