blob: 015c0dbee0bdbed873c252aa8bc931b953b81e3b (
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
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
|
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("BRUSH_STOPS")]
public partial class BrushStop : ObservableEntity<BrushStop>
{
protected String _segmentguid;
/// <summary>
/// Gets or sets the brushstop segment guid.
/// </summary>
[Column("SEGMENT_GUID")]
[ForeignKey("Segment")]
public String SegmentGuid
{
get
{
return _segmentguid;
}
set
{
_segmentguid = value; RaisePropertyChanged(nameof(SegmentGuid));
}
}
protected String _colorspaceguid;
/// <summary>
/// Gets or sets the brushstop color space guid.
/// </summary>
[Column("COLOR_SPACE_GUID")]
[ForeignKey("ColorSpace")]
public String ColorSpaceGuid
{
get
{
return _colorspaceguid;
}
set
{
_colorspaceguid = value; RaisePropertyChanged(nameof(ColorSpaceGuid));
}
}
protected Double _offsetpercent;
/// <summary>
/// Gets or sets the brushstop offset percent.
/// </summary>
[Column("OFFSET_PERCENT")]
public Double OffsetPercent
{
get
{
return _offsetpercent;
}
set
{
_offsetpercent = value; RaisePropertyChanged(nameof(OffsetPercent));
}
}
protected Int32 _stopindex;
/// <summary>
/// Gets or sets the brushstop stop index.
/// </summary>
[Column("STOP_INDEX")]
public Int32 StopIndex
{
get
{
return _stopindex;
}
set
{
_stopindex = value; RaisePropertyChanged(nameof(StopIndex));
}
}
protected Double _cyan;
/// <summary>
/// Gets or sets the brushstop cyan.
/// </summary>
[Column("CYAN")]
public Double Cyan
{
get
{
return _cyan;
}
set
{
_cyan = value; RaisePropertyChanged(nameof(Cyan));
}
}
protected Double _magenta;
/// <summary>
/// Gets or sets the brushstop magenta.
/// </summary>
[Column("MAGENTA")]
public Double Magenta
{
get
{
return _magenta;
}
set
{
_magenta = value; RaisePropertyChanged(nameof(Magenta));
}
}
protected Double _yellow;
/// <summary>
/// Gets or sets the brushstop yellow.
/// </summary>
[Column("YELLOW")]
public Double Yellow
{
get
{
return _yellow;
}
set
{
_yellow = value; RaisePropertyChanged(nameof(Yellow));
}
}
protected Double _black;
/// <summary>
/// Gets or sets the brushstop black.
/// </summary>
[Column("BLACK")]
public Double Black
{
get
{
return _black;
}
set
{
_black = value; RaisePropertyChanged(nameof(Black));
}
}
protected Int32 _red;
/// <summary>
/// Gets or sets the brushstop red.
/// </summary>
[Column("RED")]
public Int32 Red
{
get
{
return _red;
}
set
{
_red = value; RaisePropertyChanged(nameof(Red));
}
}
protected Int32 _green;
/// <summary>
/// Gets or sets the brushstop green.
/// </summary>
[Column("GREEN")]
public Int32 Green
{
get
{
return _green;
}
set
{
_green = value; RaisePropertyChanged(nameof(Green));
}
}
protected Int32 _blue;
/// <summary>
/// Gets or sets the brushstop blue.
/// </summary>
[Column("BLUE")]
public Int32 Blue
{
get
{
return _blue;
}
set
{
_blue = value; RaisePropertyChanged(nameof(Blue));
}
}
protected Double _l;
/// <summary>
/// Gets or sets the brushstop l.
/// </summary>
[Column("L")]
public Double L
{
get
{
return _l;
}
set
{
_l = value; RaisePropertyChanged(nameof(L));
}
}
protected Double _a;
/// <summary>
/// Gets or sets the brushstop a.
/// </summary>
[Column("A")]
public Double A
{
get
{
return _a;
}
set
{
_a = value; RaisePropertyChanged(nameof(A));
}
}
protected Double _b;
/// <summary>
/// Gets or sets the brushstop b.
/// </summary>
[Column("B")]
public Double B
{
get
{
return _b;
}
set
{
_b = value; RaisePropertyChanged(nameof(B));
}
}
protected Double _v0;
/// <summary>
/// Gets or sets the brushstop v0.
/// </summary>
[Column("V0")]
public Double V0
{
get
{
return _v0;
}
set
{
_v0 = value; RaisePropertyChanged(nameof(V0));
}
}
protected Double _v1;
/// <summary>
/// Gets or sets the brushstop v1.
/// </summary>
[Column("V1")]
public Double V1
{
get
{
return _v1;
}
set
{
_v1 = value; RaisePropertyChanged(nameof(V1));
}
}
protected Double _v2;
/// <summary>
/// Gets or sets the brushstop v2.
/// </summary>
[Column("V2")]
public Double V2
{
get
{
return _v2;
}
set
{
_v2 = value; RaisePropertyChanged(nameof(V2));
}
}
protected Double _v3;
/// <summary>
/// Gets or sets the brushstop v3.
/// </summary>
[Column("V3")]
public Double V3
{
get
{
return _v3;
}
set
{
_v3 = value; RaisePropertyChanged(nameof(V3));
}
}
protected Double _v4;
/// <summary>
/// Gets or sets the brushstop v4.
/// </summary>
[Column("V4")]
public Double V4
{
get
{
return _v4;
}
set
{
_v4 = value; RaisePropertyChanged(nameof(V4));
}
}
protected Double _v5;
/// <summary>
/// Gets or sets the brushstop v5.
/// </summary>
[Column("V5")]
public Double V5
{
get
{
return _v5;
}
set
{
_v5 = value; RaisePropertyChanged(nameof(V5));
}
}
protected Double _v6;
/// <summary>
/// Gets or sets the brushstop v6.
/// </summary>
[Column("V6")]
public Double V6
{
get
{
return _v6;
}
set
{
_v6 = value; RaisePropertyChanged(nameof(V6));
}
}
protected Double _v7;
/// <summary>
/// Gets or sets the brushstop v7.
/// </summary>
[Column("V7")]
public Double V7
{
get
{
return _v7;
}
set
{
_v7 = value; RaisePropertyChanged(nameof(V7));
}
}
protected String _colorcatalogguid;
/// <summary>
/// Gets or sets the brushstop color catalog guid.
/// </summary>
[Column("COLOR_CATALOG_GUID")]
[ForeignKey("ColorCatalog")]
public String ColorCatalogGuid
{
get
{
return _colorcatalogguid;
}
set
{
_colorcatalogguid = value; RaisePropertyChanged(nameof(ColorCatalogGuid));
}
}
protected Int32 _colorcatalogcode;
/// <summary>
/// Gets or sets the brushstop color catalog code.
/// </summary>
[Column("COLOR_CATALOG_CODE")]
public Int32 ColorCatalogCode
{
get
{
return _colorcatalogcode;
}
set
{
_colorcatalogcode = value; RaisePropertyChanged(nameof(ColorCatalogCode));
}
}
protected ColorCatalog _colorcatalog;
/// <summary>
/// Gets or sets the brushstop color catalogs.
/// </summary>
[XmlIgnore]
[JsonIgnore]
public virtual ColorCatalog ColorCatalog
{
get
{
return _colorcatalog;
}
set
{
_colorcatalog = value; RaisePropertyChanged(nameof(ColorCatalog));
}
}
protected ColorSpace _colorspace;
/// <summary>
/// Gets or sets the brushstop color spaces.
/// </summary>
[XmlIgnore]
[JsonIgnore]
public virtual ColorSpace ColorSpace
{
get
{
return _colorspace;
}
set
{
_colorspace = value; RaisePropertyChanged(nameof(ColorSpace));
}
}
protected Segment _segment;
/// <summary>
/// Gets or sets the brushstop segment.
/// </summary>
[XmlIgnore]
[JsonIgnore]
public virtual Segment Segment
{
get
{
return _segment;
}
set
{
_segment = value; RaisePropertyChanged(nameof(Segment));
}
}
/// <summary>
/// Initializes a new instance of the <see cref="BrushStop" /> class.
/// </summary>
public BrushStop() : base()
{
}
}
}
|