aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.DAL.Remote/DB/HARDWARE_VERSIONS.cs
blob: 77541c90ac7361601b56181e570b924cf9c5e82b (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
//------------------------------------------------------------------------------
// <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 HARDWARE_VERSIONS
    {
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2214:DoNotCallOverridableMethodsInConstructors")]
        public HARDWARE_VERSIONS()
        {
            this.CONFIGURATIONS = new HashSet<CONFIGURATION>();
            this.HARDWARE_BLOWERS = new HashSet<HARDWARE_BLOWERS>();
            this.HARDWARE_BREAK_SENSORS = new HashSet<HARDWARE_BREAK_SENSORS>();
            this.HARDWARE_DANCERS = new HashSet<HARDWARE_DANCERS>();
            this.HARDWARE_MOTORS = new HashSet<HARDWARE_MOTORS>();
            this.HARDWARE_PID_CONTROLS = new HashSet<HARDWARE_PID_CONTROLS>();
            this.HARDWARE_SPEED_SENSORS = new HashSet<HARDWARE_SPEED_SENSORS>();
            this.HARDWARE_WINDERS = new HashSet<HARDWARE_WINDERS>();
        }
    
        public int ID { get; set; }
        public string GUID { get; set; }
        public System.DateTime LAST_UPDATED { get; set; }
        public double VERSION { get; set; }
        public string NAME { get; set; }
        public int MACHINE_TYPE { get; set; }
        public string USER_NAME { get; set; }
    
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<CONFIGURATION> CONFIGURATIONS { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<HARDWARE_BLOWERS> HARDWARE_BLOWERS { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<HARDWARE_BREAK_SENSORS> HARDWARE_BREAK_SENSORS { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<HARDWARE_DANCERS> HARDWARE_DANCERS { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<HARDWARE_MOTORS> HARDWARE_MOTORS { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<HARDWARE_PID_CONTROLS> HARDWARE_PID_CONTROLS { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<HARDWARE_SPEED_SENSORS> HARDWARE_SPEED_SENSORS { get; set; }
        [System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly")]
        public virtual ICollection<HARDWARE_WINDERS> HARDWARE_WINDERS { get; set; }
    }
}