개정판 80391351
SelectedItems 수정
Change-Id: I942d91a7d78fbf05b2fb94fd782be9877423ffed
ConvertService/ServiceBase/Markus.Service.StationController/Data/ConvertCOUNT.cs | ||
---|---|---|
25 | 25 |
|
26 | 26 |
} |
27 | 27 |
|
28 |
public ConvertCOUNT(string projectNO, int count) |
|
28 |
public ConvertCOUNT(string projectNO, int count, int exception_count)
|
|
29 | 29 |
{ |
30 | 30 |
Project_NO = projectNO; |
31 | 31 |
Count = count; |
32 |
ExceptionCount = exception_count; |
|
32 | 33 |
} |
33 | 34 |
|
34 | 35 |
private string _Project_NO; |
... | ... | |
48 | 49 |
} |
49 | 50 |
} |
50 | 51 |
|
52 |
private int _ExceptionCount; |
|
53 |
public int ExceptionCount |
|
54 |
{ |
|
55 |
get |
|
56 |
{ |
|
57 |
return _ExceptionCount; |
|
58 |
} |
|
59 |
set |
|
60 |
{ |
|
61 |
if (_ExceptionCount != value) |
|
62 |
{ |
|
63 |
_ExceptionCount = value; |
|
64 |
OnPropertyChanged("ExceptionCount"); |
|
65 |
} |
|
66 |
} |
|
67 |
} |
|
68 |
|
|
51 | 69 |
private int _Count; |
52 | 70 |
public int Count |
53 | 71 |
{ |
내보내기 Unified diff