aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.DAL.Remote/DB/JOB.cs
diff options
context:
space:
mode:
authorMirta <mirta@twine-s.com>2020-12-30 16:39:52 +0200
committerMirta <mirta@twine-s.com>2020-12-30 16:39:52 +0200
commit00a491d93733d4625ad329b2ba8237f445364b3f (patch)
tree4b24c6fa78d7648f4bb7cefafa464bb0b063fec4 /Software/Visual_Studio/Tango.DAL.Remote/DB/JOB.cs
parent124ad4150f80c6846fdee41dbbda9848c105f6e5 (diff)
downloadTango-00a491d9.tar.gz
Tango-00a491d9.zip
merge
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; }