aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.DAL.Remote/DB/JOB.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Tango.DAL.Remote/DB/JOB.cs')
-rw-r--r--Software/Visual_Studio/Tango.DAL.Remote/DB/JOB.cs5
1 files changed, 3 insertions, 2 deletions
diff --git a/Software/Visual_Studio/Tango.DAL.Remote/DB/JOB.cs b/Software/Visual_Studio/Tango.DAL.Remote/DB/JOB.cs
index f30b43230..eb8c0a998 100644
--- a/Software/Visual_Studio/Tango.DAL.Remote/DB/JOB.cs
+++ b/Software/Visual_Studio/Tango.DAL.Remote/DB/JOB.cs
@@ -17,6 +17,7 @@ namespace Tango.DAL.Remote.DB
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
public JOB()
{
+ this.JOB_RUNS = new HashSet<JOB_RUNS>();
this.SEGMENTS = new HashSet<SEGMENT>();
}
@@ -56,12 +57,12 @@ namespace Tango.DAL.Remote.DB
public Nullable<System.DateTime> SAMPLE_DYE_APPROVE_DATE { get; set; }
public int EDITING_STATE { get; set; }
public double LENGTH_PERCENTAGE_FACTOR { get; set; }
- public bool IS_SYNCHRONIZED { get; set; }
- public int SOURCE { get; set; }
public virtual COLOR_CATALOGS COLOR_CATALOGS { get; set; }
public virtual COLOR_SPACES COLOR_SPACES { get; set; }
public virtual CUSTOMER CUSTOMER { get; set; }
+ [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
+ public virtual ICollection<JOB_RUNS> JOB_RUNS { get; set; }
public virtual MACHINE MACHINE { get; set; }
public virtual RML RML { get; set; }
public virtual SPOOL_TYPES SPOOL_TYPES { get; set; }