aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.BL/Entities/HardwareDancer.cs
blob: 3118d7421a715bc0b8d26722b34f93f02460645a (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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
using System;
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;

namespace Tango.BL.Entities
{
    [Table("HARDWARE_DANCERS")]
    public partial class HardwareDancer : ObservableEntity<HardwareDancer>
    {

        protected String _hardwaredancertypeguid;
        /// <summary>
        /// Gets or sets the hardwaredancer hardware dancer type guid.
        /// </summary>
        [Column("HARDWARE_DANCER_TYPE_GUID")]
        [ForeignKey("HardwareDancerType")]

        public  String HardwareDancerTypeGuid
        {
            get 
            {
                return _hardwaredancertypeguid; 
            }

            set 
            {
                _hardwaredancertypeguid = value; RaisePropertyChanged(nameof(HardwareDancerTypeGuid)); 
            }

        }

        protected String _hardwareversionguid;
        /// <summary>
        /// Gets or sets the hardwaredancer hardware version guid.
        /// </summary>
        [Column("HARDWARE_VERSION_GUID")]
        [ForeignKey("HardwareVersion")]

        public  String HardwareVersionGuid
        {
            get 
            {
                return _hardwareversionguid; 
            }

            set 
            {
                _hardwareversionguid = value; RaisePropertyChanged(nameof(HardwareVersionGuid)); 
            }

        }

        protected Boolean _gradual;
        /// <summary>
        /// Gets or sets the hardwaredancer gradual.
        /// </summary>
        [Column("GRADUAL")]

        public  Boolean Gradual
        {
            get 
            {
                return _gradual; 
            }

            set 
            {
                _gradual = value; RaisePropertyChanged(nameof(Gradual)); 
            }

        }

        protected Double _k;
        /// <summary>
        /// Gets or sets the hardwaredancer k.
        /// </summary>
        [Column("K")]

        public  Double K
        {
            get 
            {
                return _k; 
            }

            set 
            {
                _k = value; RaisePropertyChanged(nameof(K)); 
            }

        }

        protected Double _x;
        /// <summary>
        /// Gets or sets the hardwaredancer x.
        /// </summary>
        [Column("X")]

        public  Double X
        {
            get 
            {
                return _x; 
            }

            set 
            {
                _x = value; RaisePropertyChanged(nameof(X)); 
            }

        }

        protected Int32 _pulsepermmspring;
        /// <summary>
        /// Gets or sets the hardwaredancer pulse per mm spring.
        /// </summary>
        [Column("PULSE_PER_MM_SPRING")]

        public  Int32 PulsePerMmSpring
        {
            get 
            {
                return _pulsepermmspring; 
            }

            set 
            {
                _pulsepermmspring = value; RaisePropertyChanged(nameof(PulsePerMmSpring)); 
            }

        }

        protected HardwareDancerType _hardwaredancertype;
        /// <summary>
        /// Gets or sets the hardwaredancer hardware dancer types.
        /// </summary>

        [XmlIgnore]
        [JsonIgnore]
        public virtual HardwareDancerType HardwareDancerType
        {
            get 
            {
                return _hardwaredancertype; 
            }

            set 
            {
                _hardwaredancertype = value; RaisePropertyChanged(nameof(HardwareDancerType)); 
            }

        }

        protected HardwareVersion _hardwareversion;
        /// <summary>
        /// Gets or sets the hardwaredancer hardware versions.
        /// </summary>

        [XmlIgnore]
        [JsonIgnore]
        public virtual HardwareVersion HardwareVersion
        {
            get 
            {
                return _hardwareversion; 
            }

            set 
            {
                _hardwareversion = value; RaisePropertyChanged(nameof(HardwareVersion)); 
            }

        }

        /// <summary>
        /// Initializes a new instance of the <see cref="HardwareDancer" /> class.
        /// </summary>
        public HardwareDancer() : base()
        {
        }
    }
}