blob: 97674607e3b928e57d264ff30d84cb777fe5a2ca (
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
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
|
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("CCTS")]
public partial class Cct : ObservableEntity<Cct>
{
protected String _name;
/// <summary>
/// Gets or sets the cct name.
/// </summary>
[Column("NAME")]
public String Name
{
get
{
return _name;
}
set
{
_name = value; RaisePropertyChanged(nameof(Name));
}
}
protected String _description;
/// <summary>
/// Gets or sets the cct description.
/// </summary>
[Column("DESCRIPTION")]
public String Description
{
get
{
return _description;
}
set
{
_description = value; RaisePropertyChanged(nameof(Description));
}
}
protected String _forwardfilename;
/// <summary>
/// Gets or sets the cct forward file name.
/// </summary>
[Column("FORWARD_FILE_NAME")]
public String ForwardFileName
{
get
{
return _forwardfilename;
}
set
{
_forwardfilename = value; RaisePropertyChanged(nameof(ForwardFileName));
}
}
protected String _inversefilename;
/// <summary>
/// Gets or sets the cct inverse file name.
/// </summary>
[Column("INVERSE_FILE_NAME")]
public String InverseFileName
{
get
{
return _inversefilename;
}
set
{
_inversefilename = value; RaisePropertyChanged(nameof(InverseFileName));
}
}
protected Byte[] _forwarddata;
/// <summary>
/// Gets or sets the cct forward data.
/// </summary>
[Column("FORWARD_DATA")]
public Byte[] ForwardData
{
get
{
return _forwarddata;
}
set
{
_forwarddata = value; RaisePropertyChanged(nameof(ForwardData));
}
}
protected Byte[] _inversedata;
/// <summary>
/// Gets or sets the cct inverse data.
/// </summary>
[Column("INVERSE_DATA")]
public Byte[] InverseData
{
get
{
return _inversedata;
}
set
{
_inversedata = value; RaisePropertyChanged(nameof(InverseData));
}
}
protected Double _version;
/// <summary>
/// Gets or sets the cct version.
/// </summary>
[Column("VERSION")]
public Double Version
{
get
{
return _version;
}
set
{
_version = value; RaisePropertyChanged(nameof(Version));
}
}
protected String _rmlguid;
/// <summary>
/// Gets or sets the cct rml guid.
/// </summary>
[Column("RML_GUID")]
[ForeignKey("Rml")]
public String RmlGuid
{
get
{
return _rmlguid;
}
set
{
_rmlguid = value; RaisePropertyChanged(nameof(RmlGuid));
}
}
protected Rml _rml;
/// <summary>
/// Gets or sets the cct rml.
/// </summary>
[XmlIgnore]
[JsonIgnore]
public virtual Rml Rml
{
get
{
return _rml;
}
set
{
_rml = value; RaisePropertyChanged(nameof(Rml));
}
}
/// <summary>
/// Initializes a new instance of the <see cref="Cct" /> class.
/// </summary>
public Cct() : base()
{
}
}
}
|