markus / KCOM / Connected Services / PemssService / Reference.cs @ df2e7646
이력 | 보기 | 이력해설 | 다운로드 (39.8 KB)
1 | 0f6604ce | taeseongkim | //------------------------------------------------------------------------------ |
---|---|---|---|
2 | // <auto-generated> |
||
3 | // 이 코드는 도구를 사용하여 생성되었습니다. |
||
4 | // 런타임 버전:4.0.30319.42000 |
||
5 | // |
||
6 | // 파일 내용을 변경하면 잘못된 동작이 발생할 수 있으며, 코드를 다시 생성하면 |
||
7 | // 이러한 변경 내용이 손실됩니다. |
||
8 | // </auto-generated> |
||
9 | //------------------------------------------------------------------------------ |
||
10 | |||
11 | namespace KCOM.PemssService { |
||
12 | using System.Runtime.Serialization; |
||
13 | using System; |
||
14 | |||
15 | |||
16 | [System.Diagnostics.DebuggerStepThroughAttribute()] |
||
17 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
||
18 | fad4d1c0 | taeseongkim | [System.Runtime.Serialization.DataContractAttribute(Name="Requirement", Namespace="http://schemas.datacontract.org/2004/07/PemssAPI.DataModel")] |
19 | 0f6604ce | taeseongkim | [System.SerializableAttribute()] |
20 | fad4d1c0 | taeseongkim | public partial class Requirement : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { |
21 | 0f6604ce | taeseongkim | |
22 | [System.NonSerializedAttribute()] |
||
23 | private System.Runtime.Serialization.ExtensionDataObject extensionDataField; |
||
24 | |||
25 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
26 | fad4d1c0 | taeseongkim | private bool IsExpandableField; |
27 | 0f6604ce | taeseongkim | |
28 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
29 | fad4d1c0 | taeseongkim | private bool IsExpandedField; |
30 | 0f6604ce | taeseongkim | |
31 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
32 | fad4d1c0 | taeseongkim | private System.Collections.Generic.List<KCOM.PemssService.MrCommant> MrCommentsField; |
33 | |||
34 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
35 | private System.Collections.Generic.List<KCOM.PemssService.VpCommant> VpCommentsField; |
||
36 | |||
37 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
38 | private string mdIdField; |
||
39 | |||
40 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
41 | private string mdTextField; |
||
42 | 0f6604ce | taeseongkim | |
43 | [global::System.ComponentModel.BrowsableAttribute(false)] |
||
44 | public System.Runtime.Serialization.ExtensionDataObject ExtensionData { |
||
45 | get { |
||
46 | return this.extensionDataField; |
||
47 | } |
||
48 | set { |
||
49 | this.extensionDataField = value; |
||
50 | } |
||
51 | } |
||
52 | |||
53 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
54 | fad4d1c0 | taeseongkim | public bool IsExpandable { |
55 | get { |
||
56 | return this.IsExpandableField; |
||
57 | } |
||
58 | set { |
||
59 | if ((this.IsExpandableField.Equals(value) != true)) { |
||
60 | this.IsExpandableField = value; |
||
61 | this.RaisePropertyChanged("IsExpandable"); |
||
62 | } |
||
63 | } |
||
64 | } |
||
65 | |||
66 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
67 | public bool IsExpanded { |
||
68 | get { |
||
69 | return this.IsExpandedField; |
||
70 | } |
||
71 | set { |
||
72 | if ((this.IsExpandedField.Equals(value) != true)) { |
||
73 | this.IsExpandedField = value; |
||
74 | this.RaisePropertyChanged("IsExpanded"); |
||
75 | } |
||
76 | } |
||
77 | } |
||
78 | |||
79 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
80 | public System.Collections.Generic.List<KCOM.PemssService.MrCommant> MrComments { |
||
81 | get { |
||
82 | return this.MrCommentsField; |
||
83 | } |
||
84 | set { |
||
85 | if ((object.ReferenceEquals(this.MrCommentsField, value) != true)) { |
||
86 | this.MrCommentsField = value; |
||
87 | this.RaisePropertyChanged("MrComments"); |
||
88 | } |
||
89 | } |
||
90 | } |
||
91 | |||
92 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
93 | public System.Collections.Generic.List<KCOM.PemssService.VpCommant> VpComments { |
||
94 | get { |
||
95 | return this.VpCommentsField; |
||
96 | } |
||
97 | set { |
||
98 | if ((object.ReferenceEquals(this.VpCommentsField, value) != true)) { |
||
99 | this.VpCommentsField = value; |
||
100 | this.RaisePropertyChanged("VpComments"); |
||
101 | } |
||
102 | } |
||
103 | } |
||
104 | |||
105 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
106 | 0f6604ce | taeseongkim | public string mdId { |
107 | get { |
||
108 | return this.mdIdField; |
||
109 | } |
||
110 | set { |
||
111 | if ((object.ReferenceEquals(this.mdIdField, value) != true)) { |
||
112 | this.mdIdField = value; |
||
113 | this.RaisePropertyChanged("mdId"); |
||
114 | } |
||
115 | } |
||
116 | } |
||
117 | |||
118 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
119 | public string mdText { |
||
120 | get { |
||
121 | return this.mdTextField; |
||
122 | } |
||
123 | set { |
||
124 | if ((object.ReferenceEquals(this.mdTextField, value) != true)) { |
||
125 | this.mdTextField = value; |
||
126 | this.RaisePropertyChanged("mdText"); |
||
127 | } |
||
128 | } |
||
129 | } |
||
130 | |||
131 | public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; |
||
132 | |||
133 | protected void RaisePropertyChanged(string propertyName) { |
||
134 | System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; |
||
135 | if ((propertyChanged != null)) { |
||
136 | propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); |
||
137 | } |
||
138 | } |
||
139 | } |
||
140 | |||
141 | [System.Diagnostics.DebuggerStepThroughAttribute()] |
||
142 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
||
143 | fad4d1c0 | taeseongkim | [System.Runtime.Serialization.DataContractAttribute(Name="MrCommant", Namespace="http://schemas.datacontract.org/2004/07/PemssAPI.DataModel")] |
144 | 0f6604ce | taeseongkim | [System.SerializableAttribute()] |
145 | fad4d1c0 | taeseongkim | public partial class MrCommant : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { |
146 | 0f6604ce | taeseongkim | |
147 | [System.NonSerializedAttribute()] |
||
148 | private System.Runtime.Serialization.ExtensionDataObject extensionDataField; |
||
149 | |||
150 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
151 | private string commentField; |
||
152 | |||
153 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
154 | private string createdField; |
||
155 | |||
156 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
157 | private string createdByField; |
||
158 | |||
159 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
160 | private string createdByNameField; |
||
161 | |||
162 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
163 | private string idField; |
||
164 | |||
165 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
166 | private string modifiedField; |
||
167 | |||
168 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
169 | private string modifiedByField; |
||
170 | |||
171 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
172 | private string modifiedByNameField; |
||
173 | |||
174 | [global::System.ComponentModel.BrowsableAttribute(false)] |
||
175 | public System.Runtime.Serialization.ExtensionDataObject ExtensionData { |
||
176 | get { |
||
177 | return this.extensionDataField; |
||
178 | } |
||
179 | set { |
||
180 | this.extensionDataField = value; |
||
181 | } |
||
182 | } |
||
183 | |||
184 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
185 | public string comment { |
||
186 | get { |
||
187 | return this.commentField; |
||
188 | } |
||
189 | set { |
||
190 | if ((object.ReferenceEquals(this.commentField, value) != true)) { |
||
191 | this.commentField = value; |
||
192 | this.RaisePropertyChanged("comment"); |
||
193 | } |
||
194 | } |
||
195 | } |
||
196 | |||
197 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
198 | public string created { |
||
199 | get { |
||
200 | return this.createdField; |
||
201 | } |
||
202 | set { |
||
203 | if ((object.ReferenceEquals(this.createdField, value) != true)) { |
||
204 | this.createdField = value; |
||
205 | this.RaisePropertyChanged("created"); |
||
206 | } |
||
207 | } |
||
208 | } |
||
209 | |||
210 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
211 | public string createdBy { |
||
212 | get { |
||
213 | return this.createdByField; |
||
214 | } |
||
215 | set { |
||
216 | if ((object.ReferenceEquals(this.createdByField, value) != true)) { |
||
217 | this.createdByField = value; |
||
218 | this.RaisePropertyChanged("createdBy"); |
||
219 | } |
||
220 | } |
||
221 | } |
||
222 | |||
223 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
224 | public string createdByName { |
||
225 | get { |
||
226 | return this.createdByNameField; |
||
227 | } |
||
228 | set { |
||
229 | if ((object.ReferenceEquals(this.createdByNameField, value) != true)) { |
||
230 | this.createdByNameField = value; |
||
231 | this.RaisePropertyChanged("createdByName"); |
||
232 | } |
||
233 | } |
||
234 | } |
||
235 | |||
236 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
237 | public string id { |
||
238 | get { |
||
239 | return this.idField; |
||
240 | } |
||
241 | set { |
||
242 | if ((object.ReferenceEquals(this.idField, value) != true)) { |
||
243 | this.idField = value; |
||
244 | this.RaisePropertyChanged("id"); |
||
245 | } |
||
246 | } |
||
247 | } |
||
248 | |||
249 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
250 | public string modified { |
||
251 | get { |
||
252 | return this.modifiedField; |
||
253 | } |
||
254 | set { |
||
255 | if ((object.ReferenceEquals(this.modifiedField, value) != true)) { |
||
256 | this.modifiedField = value; |
||
257 | this.RaisePropertyChanged("modified"); |
||
258 | } |
||
259 | } |
||
260 | } |
||
261 | |||
262 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
263 | public string modifiedBy { |
||
264 | get { |
||
265 | return this.modifiedByField; |
||
266 | } |
||
267 | set { |
||
268 | if ((object.ReferenceEquals(this.modifiedByField, value) != true)) { |
||
269 | this.modifiedByField = value; |
||
270 | this.RaisePropertyChanged("modifiedBy"); |
||
271 | } |
||
272 | } |
||
273 | } |
||
274 | |||
275 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
276 | public string modifiedByName { |
||
277 | get { |
||
278 | return this.modifiedByNameField; |
||
279 | } |
||
280 | set { |
||
281 | if ((object.ReferenceEquals(this.modifiedByNameField, value) != true)) { |
||
282 | this.modifiedByNameField = value; |
||
283 | this.RaisePropertyChanged("modifiedByName"); |
||
284 | } |
||
285 | } |
||
286 | } |
||
287 | |||
288 | public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; |
||
289 | |||
290 | protected void RaisePropertyChanged(string propertyName) { |
||
291 | System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; |
||
292 | if ((propertyChanged != null)) { |
||
293 | propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); |
||
294 | } |
||
295 | } |
||
296 | } |
||
297 | |||
298 | fad4d1c0 | taeseongkim | [System.Diagnostics.DebuggerStepThroughAttribute()] |
299 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
||
300 | [System.Runtime.Serialization.DataContractAttribute(Name="VpCommant", Namespace="http://schemas.datacontract.org/2004/07/PemssAPI.DataModel")] |
||
301 | [System.SerializableAttribute()] |
||
302 | public partial class VpCommant : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { |
||
303 | |||
304 | [System.NonSerializedAttribute()] |
||
305 | private System.Runtime.Serialization.ExtensionDataObject extensionDataField; |
||
306 | |||
307 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
308 | private string commentField; |
||
309 | |||
310 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
311 | private string commentIdField; |
||
312 | |||
313 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
314 | 84190963 | taeseongkim | private bool conditionField; |
315 | fad4d1c0 | taeseongkim | |
316 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
317 | 84190963 | taeseongkim | private string createdField; |
318 | fad4d1c0 | taeseongkim | |
319 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
320 | 84190963 | taeseongkim | private string createdByField; |
321 | fad4d1c0 | taeseongkim | |
322 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
323 | 84190963 | taeseongkim | private string createdByNameField; |
324 | fad4d1c0 | taeseongkim | |
325 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
326 | 84190963 | taeseongkim | private string mdIdField; |
327 | fad4d1c0 | taeseongkim | |
328 | [global::System.ComponentModel.BrowsableAttribute(false)] |
||
329 | public System.Runtime.Serialization.ExtensionDataObject ExtensionData { |
||
330 | get { |
||
331 | return this.extensionDataField; |
||
332 | } |
||
333 | set { |
||
334 | this.extensionDataField = value; |
||
335 | } |
||
336 | } |
||
337 | |||
338 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
339 | public string comment { |
||
340 | get { |
||
341 | return this.commentField; |
||
342 | } |
||
343 | set { |
||
344 | if ((object.ReferenceEquals(this.commentField, value) != true)) { |
||
345 | this.commentField = value; |
||
346 | this.RaisePropertyChanged("comment"); |
||
347 | } |
||
348 | } |
||
349 | } |
||
350 | |||
351 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
352 | public string commentId { |
||
353 | get { |
||
354 | return this.commentIdField; |
||
355 | } |
||
356 | set { |
||
357 | if ((object.ReferenceEquals(this.commentIdField, value) != true)) { |
||
358 | this.commentIdField = value; |
||
359 | this.RaisePropertyChanged("commentId"); |
||
360 | } |
||
361 | } |
||
362 | } |
||
363 | |||
364 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
365 | 84190963 | taeseongkim | public bool condition { |
366 | fad4d1c0 | taeseongkim | get { |
367 | return this.conditionField; |
||
368 | } |
||
369 | set { |
||
370 | 84190963 | taeseongkim | if ((this.conditionField.Equals(value) != true)) { |
371 | fad4d1c0 | taeseongkim | this.conditionField = value; |
372 | this.RaisePropertyChanged("condition"); |
||
373 | } |
||
374 | } |
||
375 | } |
||
376 | |||
377 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
378 | 84190963 | taeseongkim | public string created { |
379 | fad4d1c0 | taeseongkim | get { |
380 | 84190963 | taeseongkim | return this.createdField; |
381 | fad4d1c0 | taeseongkim | } |
382 | set { |
||
383 | 84190963 | taeseongkim | if ((object.ReferenceEquals(this.createdField, value) != true)) { |
384 | this.createdField = value; |
||
385 | this.RaisePropertyChanged("created"); |
||
386 | fad4d1c0 | taeseongkim | } |
387 | } |
||
388 | } |
||
389 | |||
390 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
391 | 84190963 | taeseongkim | public string createdBy { |
392 | fad4d1c0 | taeseongkim | get { |
393 | 84190963 | taeseongkim | return this.createdByField; |
394 | fad4d1c0 | taeseongkim | } |
395 | set { |
||
396 | 84190963 | taeseongkim | if ((object.ReferenceEquals(this.createdByField, value) != true)) { |
397 | this.createdByField = value; |
||
398 | this.RaisePropertyChanged("createdBy"); |
||
399 | fad4d1c0 | taeseongkim | } |
400 | } |
||
401 | } |
||
402 | |||
403 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
404 | 84190963 | taeseongkim | public string createdByName { |
405 | fad4d1c0 | taeseongkim | get { |
406 | 84190963 | taeseongkim | return this.createdByNameField; |
407 | fad4d1c0 | taeseongkim | } |
408 | set { |
||
409 | 84190963 | taeseongkim | if ((object.ReferenceEquals(this.createdByNameField, value) != true)) { |
410 | this.createdByNameField = value; |
||
411 | this.RaisePropertyChanged("createdByName"); |
||
412 | fad4d1c0 | taeseongkim | } |
413 | } |
||
414 | } |
||
415 | |||
416 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
417 | 84190963 | taeseongkim | public string mdId { |
418 | fad4d1c0 | taeseongkim | get { |
419 | 84190963 | taeseongkim | return this.mdIdField; |
420 | fad4d1c0 | taeseongkim | } |
421 | set { |
||
422 | 84190963 | taeseongkim | if ((object.ReferenceEquals(this.mdIdField, value) != true)) { |
423 | this.mdIdField = value; |
||
424 | this.RaisePropertyChanged("mdId"); |
||
425 | fad4d1c0 | taeseongkim | } |
426 | } |
||
427 | } |
||
428 | |||
429 | public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; |
||
430 | |||
431 | protected void RaisePropertyChanged(string propertyName) { |
||
432 | System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; |
||
433 | if ((propertyChanged != null)) { |
||
434 | propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); |
||
435 | } |
||
436 | } |
||
437 | } |
||
438 | |||
439 | [System.Diagnostics.DebuggerStepThroughAttribute()] |
||
440 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
||
441 | b7645ccc | taeseongkim | [System.Runtime.Serialization.DataContractAttribute(Name="Bidders", Namespace="http://schemas.datacontract.org/2004/07/PemssAPI.DataModel")] |
442 | [System.SerializableAttribute()] |
||
443 | public partial class Bidders : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { |
||
444 | |||
445 | [System.NonSerializedAttribute()] |
||
446 | private System.Runtime.Serialization.ExtensionDataObject extensionDataField; |
||
447 | |||
448 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
449 | private bool IsExpandableField; |
||
450 | |||
451 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
452 | private bool IsExpandedField; |
||
453 | |||
454 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
455 | private System.Collections.Generic.List<KCOM.PemssService.MrCommant> MrCommentsField; |
||
456 | |||
457 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
458 | private System.Collections.Generic.List<KCOM.PemssService.VpCommant> VpCommentsField; |
||
459 | |||
460 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
461 | private string attachmentTypeField; |
||
462 | |||
463 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
464 | private string bdIdField; |
||
465 | |||
466 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
467 | private string dIdField; |
||
468 | |||
469 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
470 | df2e7646 | taeseongkim | private string dataField; |
471 | |||
472 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
473 | b7645ccc | taeseongkim | private string description1Field; |
474 | |||
475 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
476 | df2e7646 | taeseongkim | private string description2Field; |
477 | |||
478 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
479 | private string description3Field; |
||
480 | |||
481 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
482 | b7645ccc | taeseongkim | private string docNameField; |
483 | |||
484 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
485 | private string equipmentNameField; |
||
486 | |||
487 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
488 | private string nameField; |
||
489 | |||
490 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
491 | private string noField; |
||
492 | |||
493 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
494 | private string orderNoField; |
||
495 | |||
496 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
497 | private string traceField; |
||
498 | |||
499 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
500 | private string unitField; |
||
501 | |||
502 | [global::System.ComponentModel.BrowsableAttribute(false)] |
||
503 | public System.Runtime.Serialization.ExtensionDataObject ExtensionData { |
||
504 | get { |
||
505 | return this.extensionDataField; |
||
506 | } |
||
507 | set { |
||
508 | this.extensionDataField = value; |
||
509 | } |
||
510 | } |
||
511 | |||
512 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
513 | public bool IsExpandable { |
||
514 | get { |
||
515 | return this.IsExpandableField; |
||
516 | } |
||
517 | set { |
||
518 | if ((this.IsExpandableField.Equals(value) != true)) { |
||
519 | this.IsExpandableField = value; |
||
520 | this.RaisePropertyChanged("IsExpandable"); |
||
521 | } |
||
522 | } |
||
523 | } |
||
524 | |||
525 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
526 | public bool IsExpanded { |
||
527 | get { |
||
528 | return this.IsExpandedField; |
||
529 | } |
||
530 | set { |
||
531 | if ((this.IsExpandedField.Equals(value) != true)) { |
||
532 | this.IsExpandedField = value; |
||
533 | this.RaisePropertyChanged("IsExpanded"); |
||
534 | } |
||
535 | } |
||
536 | } |
||
537 | |||
538 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
539 | public System.Collections.Generic.List<KCOM.PemssService.MrCommant> MrComments { |
||
540 | get { |
||
541 | return this.MrCommentsField; |
||
542 | } |
||
543 | set { |
||
544 | if ((object.ReferenceEquals(this.MrCommentsField, value) != true)) { |
||
545 | this.MrCommentsField = value; |
||
546 | this.RaisePropertyChanged("MrComments"); |
||
547 | } |
||
548 | } |
||
549 | } |
||
550 | |||
551 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
552 | public System.Collections.Generic.List<KCOM.PemssService.VpCommant> VpComments { |
||
553 | get { |
||
554 | return this.VpCommentsField; |
||
555 | } |
||
556 | set { |
||
557 | if ((object.ReferenceEquals(this.VpCommentsField, value) != true)) { |
||
558 | this.VpCommentsField = value; |
||
559 | this.RaisePropertyChanged("VpComments"); |
||
560 | } |
||
561 | } |
||
562 | } |
||
563 | |||
564 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
565 | public string attachmentType { |
||
566 | get { |
||
567 | return this.attachmentTypeField; |
||
568 | } |
||
569 | set { |
||
570 | if ((object.ReferenceEquals(this.attachmentTypeField, value) != true)) { |
||
571 | this.attachmentTypeField = value; |
||
572 | this.RaisePropertyChanged("attachmentType"); |
||
573 | } |
||
574 | } |
||
575 | } |
||
576 | |||
577 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
578 | public string bdId { |
||
579 | get { |
||
580 | return this.bdIdField; |
||
581 | } |
||
582 | set { |
||
583 | if ((object.ReferenceEquals(this.bdIdField, value) != true)) { |
||
584 | this.bdIdField = value; |
||
585 | this.RaisePropertyChanged("bdId"); |
||
586 | } |
||
587 | } |
||
588 | } |
||
589 | |||
590 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
591 | public string dId { |
||
592 | get { |
||
593 | return this.dIdField; |
||
594 | } |
||
595 | set { |
||
596 | if ((object.ReferenceEquals(this.dIdField, value) != true)) { |
||
597 | this.dIdField = value; |
||
598 | this.RaisePropertyChanged("dId"); |
||
599 | } |
||
600 | } |
||
601 | } |
||
602 | |||
603 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
604 | df2e7646 | taeseongkim | public string data { |
605 | get { |
||
606 | return this.dataField; |
||
607 | } |
||
608 | set { |
||
609 | if ((object.ReferenceEquals(this.dataField, value) != true)) { |
||
610 | this.dataField = value; |
||
611 | this.RaisePropertyChanged("data"); |
||
612 | } |
||
613 | } |
||
614 | } |
||
615 | |||
616 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
617 | b7645ccc | taeseongkim | public string description1 { |
618 | get { |
||
619 | return this.description1Field; |
||
620 | } |
||
621 | set { |
||
622 | if ((object.ReferenceEquals(this.description1Field, value) != true)) { |
||
623 | this.description1Field = value; |
||
624 | this.RaisePropertyChanged("description1"); |
||
625 | } |
||
626 | } |
||
627 | } |
||
628 | |||
629 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
630 | df2e7646 | taeseongkim | public string description2 { |
631 | get { |
||
632 | return this.description2Field; |
||
633 | } |
||
634 | set { |
||
635 | if ((object.ReferenceEquals(this.description2Field, value) != true)) { |
||
636 | this.description2Field = value; |
||
637 | this.RaisePropertyChanged("description2"); |
||
638 | } |
||
639 | } |
||
640 | } |
||
641 | |||
642 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
643 | public string description3 { |
||
644 | get { |
||
645 | return this.description3Field; |
||
646 | } |
||
647 | set { |
||
648 | if ((object.ReferenceEquals(this.description3Field, value) != true)) { |
||
649 | this.description3Field = value; |
||
650 | this.RaisePropertyChanged("description3"); |
||
651 | } |
||
652 | } |
||
653 | } |
||
654 | |||
655 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
656 | b7645ccc | taeseongkim | public string docName { |
657 | get { |
||
658 | return this.docNameField; |
||
659 | } |
||
660 | set { |
||
661 | if ((object.ReferenceEquals(this.docNameField, value) != true)) { |
||
662 | this.docNameField = value; |
||
663 | this.RaisePropertyChanged("docName"); |
||
664 | } |
||
665 | } |
||
666 | } |
||
667 | |||
668 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
669 | public string equipmentName { |
||
670 | get { |
||
671 | return this.equipmentNameField; |
||
672 | } |
||
673 | set { |
||
674 | if ((object.ReferenceEquals(this.equipmentNameField, value) != true)) { |
||
675 | this.equipmentNameField = value; |
||
676 | this.RaisePropertyChanged("equipmentName"); |
||
677 | } |
||
678 | } |
||
679 | } |
||
680 | |||
681 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
682 | public string name { |
||
683 | get { |
||
684 | return this.nameField; |
||
685 | } |
||
686 | set { |
||
687 | if ((object.ReferenceEquals(this.nameField, value) != true)) { |
||
688 | this.nameField = value; |
||
689 | this.RaisePropertyChanged("name"); |
||
690 | } |
||
691 | } |
||
692 | } |
||
693 | |||
694 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
695 | public string no { |
||
696 | get { |
||
697 | return this.noField; |
||
698 | } |
||
699 | set { |
||
700 | if ((object.ReferenceEquals(this.noField, value) != true)) { |
||
701 | this.noField = value; |
||
702 | this.RaisePropertyChanged("no"); |
||
703 | } |
||
704 | } |
||
705 | } |
||
706 | |||
707 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
708 | public string orderNo { |
||
709 | get { |
||
710 | return this.orderNoField; |
||
711 | } |
||
712 | set { |
||
713 | if ((object.ReferenceEquals(this.orderNoField, value) != true)) { |
||
714 | this.orderNoField = value; |
||
715 | this.RaisePropertyChanged("orderNo"); |
||
716 | } |
||
717 | } |
||
718 | } |
||
719 | |||
720 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
721 | public string trace { |
||
722 | get { |
||
723 | return this.traceField; |
||
724 | } |
||
725 | set { |
||
726 | if ((object.ReferenceEquals(this.traceField, value) != true)) { |
||
727 | this.traceField = value; |
||
728 | this.RaisePropertyChanged("trace"); |
||
729 | } |
||
730 | } |
||
731 | } |
||
732 | |||
733 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
734 | public string unit { |
||
735 | get { |
||
736 | return this.unitField; |
||
737 | } |
||
738 | set { |
||
739 | if ((object.ReferenceEquals(this.unitField, value) != true)) { |
||
740 | this.unitField = value; |
||
741 | this.RaisePropertyChanged("unit"); |
||
742 | } |
||
743 | } |
||
744 | } |
||
745 | |||
746 | public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; |
||
747 | |||
748 | protected void RaisePropertyChanged(string propertyName) { |
||
749 | System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; |
||
750 | if ((propertyChanged != null)) { |
||
751 | propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); |
||
752 | } |
||
753 | } |
||
754 | } |
||
755 | |||
756 | [System.Diagnostics.DebuggerStepThroughAttribute()] |
||
757 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
||
758 | fad4d1c0 | taeseongkim | [System.Runtime.Serialization.DataContractAttribute(Name="DocumentInfo", Namespace="http://schemas.datacontract.org/2004/07/PemssAPI.DataModel")] |
759 | [System.SerializableAttribute()] |
||
760 | public partial class DocumentInfo : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { |
||
761 | |||
762 | [System.NonSerializedAttribute()] |
||
763 | private System.Runtime.Serialization.ExtensionDataObject extensionDataField; |
||
764 | |||
765 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
766 | private int dIdField; |
||
767 | |||
768 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
769 | private string docNameField; |
||
770 | |||
771 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
772 | private string fileNameField; |
||
773 | |||
774 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
775 | private string revisionField; |
||
776 | |||
777 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
778 | private string slipNoField; |
||
779 | |||
780 | [global::System.ComponentModel.BrowsableAttribute(false)] |
||
781 | public System.Runtime.Serialization.ExtensionDataObject ExtensionData { |
||
782 | get { |
||
783 | return this.extensionDataField; |
||
784 | } |
||
785 | set { |
||
786 | this.extensionDataField = value; |
||
787 | } |
||
788 | } |
||
789 | |||
790 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
791 | public int dId { |
||
792 | get { |
||
793 | return this.dIdField; |
||
794 | } |
||
795 | set { |
||
796 | if ((this.dIdField.Equals(value) != true)) { |
||
797 | this.dIdField = value; |
||
798 | this.RaisePropertyChanged("dId"); |
||
799 | } |
||
800 | } |
||
801 | } |
||
802 | |||
803 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
804 | public string docName { |
||
805 | get { |
||
806 | return this.docNameField; |
||
807 | } |
||
808 | set { |
||
809 | if ((object.ReferenceEquals(this.docNameField, value) != true)) { |
||
810 | this.docNameField = value; |
||
811 | this.RaisePropertyChanged("docName"); |
||
812 | } |
||
813 | } |
||
814 | } |
||
815 | |||
816 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
817 | public string fileName { |
||
818 | get { |
||
819 | return this.fileNameField; |
||
820 | } |
||
821 | set { |
||
822 | if ((object.ReferenceEquals(this.fileNameField, value) != true)) { |
||
823 | this.fileNameField = value; |
||
824 | this.RaisePropertyChanged("fileName"); |
||
825 | } |
||
826 | } |
||
827 | } |
||
828 | |||
829 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
830 | public string revision { |
||
831 | get { |
||
832 | return this.revisionField; |
||
833 | } |
||
834 | set { |
||
835 | if ((object.ReferenceEquals(this.revisionField, value) != true)) { |
||
836 | this.revisionField = value; |
||
837 | this.RaisePropertyChanged("revision"); |
||
838 | } |
||
839 | } |
||
840 | } |
||
841 | |||
842 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
843 | public string slipNo { |
||
844 | get { |
||
845 | return this.slipNoField; |
||
846 | } |
||
847 | set { |
||
848 | if ((object.ReferenceEquals(this.slipNoField, value) != true)) { |
||
849 | this.slipNoField = value; |
||
850 | this.RaisePropertyChanged("slipNo"); |
||
851 | } |
||
852 | } |
||
853 | } |
||
854 | |||
855 | public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; |
||
856 | |||
857 | protected void RaisePropertyChanged(string propertyName) { |
||
858 | System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; |
||
859 | if ((propertyChanged != null)) { |
||
860 | propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); |
||
861 | } |
||
862 | } |
||
863 | } |
||
864 | |||
865 | 0f6604ce | taeseongkim | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] |
866 | [System.ServiceModel.ServiceContractAttribute(Namespace="", ConfigurationName="PemssService.PemssService")] |
||
867 | public interface PemssService { |
||
868 | |||
869 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/GetrequirementList", ReplyAction="urn:PemssService/GetrequirementListResponse")] |
||
870 | fad4d1c0 | taeseongkim | System.Collections.Generic.List<KCOM.PemssService.Requirement> GetrequirementList(string pId, string dId); |
871 | 0f6604ce | taeseongkim | |
872 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/GetrequirementList", ReplyAction="urn:PemssService/GetrequirementListResponse")] |
||
873 | fad4d1c0 | taeseongkim | System.Threading.Tasks.Task<System.Collections.Generic.List<KCOM.PemssService.Requirement>> GetrequirementListAsync(string pId, string dId); |
874 | |||
875 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/SetRequirementComment", ReplyAction="urn:PemssService/SetRequirementCommentResponse")] |
||
876 | bool SetRequirementComment(string pId, string dId, string mdId, string commentId, string comment, bool condition, string uId); |
||
877 | |||
878 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/SetRequirementComment", ReplyAction="urn:PemssService/SetRequirementCommentResponse")] |
||
879 | System.Threading.Tasks.Task<bool> SetRequirementCommentAsync(string pId, string dId, string mdId, string commentId, string comment, bool condition, string uId); |
||
880 | |||
881 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/RemoveRequirementComment", ReplyAction="urn:PemssService/RemoveRequirementCommentResponse")] |
||
882 | bool RemoveRequirementComment(string pId, string dId, string mdId, string commentId, string uId); |
||
883 | |||
884 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/RemoveRequirementComment", ReplyAction="urn:PemssService/RemoveRequirementCommentResponse")] |
||
885 | System.Threading.Tasks.Task<bool> RemoveRequirementCommentAsync(string pId, string dId, string mdId, string commentId, string uId); |
||
886 | 0f6604ce | taeseongkim | |
887 | b7645ccc | taeseongkim | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/GetBidderstList", ReplyAction="urn:PemssService/GetBidderstListResponse")] |
888 | System.Collections.Generic.List<KCOM.PemssService.Bidders> GetBidderstList(string pId, string dId); |
||
889 | |||
890 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/GetBidderstList", ReplyAction="urn:PemssService/GetBidderstListResponse")] |
||
891 | System.Threading.Tasks.Task<System.Collections.Generic.List<KCOM.PemssService.Bidders>> GetBidderstListAsync(string pId, string dId); |
||
892 | |||
893 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/SetBiddersComment", ReplyAction="urn:PemssService/SetBiddersCommentResponse")] |
||
894 | bool SetBiddersComment(string pId, string dId, string bdId, string commentId, string comment, bool condition, string uId); |
||
895 | |||
896 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/SetBiddersComment", ReplyAction="urn:PemssService/SetBiddersCommentResponse")] |
||
897 | System.Threading.Tasks.Task<bool> SetBiddersCommentAsync(string pId, string dId, string bdId, string commentId, string comment, bool condition, string uId); |
||
898 | |||
899 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/RemoveBiddersComment", ReplyAction="urn:PemssService/RemoveBiddersCommentResponse")] |
||
900 | bool RemoveBiddersComment(string pId, string dId, string bdId, string commentId, string uId); |
||
901 | |||
902 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/RemoveBiddersComment", ReplyAction="urn:PemssService/RemoveBiddersCommentResponse")] |
||
903 | System.Threading.Tasks.Task<bool> RemoveBiddersCommentAsync(string pId, string dId, string bdId, string commentId, string uId); |
||
904 | |||
905 | fad4d1c0 | taeseongkim | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/GetDocumentInfo", ReplyAction="urn:PemssService/GetDocumentInfoResponse")] |
906 | KCOM.PemssService.DocumentInfo GetDocumentInfo(string pId, string dId); |
||
907 | 0f6604ce | taeseongkim | |
908 | fad4d1c0 | taeseongkim | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/GetDocumentInfo", ReplyAction="urn:PemssService/GetDocumentInfoResponse")] |
909 | System.Threading.Tasks.Task<KCOM.PemssService.DocumentInfo> GetDocumentInfoAsync(string pId, string dId); |
||
910 | 0f6604ce | taeseongkim | } |
911 | |||
912 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] |
||
913 | public interface PemssServiceChannel : KCOM.PemssService.PemssService, System.ServiceModel.IClientChannel { |
||
914 | } |
||
915 | |||
916 | [System.Diagnostics.DebuggerStepThroughAttribute()] |
||
917 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] |
||
918 | public partial class PemssServiceClient : System.ServiceModel.ClientBase<KCOM.PemssService.PemssService>, KCOM.PemssService.PemssService { |
||
919 | |||
920 | public PemssServiceClient() { |
||
921 | } |
||
922 | |||
923 | public PemssServiceClient(string endpointConfigurationName) : |
||
924 | base(endpointConfigurationName) { |
||
925 | } |
||
926 | |||
927 | public PemssServiceClient(string endpointConfigurationName, string remoteAddress) : |
||
928 | base(endpointConfigurationName, remoteAddress) { |
||
929 | } |
||
930 | |||
931 | public PemssServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : |
||
932 | base(endpointConfigurationName, remoteAddress) { |
||
933 | } |
||
934 | |||
935 | public PemssServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : |
||
936 | base(binding, remoteAddress) { |
||
937 | } |
||
938 | |||
939 | fad4d1c0 | taeseongkim | public System.Collections.Generic.List<KCOM.PemssService.Requirement> GetrequirementList(string pId, string dId) { |
940 | 0f6604ce | taeseongkim | return base.Channel.GetrequirementList(pId, dId); |
941 | } |
||
942 | |||
943 | fad4d1c0 | taeseongkim | public System.Threading.Tasks.Task<System.Collections.Generic.List<KCOM.PemssService.Requirement>> GetrequirementListAsync(string pId, string dId) { |
944 | 0f6604ce | taeseongkim | return base.Channel.GetrequirementListAsync(pId, dId); |
945 | } |
||
946 | |||
947 | fad4d1c0 | taeseongkim | public bool SetRequirementComment(string pId, string dId, string mdId, string commentId, string comment, bool condition, string uId) { |
948 | return base.Channel.SetRequirementComment(pId, dId, mdId, commentId, comment, condition, uId); |
||
949 | } |
||
950 | |||
951 | public System.Threading.Tasks.Task<bool> SetRequirementCommentAsync(string pId, string dId, string mdId, string commentId, string comment, bool condition, string uId) { |
||
952 | return base.Channel.SetRequirementCommentAsync(pId, dId, mdId, commentId, comment, condition, uId); |
||
953 | } |
||
954 | |||
955 | public bool RemoveRequirementComment(string pId, string dId, string mdId, string commentId, string uId) { |
||
956 | return base.Channel.RemoveRequirementComment(pId, dId, mdId, commentId, uId); |
||
957 | } |
||
958 | |||
959 | public System.Threading.Tasks.Task<bool> RemoveRequirementCommentAsync(string pId, string dId, string mdId, string commentId, string uId) { |
||
960 | return base.Channel.RemoveRequirementCommentAsync(pId, dId, mdId, commentId, uId); |
||
961 | } |
||
962 | |||
963 | b7645ccc | taeseongkim | public System.Collections.Generic.List<KCOM.PemssService.Bidders> GetBidderstList(string pId, string dId) { |
964 | return base.Channel.GetBidderstList(pId, dId); |
||
965 | } |
||
966 | |||
967 | public System.Threading.Tasks.Task<System.Collections.Generic.List<KCOM.PemssService.Bidders>> GetBidderstListAsync(string pId, string dId) { |
||
968 | return base.Channel.GetBidderstListAsync(pId, dId); |
||
969 | } |
||
970 | |||
971 | public bool SetBiddersComment(string pId, string dId, string bdId, string commentId, string comment, bool condition, string uId) { |
||
972 | return base.Channel.SetBiddersComment(pId, dId, bdId, commentId, comment, condition, uId); |
||
973 | } |
||
974 | |||
975 | public System.Threading.Tasks.Task<bool> SetBiddersCommentAsync(string pId, string dId, string bdId, string commentId, string comment, bool condition, string uId) { |
||
976 | return base.Channel.SetBiddersCommentAsync(pId, dId, bdId, commentId, comment, condition, uId); |
||
977 | } |
||
978 | |||
979 | public bool RemoveBiddersComment(string pId, string dId, string bdId, string commentId, string uId) { |
||
980 | return base.Channel.RemoveBiddersComment(pId, dId, bdId, commentId, uId); |
||
981 | } |
||
982 | |||
983 | public System.Threading.Tasks.Task<bool> RemoveBiddersCommentAsync(string pId, string dId, string bdId, string commentId, string uId) { |
||
984 | return base.Channel.RemoveBiddersCommentAsync(pId, dId, bdId, commentId, uId); |
||
985 | } |
||
986 | |||
987 | fad4d1c0 | taeseongkim | public KCOM.PemssService.DocumentInfo GetDocumentInfo(string pId, string dId) { |
988 | return base.Channel.GetDocumentInfo(pId, dId); |
||
989 | 0f6604ce | taeseongkim | } |
990 | |||
991 | fad4d1c0 | taeseongkim | public System.Threading.Tasks.Task<KCOM.PemssService.DocumentInfo> GetDocumentInfoAsync(string pId, string dId) { |
992 | return base.Channel.GetDocumentInfoAsync(pId, dId); |
||
993 | 0f6604ce | taeseongkim | } |
994 | } |
||
995 | } |