aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.DAL.Remote/DB/MACHINE.cs
blob: fdf8e81eeb4226f9b383863ff5d4e490aefbc413 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
//------------------------------------------------------------------------------
// <auto-generated>
//     This code was generated from a template.
//
//     Manual changes to this file may cause unexpected behavior in your application.
//     Manual changes to this file will be overwritten if the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------

namespace Tango.DAL.Remote.DB
{
    using System;
    using System.Collections.Generic;
    
    public partial class MACHINE
    {
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
        public MACHINE()
        {
            this.CATS = new HashSet<CAT>();
            this.COLOR_PROCESS_PARAMETERS = new HashSet<COLOR_PROCESS_PARAMETERS>();
            this.DATA_STORE_ITEMS = new HashSet<DATA_STORE_ITEMS>();
            this.JOBS = new HashSet<JOB>();
            this.MACHINES_EVENTS = new HashSet<MACHINES_EVENTS>();
            this.RML_EXTENSION_COLOR_CALIBRATIONS = new HashSet<RML_EXTENSION_COLOR_CALIBRATIONS>();
            this.RML_EXTENSION_COLOR_SHADES = new HashSet<RML_EXTENSION_COLOR_SHADES>();
            this.RML_EXTENSION_TEST_RESULTS = new HashSet<RML_EXTENSION_TEST_RESULTS>();
            this.SPOOLS = new HashSet<SPOOL>();
        }
    
        public int ID { get; set; }
        public string GUID { get; set; }
        public System.DateTime LAST_UPDATED { get; set; }
        public string SERIAL_NUMBER { get; set; }
        public string NAME { get; set; }
        public System.DateTime PRODUCTION_DATE { get; set; }
        public string ORGANIZATION_GUID { get; set; }
        public string SITE_GUID { get; set; }
        public string MACHINE_VERSION_GUID { get; set; }
        public string CONFIGURATION_GUID { get; set; }
        public string DEFAULT_RML_GUID { get; set; }
        public string LOADED_RML_GUID { get; set; }
        public string TARGET_JOB_TYPES { get; set; }
        public string TARGET_COLOR_SPACE_CODES { get; set; }
        public string DEFAULT_COLOR_SPACE_GUID { get; set; }
        public double DEFAULT_SEGMENT_LENGTH { get; set; }
        public string DEFAULT_SPOOL_TYPE_GUID { get; set; }
        public string OS_KEY { get; set; }
        public bool AUTO_LOGIN { get; set; }
        public bool AUTO_CHECK_FOR_UPDATES { get; set; }
        public bool SETUP_ACTIVATION { get; set; }
        public bool SETUP_REMOTE_ASSISTANCE { get; set; }
        public bool SETUP_UWF { get; set; }
        public bool SETUP_FIRMWARE { get; set; }
        public bool SETUP_FPGA { get; set; }
        public bool IS_DEMO { get; set; }
        public bool SUSPEND_VERSION_UPDATE { get; set; }
        public bool FORCE_VERSION_UPDATE { get; set; }
        public bool PERFORM_SCHEMA_UPDATE_ON_DATA_UPDATE { get; set; }
        public string DEVICE_COM_PORT { get; set; }
        public bool IS_DEVICE_REGISTERED { get; set; }
        public string DEVICE_ID { get; set; }
        public string DEVICE_NAME { get; set; }
        public int HEAD_TYPE { get; set; }
        public string ACTIVATION_KEY { get; set; }
        public bool LIGHT_INKS_INSTALLED { get; set; }
        public bool BTSR_INSTALLED { get; set; }
        public string VERSION_TAG { get; set; }
        public int MACHINE_TYPE { get; set; }
        public bool ALLOW_SMS_NOTIFICATIONS { get; set; }
    
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<CAT> CATS { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<COLOR_PROCESS_PARAMETERS> COLOR_PROCESS_PARAMETERS { get; set; }
        public virtual CONFIGURATION CONFIGURATION { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<DATA_STORE_ITEMS> DATA_STORE_ITEMS { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<JOB> JOBS { get; set; }
        public virtual MACHINE_VERSIONS MACHINE_VERSIONS { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<MACHINES_EVENTS> MACHINES_EVENTS { get; set; }
        public virtual ORGANIZATION ORGANIZATION { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<RML_EXTENSION_COLOR_CALIBRATIONS> RML_EXTENSION_COLOR_CALIBRATIONS { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<RML_EXTENSION_COLOR_SHADES> RML_EXTENSION_COLOR_SHADES { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<RML_EXTENSION_TEST_RESULTS> RML_EXTENSION_TEST_RESULTS { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<SPOOL> SPOOLS { get; set; }
    }
}