markus / KCOM / Connected Services / PemssService / Reference.cs @ b7645ccc
이력 | 보기 | 이력해설 | 다운로드 (38.2 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 | private string description1Field; |
||
471 | |||
472 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
473 | private string docNameField; |
||
474 | |||
475 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
476 | private string equipmentNameField; |
||
477 | |||
478 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
479 | private string nameField; |
||
480 | |||
481 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
482 | private string noField; |
||
483 | |||
484 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
485 | private string orderNoField; |
||
486 | |||
487 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
488 | private string traceField; |
||
489 | |||
490 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
491 | private string unitField; |
||
492 | |||
493 | [global::System.ComponentModel.BrowsableAttribute(false)] |
||
494 | public System.Runtime.Serialization.ExtensionDataObject ExtensionData { |
||
495 | get { |
||
496 | return this.extensionDataField; |
||
497 | } |
||
498 | set { |
||
499 | this.extensionDataField = value; |
||
500 | } |
||
501 | } |
||
502 | |||
503 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
504 | public bool IsExpandable { |
||
505 | get { |
||
506 | return this.IsExpandableField; |
||
507 | } |
||
508 | set { |
||
509 | if ((this.IsExpandableField.Equals(value) != true)) { |
||
510 | this.IsExpandableField = value; |
||
511 | this.RaisePropertyChanged("IsExpandable"); |
||
512 | } |
||
513 | } |
||
514 | } |
||
515 | |||
516 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
517 | public bool IsExpanded { |
||
518 | get { |
||
519 | return this.IsExpandedField; |
||
520 | } |
||
521 | set { |
||
522 | if ((this.IsExpandedField.Equals(value) != true)) { |
||
523 | this.IsExpandedField = value; |
||
524 | this.RaisePropertyChanged("IsExpanded"); |
||
525 | } |
||
526 | } |
||
527 | } |
||
528 | |||
529 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
530 | public System.Collections.Generic.List<KCOM.PemssService.MrCommant> MrComments { |
||
531 | get { |
||
532 | return this.MrCommentsField; |
||
533 | } |
||
534 | set { |
||
535 | if ((object.ReferenceEquals(this.MrCommentsField, value) != true)) { |
||
536 | this.MrCommentsField = value; |
||
537 | this.RaisePropertyChanged("MrComments"); |
||
538 | } |
||
539 | } |
||
540 | } |
||
541 | |||
542 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
543 | public System.Collections.Generic.List<KCOM.PemssService.VpCommant> VpComments { |
||
544 | get { |
||
545 | return this.VpCommentsField; |
||
546 | } |
||
547 | set { |
||
548 | if ((object.ReferenceEquals(this.VpCommentsField, value) != true)) { |
||
549 | this.VpCommentsField = value; |
||
550 | this.RaisePropertyChanged("VpComments"); |
||
551 | } |
||
552 | } |
||
553 | } |
||
554 | |||
555 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
556 | public string attachmentType { |
||
557 | get { |
||
558 | return this.attachmentTypeField; |
||
559 | } |
||
560 | set { |
||
561 | if ((object.ReferenceEquals(this.attachmentTypeField, value) != true)) { |
||
562 | this.attachmentTypeField = value; |
||
563 | this.RaisePropertyChanged("attachmentType"); |
||
564 | } |
||
565 | } |
||
566 | } |
||
567 | |||
568 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
569 | public string bdId { |
||
570 | get { |
||
571 | return this.bdIdField; |
||
572 | } |
||
573 | set { |
||
574 | if ((object.ReferenceEquals(this.bdIdField, value) != true)) { |
||
575 | this.bdIdField = value; |
||
576 | this.RaisePropertyChanged("bdId"); |
||
577 | } |
||
578 | } |
||
579 | } |
||
580 | |||
581 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
582 | public string dId { |
||
583 | get { |
||
584 | return this.dIdField; |
||
585 | } |
||
586 | set { |
||
587 | if ((object.ReferenceEquals(this.dIdField, value) != true)) { |
||
588 | this.dIdField = value; |
||
589 | this.RaisePropertyChanged("dId"); |
||
590 | } |
||
591 | } |
||
592 | } |
||
593 | |||
594 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
595 | public string description1 { |
||
596 | get { |
||
597 | return this.description1Field; |
||
598 | } |
||
599 | set { |
||
600 | if ((object.ReferenceEquals(this.description1Field, value) != true)) { |
||
601 | this.description1Field = value; |
||
602 | this.RaisePropertyChanged("description1"); |
||
603 | } |
||
604 | } |
||
605 | } |
||
606 | |||
607 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
608 | public string docName { |
||
609 | get { |
||
610 | return this.docNameField; |
||
611 | } |
||
612 | set { |
||
613 | if ((object.ReferenceEquals(this.docNameField, value) != true)) { |
||
614 | this.docNameField = value; |
||
615 | this.RaisePropertyChanged("docName"); |
||
616 | } |
||
617 | } |
||
618 | } |
||
619 | |||
620 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
621 | public string equipmentName { |
||
622 | get { |
||
623 | return this.equipmentNameField; |
||
624 | } |
||
625 | set { |
||
626 | if ((object.ReferenceEquals(this.equipmentNameField, value) != true)) { |
||
627 | this.equipmentNameField = value; |
||
628 | this.RaisePropertyChanged("equipmentName"); |
||
629 | } |
||
630 | } |
||
631 | } |
||
632 | |||
633 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
634 | public string name { |
||
635 | get { |
||
636 | return this.nameField; |
||
637 | } |
||
638 | set { |
||
639 | if ((object.ReferenceEquals(this.nameField, value) != true)) { |
||
640 | this.nameField = value; |
||
641 | this.RaisePropertyChanged("name"); |
||
642 | } |
||
643 | } |
||
644 | } |
||
645 | |||
646 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
647 | public string no { |
||
648 | get { |
||
649 | return this.noField; |
||
650 | } |
||
651 | set { |
||
652 | if ((object.ReferenceEquals(this.noField, value) != true)) { |
||
653 | this.noField = value; |
||
654 | this.RaisePropertyChanged("no"); |
||
655 | } |
||
656 | } |
||
657 | } |
||
658 | |||
659 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
660 | public string orderNo { |
||
661 | get { |
||
662 | return this.orderNoField; |
||
663 | } |
||
664 | set { |
||
665 | if ((object.ReferenceEquals(this.orderNoField, value) != true)) { |
||
666 | this.orderNoField = value; |
||
667 | this.RaisePropertyChanged("orderNo"); |
||
668 | } |
||
669 | } |
||
670 | } |
||
671 | |||
672 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
673 | public string trace { |
||
674 | get { |
||
675 | return this.traceField; |
||
676 | } |
||
677 | set { |
||
678 | if ((object.ReferenceEquals(this.traceField, value) != true)) { |
||
679 | this.traceField = value; |
||
680 | this.RaisePropertyChanged("trace"); |
||
681 | } |
||
682 | } |
||
683 | } |
||
684 | |||
685 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
686 | public string unit { |
||
687 | get { |
||
688 | return this.unitField; |
||
689 | } |
||
690 | set { |
||
691 | if ((object.ReferenceEquals(this.unitField, value) != true)) { |
||
692 | this.unitField = value; |
||
693 | this.RaisePropertyChanged("unit"); |
||
694 | } |
||
695 | } |
||
696 | } |
||
697 | |||
698 | public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; |
||
699 | |||
700 | protected void RaisePropertyChanged(string propertyName) { |
||
701 | System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; |
||
702 | if ((propertyChanged != null)) { |
||
703 | propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); |
||
704 | } |
||
705 | } |
||
706 | } |
||
707 | |||
708 | [System.Diagnostics.DebuggerStepThroughAttribute()] |
||
709 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")] |
||
710 | fad4d1c0 | taeseongkim | [System.Runtime.Serialization.DataContractAttribute(Name="DocumentInfo", Namespace="http://schemas.datacontract.org/2004/07/PemssAPI.DataModel")] |
711 | [System.SerializableAttribute()] |
||
712 | public partial class DocumentInfo : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged { |
||
713 | |||
714 | [System.NonSerializedAttribute()] |
||
715 | private System.Runtime.Serialization.ExtensionDataObject extensionDataField; |
||
716 | |||
717 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
718 | private int dIdField; |
||
719 | |||
720 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
721 | private string docNameField; |
||
722 | |||
723 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
724 | private string fileNameField; |
||
725 | |||
726 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
727 | private string revisionField; |
||
728 | |||
729 | [System.Runtime.Serialization.OptionalFieldAttribute()] |
||
730 | private string slipNoField; |
||
731 | |||
732 | [global::System.ComponentModel.BrowsableAttribute(false)] |
||
733 | public System.Runtime.Serialization.ExtensionDataObject ExtensionData { |
||
734 | get { |
||
735 | return this.extensionDataField; |
||
736 | } |
||
737 | set { |
||
738 | this.extensionDataField = value; |
||
739 | } |
||
740 | } |
||
741 | |||
742 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
743 | public int dId { |
||
744 | get { |
||
745 | return this.dIdField; |
||
746 | } |
||
747 | set { |
||
748 | if ((this.dIdField.Equals(value) != true)) { |
||
749 | this.dIdField = value; |
||
750 | this.RaisePropertyChanged("dId"); |
||
751 | } |
||
752 | } |
||
753 | } |
||
754 | |||
755 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
756 | public string docName { |
||
757 | get { |
||
758 | return this.docNameField; |
||
759 | } |
||
760 | set { |
||
761 | if ((object.ReferenceEquals(this.docNameField, value) != true)) { |
||
762 | this.docNameField = value; |
||
763 | this.RaisePropertyChanged("docName"); |
||
764 | } |
||
765 | } |
||
766 | } |
||
767 | |||
768 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
769 | public string fileName { |
||
770 | get { |
||
771 | return this.fileNameField; |
||
772 | } |
||
773 | set { |
||
774 | if ((object.ReferenceEquals(this.fileNameField, value) != true)) { |
||
775 | this.fileNameField = value; |
||
776 | this.RaisePropertyChanged("fileName"); |
||
777 | } |
||
778 | } |
||
779 | } |
||
780 | |||
781 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
782 | public string revision { |
||
783 | get { |
||
784 | return this.revisionField; |
||
785 | } |
||
786 | set { |
||
787 | if ((object.ReferenceEquals(this.revisionField, value) != true)) { |
||
788 | this.revisionField = value; |
||
789 | this.RaisePropertyChanged("revision"); |
||
790 | } |
||
791 | } |
||
792 | } |
||
793 | |||
794 | [System.Runtime.Serialization.DataMemberAttribute()] |
||
795 | public string slipNo { |
||
796 | get { |
||
797 | return this.slipNoField; |
||
798 | } |
||
799 | set { |
||
800 | if ((object.ReferenceEquals(this.slipNoField, value) != true)) { |
||
801 | this.slipNoField = value; |
||
802 | this.RaisePropertyChanged("slipNo"); |
||
803 | } |
||
804 | } |
||
805 | } |
||
806 | |||
807 | public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged; |
||
808 | |||
809 | protected void RaisePropertyChanged(string propertyName) { |
||
810 | System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged; |
||
811 | if ((propertyChanged != null)) { |
||
812 | propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName)); |
||
813 | } |
||
814 | } |
||
815 | } |
||
816 | |||
817 | 0f6604ce | taeseongkim | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] |
818 | [System.ServiceModel.ServiceContractAttribute(Namespace="", ConfigurationName="PemssService.PemssService")] |
||
819 | public interface PemssService { |
||
820 | |||
821 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/GetrequirementList", ReplyAction="urn:PemssService/GetrequirementListResponse")] |
||
822 | fad4d1c0 | taeseongkim | System.Collections.Generic.List<KCOM.PemssService.Requirement> GetrequirementList(string pId, string dId); |
823 | 0f6604ce | taeseongkim | |
824 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/GetrequirementList", ReplyAction="urn:PemssService/GetrequirementListResponse")] |
||
825 | fad4d1c0 | taeseongkim | System.Threading.Tasks.Task<System.Collections.Generic.List<KCOM.PemssService.Requirement>> GetrequirementListAsync(string pId, string dId); |
826 | |||
827 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/SetRequirementComment", ReplyAction="urn:PemssService/SetRequirementCommentResponse")] |
||
828 | bool SetRequirementComment(string pId, string dId, string mdId, string commentId, string comment, bool condition, string uId); |
||
829 | |||
830 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/SetRequirementComment", ReplyAction="urn:PemssService/SetRequirementCommentResponse")] |
||
831 | System.Threading.Tasks.Task<bool> SetRequirementCommentAsync(string pId, string dId, string mdId, string commentId, string comment, bool condition, string uId); |
||
832 | |||
833 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/RemoveRequirementComment", ReplyAction="urn:PemssService/RemoveRequirementCommentResponse")] |
||
834 | bool RemoveRequirementComment(string pId, string dId, string mdId, string commentId, string uId); |
||
835 | |||
836 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/RemoveRequirementComment", ReplyAction="urn:PemssService/RemoveRequirementCommentResponse")] |
||
837 | System.Threading.Tasks.Task<bool> RemoveRequirementCommentAsync(string pId, string dId, string mdId, string commentId, string uId); |
||
838 | 0f6604ce | taeseongkim | |
839 | b7645ccc | taeseongkim | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/GetBidderstList", ReplyAction="urn:PemssService/GetBidderstListResponse")] |
840 | System.Collections.Generic.List<KCOM.PemssService.Bidders> GetBidderstList(string pId, string dId); |
||
841 | |||
842 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/GetBidderstList", ReplyAction="urn:PemssService/GetBidderstListResponse")] |
||
843 | System.Threading.Tasks.Task<System.Collections.Generic.List<KCOM.PemssService.Bidders>> GetBidderstListAsync(string pId, string dId); |
||
844 | |||
845 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/SetBiddersComment", ReplyAction="urn:PemssService/SetBiddersCommentResponse")] |
||
846 | bool SetBiddersComment(string pId, string dId, string bdId, string commentId, string comment, bool condition, string uId); |
||
847 | |||
848 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/SetBiddersComment", ReplyAction="urn:PemssService/SetBiddersCommentResponse")] |
||
849 | System.Threading.Tasks.Task<bool> SetBiddersCommentAsync(string pId, string dId, string bdId, string commentId, string comment, bool condition, string uId); |
||
850 | |||
851 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/RemoveBiddersComment", ReplyAction="urn:PemssService/RemoveBiddersCommentResponse")] |
||
852 | bool RemoveBiddersComment(string pId, string dId, string bdId, string commentId, string uId); |
||
853 | |||
854 | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/RemoveBiddersComment", ReplyAction="urn:PemssService/RemoveBiddersCommentResponse")] |
||
855 | System.Threading.Tasks.Task<bool> RemoveBiddersCommentAsync(string pId, string dId, string bdId, string commentId, string uId); |
||
856 | |||
857 | fad4d1c0 | taeseongkim | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/GetDocumentInfo", ReplyAction="urn:PemssService/GetDocumentInfoResponse")] |
858 | KCOM.PemssService.DocumentInfo GetDocumentInfo(string pId, string dId); |
||
859 | 0f6604ce | taeseongkim | |
860 | fad4d1c0 | taeseongkim | [System.ServiceModel.OperationContractAttribute(Action="urn:PemssService/GetDocumentInfo", ReplyAction="urn:PemssService/GetDocumentInfoResponse")] |
861 | System.Threading.Tasks.Task<KCOM.PemssService.DocumentInfo> GetDocumentInfoAsync(string pId, string dId); |
||
862 | 0f6604ce | taeseongkim | } |
863 | |||
864 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] |
||
865 | public interface PemssServiceChannel : KCOM.PemssService.PemssService, System.ServiceModel.IClientChannel { |
||
866 | } |
||
867 | |||
868 | [System.Diagnostics.DebuggerStepThroughAttribute()] |
||
869 | [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")] |
||
870 | public partial class PemssServiceClient : System.ServiceModel.ClientBase<KCOM.PemssService.PemssService>, KCOM.PemssService.PemssService { |
||
871 | |||
872 | public PemssServiceClient() { |
||
873 | } |
||
874 | |||
875 | public PemssServiceClient(string endpointConfigurationName) : |
||
876 | base(endpointConfigurationName) { |
||
877 | } |
||
878 | |||
879 | public PemssServiceClient(string endpointConfigurationName, string remoteAddress) : |
||
880 | base(endpointConfigurationName, remoteAddress) { |
||
881 | } |
||
882 | |||
883 | public PemssServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) : |
||
884 | base(endpointConfigurationName, remoteAddress) { |
||
885 | } |
||
886 | |||
887 | public PemssServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) : |
||
888 | base(binding, remoteAddress) { |
||
889 | } |
||
890 | |||
891 | fad4d1c0 | taeseongkim | public System.Collections.Generic.List<KCOM.PemssService.Requirement> GetrequirementList(string pId, string dId) { |
892 | 0f6604ce | taeseongkim | return base.Channel.GetrequirementList(pId, dId); |
893 | } |
||
894 | |||
895 | fad4d1c0 | taeseongkim | public System.Threading.Tasks.Task<System.Collections.Generic.List<KCOM.PemssService.Requirement>> GetrequirementListAsync(string pId, string dId) { |
896 | 0f6604ce | taeseongkim | return base.Channel.GetrequirementListAsync(pId, dId); |
897 | } |
||
898 | |||
899 | fad4d1c0 | taeseongkim | public bool SetRequirementComment(string pId, string dId, string mdId, string commentId, string comment, bool condition, string uId) { |
900 | return base.Channel.SetRequirementComment(pId, dId, mdId, commentId, comment, condition, uId); |
||
901 | } |
||
902 | |||
903 | public System.Threading.Tasks.Task<bool> SetRequirementCommentAsync(string pId, string dId, string mdId, string commentId, string comment, bool condition, string uId) { |
||
904 | return base.Channel.SetRequirementCommentAsync(pId, dId, mdId, commentId, comment, condition, uId); |
||
905 | } |
||
906 | |||
907 | public bool RemoveRequirementComment(string pId, string dId, string mdId, string commentId, string uId) { |
||
908 | return base.Channel.RemoveRequirementComment(pId, dId, mdId, commentId, uId); |
||
909 | } |
||
910 | |||
911 | public System.Threading.Tasks.Task<bool> RemoveRequirementCommentAsync(string pId, string dId, string mdId, string commentId, string uId) { |
||
912 | return base.Channel.RemoveRequirementCommentAsync(pId, dId, mdId, commentId, uId); |
||
913 | } |
||
914 | |||
915 | b7645ccc | taeseongkim | public System.Collections.Generic.List<KCOM.PemssService.Bidders> GetBidderstList(string pId, string dId) { |
916 | return base.Channel.GetBidderstList(pId, dId); |
||
917 | } |
||
918 | |||
919 | public System.Threading.Tasks.Task<System.Collections.Generic.List<KCOM.PemssService.Bidders>> GetBidderstListAsync(string pId, string dId) { |
||
920 | return base.Channel.GetBidderstListAsync(pId, dId); |
||
921 | } |
||
922 | |||
923 | public bool SetBiddersComment(string pId, string dId, string bdId, string commentId, string comment, bool condition, string uId) { |
||
924 | return base.Channel.SetBiddersComment(pId, dId, bdId, commentId, comment, condition, uId); |
||
925 | } |
||
926 | |||
927 | public System.Threading.Tasks.Task<bool> SetBiddersCommentAsync(string pId, string dId, string bdId, string commentId, string comment, bool condition, string uId) { |
||
928 | return base.Channel.SetBiddersCommentAsync(pId, dId, bdId, commentId, comment, condition, uId); |
||
929 | } |
||
930 | |||
931 | public bool RemoveBiddersComment(string pId, string dId, string bdId, string commentId, string uId) { |
||
932 | return base.Channel.RemoveBiddersComment(pId, dId, bdId, commentId, uId); |
||
933 | } |
||
934 | |||
935 | public System.Threading.Tasks.Task<bool> RemoveBiddersCommentAsync(string pId, string dId, string bdId, string commentId, string uId) { |
||
936 | return base.Channel.RemoveBiddersCommentAsync(pId, dId, bdId, commentId, uId); |
||
937 | } |
||
938 | |||
939 | fad4d1c0 | taeseongkim | public KCOM.PemssService.DocumentInfo GetDocumentInfo(string pId, string dId) { |
940 | return base.Channel.GetDocumentInfo(pId, dId); |
||
941 | 0f6604ce | taeseongkim | } |
942 | |||
943 | fad4d1c0 | taeseongkim | public System.Threading.Tasks.Task<KCOM.PemssService.DocumentInfo> GetDocumentInfoAsync(string pId, string dId) { |
944 | return base.Channel.GetDocumentInfoAsync(pId, dId); |
||
945 | 0f6604ce | taeseongkim | } |
946 | } |
||
947 | } |