Reference.cs 35 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. // 此代码由工具生成。
  4. // 运行时版本:4.0.30319.42000
  5. //
  6. // 对此文件的更改可能会导致不正确的行为,并且如果
  7. // 重新生成代码,这些更改将会丢失。
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10. namespace Winsoft.GOV.Test.PowerMettersServiceReference {
  11. using System.Runtime.Serialization;
  12. using System;
  13. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  14. [System.Runtime.Serialization.DataContractAttribute(Name="County", Namespace="http://schemas.datacontract.org/2004/07/Winsoft.GOV.Framework.Model")]
  15. public enum County : int {
  16. [System.Runtime.Serialization.EnumMemberAttribute()]
  17. LS = 0,
  18. [System.Runtime.Serialization.EnumMemberAttribute()]
  19. LD = 1,
  20. [System.Runtime.Serialization.EnumMemberAttribute()]
  21. LQ = 2,
  22. [System.Runtime.Serialization.EnumMemberAttribute()]
  23. QT = 3,
  24. [System.Runtime.Serialization.EnumMemberAttribute()]
  25. YH = 4,
  26. [System.Runtime.Serialization.EnumMemberAttribute()]
  27. QY = 5,
  28. [System.Runtime.Serialization.EnumMemberAttribute()]
  29. JY = 6,
  30. [System.Runtime.Serialization.EnumMemberAttribute()]
  31. SC = 7,
  32. [System.Runtime.Serialization.EnumMemberAttribute()]
  33. SY = 8,
  34. [System.Runtime.Serialization.EnumMemberAttribute()]
  35. JN = 9,
  36. [System.Runtime.Serialization.EnumMemberAttribute()]
  37. KFQ = 10,
  38. }
  39. [System.Diagnostics.DebuggerStepThroughAttribute()]
  40. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  41. [System.Runtime.Serialization.DataContractAttribute(Name="Branch", Namespace="http://schemas.datacontract.org/2004/07/Winsoft.GOV.Framework.Model")]
  42. [System.SerializableAttribute()]
  43. public partial class Branch : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  44. [System.NonSerializedAttribute()]
  45. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  46. [System.Runtime.Serialization.OptionalFieldAttribute()]
  47. private string GUIDField;
  48. [System.Runtime.Serialization.OptionalFieldAttribute()]
  49. private string NameField;
  50. [System.Runtime.Serialization.OptionalFieldAttribute()]
  51. private string ShortNameField;
  52. [global::System.ComponentModel.BrowsableAttribute(false)]
  53. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  54. get {
  55. return this.extensionDataField;
  56. }
  57. set {
  58. this.extensionDataField = value;
  59. }
  60. }
  61. [System.Runtime.Serialization.DataMemberAttribute()]
  62. public string GUID {
  63. get {
  64. return this.GUIDField;
  65. }
  66. set {
  67. if ((object.ReferenceEquals(this.GUIDField, value) != true)) {
  68. this.GUIDField = value;
  69. this.RaisePropertyChanged("GUID");
  70. }
  71. }
  72. }
  73. [System.Runtime.Serialization.DataMemberAttribute()]
  74. public string Name {
  75. get {
  76. return this.NameField;
  77. }
  78. set {
  79. if ((object.ReferenceEquals(this.NameField, value) != true)) {
  80. this.NameField = value;
  81. this.RaisePropertyChanged("Name");
  82. }
  83. }
  84. }
  85. [System.Runtime.Serialization.DataMemberAttribute()]
  86. public string ShortName {
  87. get {
  88. return this.ShortNameField;
  89. }
  90. set {
  91. if ((object.ReferenceEquals(this.ShortNameField, value) != true)) {
  92. this.ShortNameField = value;
  93. this.RaisePropertyChanged("ShortName");
  94. }
  95. }
  96. }
  97. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  98. protected void RaisePropertyChanged(string propertyName) {
  99. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  100. if ((propertyChanged != null)) {
  101. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  102. }
  103. }
  104. }
  105. [System.Diagnostics.DebuggerStepThroughAttribute()]
  106. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  107. [System.Runtime.Serialization.DataContractAttribute(Name="PowerMattersBase", Namespace="http://schemas.datacontract.org/2004/07/Winsoft.GOV.Framework.Model")]
  108. [System.SerializableAttribute()]
  109. public partial class PowerMattersBase : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  110. [System.NonSerializedAttribute()]
  111. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  112. [System.Runtime.Serialization.OptionalFieldAttribute()]
  113. private string QL_INNER_CODEField;
  114. [System.Runtime.Serialization.OptionalFieldAttribute()]
  115. private string QL_NAMEField;
  116. [global::System.ComponentModel.BrowsableAttribute(false)]
  117. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  118. get {
  119. return this.extensionDataField;
  120. }
  121. set {
  122. this.extensionDataField = value;
  123. }
  124. }
  125. [System.Runtime.Serialization.DataMemberAttribute()]
  126. public string QL_INNER_CODE {
  127. get {
  128. return this.QL_INNER_CODEField;
  129. }
  130. set {
  131. if ((object.ReferenceEquals(this.QL_INNER_CODEField, value) != true)) {
  132. this.QL_INNER_CODEField = value;
  133. this.RaisePropertyChanged("QL_INNER_CODE");
  134. }
  135. }
  136. }
  137. [System.Runtime.Serialization.DataMemberAttribute()]
  138. public string QL_NAME {
  139. get {
  140. return this.QL_NAMEField;
  141. }
  142. set {
  143. if ((object.ReferenceEquals(this.QL_NAMEField, value) != true)) {
  144. this.QL_NAMEField = value;
  145. this.RaisePropertyChanged("QL_NAME");
  146. }
  147. }
  148. }
  149. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  150. protected void RaisePropertyChanged(string propertyName) {
  151. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  152. if ((propertyChanged != null)) {
  153. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  154. }
  155. }
  156. }
  157. [System.Diagnostics.DebuggerStepThroughAttribute()]
  158. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.Runtime.Serialization", "4.0.0.0")]
  159. [System.Runtime.Serialization.DataContractAttribute(Name="PowerMattersDetail", Namespace="http://schemas.datacontract.org/2004/07/Winsoft.GOV.Framework.Model")]
  160. [System.SerializableAttribute()]
  161. public partial class PowerMattersDetail : object, System.Runtime.Serialization.IExtensibleDataObject, System.ComponentModel.INotifyPropertyChanged {
  162. [System.NonSerializedAttribute()]
  163. private System.Runtime.Serialization.ExtensionDataObject extensionDataField;
  164. [System.Runtime.Serialization.OptionalFieldAttribute()]
  165. private string ACCEPT_ADDRESS_INFOField;
  166. [System.Runtime.Serialization.OptionalFieldAttribute()]
  167. private int ANTICIPATE_DAYField;
  168. [System.Runtime.Serialization.OptionalFieldAttribute()]
  169. private int APPLYERMIN_COUNTField;
  170. [System.Runtime.Serialization.OptionalFieldAttribute()]
  171. private string APPLYERMIN_COUNT_DESCField;
  172. [System.Runtime.Serialization.OptionalFieldAttribute()]
  173. private string APPLY_CONDITIONField;
  174. [System.Runtime.Serialization.OptionalFieldAttribute()]
  175. private string BJTYPEField;
  176. [System.Runtime.Serialization.OptionalFieldAttribute()]
  177. private string BakNoteField;
  178. [System.Runtime.Serialization.OptionalFieldAttribute()]
  179. private string CHARGEITEM_INFOField;
  180. [System.Runtime.Serialization.OptionalFieldAttribute()]
  181. private string ITEMSOURCEField;
  182. [System.Runtime.Serialization.OptionalFieldAttribute()]
  183. private string LAWBASISField;
  184. [System.Runtime.Serialization.OptionalFieldAttribute()]
  185. private string LEAD_DEPTField;
  186. [System.Runtime.Serialization.OptionalFieldAttribute()]
  187. private string LINK_TELField;
  188. [System.Runtime.Serialization.OptionalFieldAttribute()]
  189. private string MATERIAL_INFOField;
  190. [System.Runtime.Serialization.OptionalFieldAttribute()]
  191. private int PROMISE_DAYField;
  192. [System.Runtime.Serialization.OptionalFieldAttribute()]
  193. private string QA_INFOField;
  194. [System.Runtime.Serialization.OptionalFieldAttribute()]
  195. private string QL_DEPField;
  196. [System.Runtime.Serialization.OptionalFieldAttribute()]
  197. private string QL_KINDField;
  198. [System.Runtime.Serialization.OptionalFieldAttribute()]
  199. private string QL_NAMEField;
  200. [System.Runtime.Serialization.OptionalFieldAttribute()]
  201. private string QL_STATEField;
  202. [System.Runtime.Serialization.OptionalFieldAttribute()]
  203. private string ROWGUIDField;
  204. [System.Runtime.Serialization.OptionalFieldAttribute()]
  205. private string SUPERVISE_TELField;
  206. [System.Runtime.Serialization.OptionalFieldAttribute()]
  207. private string WebApplyModeField;
  208. [System.Runtime.Serialization.OptionalFieldAttribute()]
  209. private string XINGZHENXDRXZField;
  210. [global::System.ComponentModel.BrowsableAttribute(false)]
  211. public System.Runtime.Serialization.ExtensionDataObject ExtensionData {
  212. get {
  213. return this.extensionDataField;
  214. }
  215. set {
  216. this.extensionDataField = value;
  217. }
  218. }
  219. [System.Runtime.Serialization.DataMemberAttribute()]
  220. public string ACCEPT_ADDRESS_INFO {
  221. get {
  222. return this.ACCEPT_ADDRESS_INFOField;
  223. }
  224. set {
  225. if ((object.ReferenceEquals(this.ACCEPT_ADDRESS_INFOField, value) != true)) {
  226. this.ACCEPT_ADDRESS_INFOField = value;
  227. this.RaisePropertyChanged("ACCEPT_ADDRESS_INFO");
  228. }
  229. }
  230. }
  231. [System.Runtime.Serialization.DataMemberAttribute()]
  232. public int ANTICIPATE_DAY {
  233. get {
  234. return this.ANTICIPATE_DAYField;
  235. }
  236. set {
  237. if ((this.ANTICIPATE_DAYField.Equals(value) != true)) {
  238. this.ANTICIPATE_DAYField = value;
  239. this.RaisePropertyChanged("ANTICIPATE_DAY");
  240. }
  241. }
  242. }
  243. [System.Runtime.Serialization.DataMemberAttribute()]
  244. public int APPLYERMIN_COUNT {
  245. get {
  246. return this.APPLYERMIN_COUNTField;
  247. }
  248. set {
  249. if ((this.APPLYERMIN_COUNTField.Equals(value) != true)) {
  250. this.APPLYERMIN_COUNTField = value;
  251. this.RaisePropertyChanged("APPLYERMIN_COUNT");
  252. }
  253. }
  254. }
  255. [System.Runtime.Serialization.DataMemberAttribute()]
  256. public string APPLYERMIN_COUNT_DESC {
  257. get {
  258. return this.APPLYERMIN_COUNT_DESCField;
  259. }
  260. set {
  261. if ((object.ReferenceEquals(this.APPLYERMIN_COUNT_DESCField, value) != true)) {
  262. this.APPLYERMIN_COUNT_DESCField = value;
  263. this.RaisePropertyChanged("APPLYERMIN_COUNT_DESC");
  264. }
  265. }
  266. }
  267. [System.Runtime.Serialization.DataMemberAttribute()]
  268. public string APPLY_CONDITION {
  269. get {
  270. return this.APPLY_CONDITIONField;
  271. }
  272. set {
  273. if ((object.ReferenceEquals(this.APPLY_CONDITIONField, value) != true)) {
  274. this.APPLY_CONDITIONField = value;
  275. this.RaisePropertyChanged("APPLY_CONDITION");
  276. }
  277. }
  278. }
  279. [System.Runtime.Serialization.DataMemberAttribute()]
  280. public string BJTYPE {
  281. get {
  282. return this.BJTYPEField;
  283. }
  284. set {
  285. if ((object.ReferenceEquals(this.BJTYPEField, value) != true)) {
  286. this.BJTYPEField = value;
  287. this.RaisePropertyChanged("BJTYPE");
  288. }
  289. }
  290. }
  291. [System.Runtime.Serialization.DataMemberAttribute()]
  292. public string BakNote {
  293. get {
  294. return this.BakNoteField;
  295. }
  296. set {
  297. if ((object.ReferenceEquals(this.BakNoteField, value) != true)) {
  298. this.BakNoteField = value;
  299. this.RaisePropertyChanged("BakNote");
  300. }
  301. }
  302. }
  303. [System.Runtime.Serialization.DataMemberAttribute()]
  304. public string CHARGEITEM_INFO {
  305. get {
  306. return this.CHARGEITEM_INFOField;
  307. }
  308. set {
  309. if ((object.ReferenceEquals(this.CHARGEITEM_INFOField, value) != true)) {
  310. this.CHARGEITEM_INFOField = value;
  311. this.RaisePropertyChanged("CHARGEITEM_INFO");
  312. }
  313. }
  314. }
  315. [System.Runtime.Serialization.DataMemberAttribute()]
  316. public string ITEMSOURCE {
  317. get {
  318. return this.ITEMSOURCEField;
  319. }
  320. set {
  321. if ((object.ReferenceEquals(this.ITEMSOURCEField, value) != true)) {
  322. this.ITEMSOURCEField = value;
  323. this.RaisePropertyChanged("ITEMSOURCE");
  324. }
  325. }
  326. }
  327. [System.Runtime.Serialization.DataMemberAttribute()]
  328. public string LAWBASIS {
  329. get {
  330. return this.LAWBASISField;
  331. }
  332. set {
  333. if ((object.ReferenceEquals(this.LAWBASISField, value) != true)) {
  334. this.LAWBASISField = value;
  335. this.RaisePropertyChanged("LAWBASIS");
  336. }
  337. }
  338. }
  339. [System.Runtime.Serialization.DataMemberAttribute()]
  340. public string LEAD_DEPT {
  341. get {
  342. return this.LEAD_DEPTField;
  343. }
  344. set {
  345. if ((object.ReferenceEquals(this.LEAD_DEPTField, value) != true)) {
  346. this.LEAD_DEPTField = value;
  347. this.RaisePropertyChanged("LEAD_DEPT");
  348. }
  349. }
  350. }
  351. [System.Runtime.Serialization.DataMemberAttribute()]
  352. public string LINK_TEL {
  353. get {
  354. return this.LINK_TELField;
  355. }
  356. set {
  357. if ((object.ReferenceEquals(this.LINK_TELField, value) != true)) {
  358. this.LINK_TELField = value;
  359. this.RaisePropertyChanged("LINK_TEL");
  360. }
  361. }
  362. }
  363. [System.Runtime.Serialization.DataMemberAttribute()]
  364. public string MATERIAL_INFO {
  365. get {
  366. return this.MATERIAL_INFOField;
  367. }
  368. set {
  369. if ((object.ReferenceEquals(this.MATERIAL_INFOField, value) != true)) {
  370. this.MATERIAL_INFOField = value;
  371. this.RaisePropertyChanged("MATERIAL_INFO");
  372. }
  373. }
  374. }
  375. [System.Runtime.Serialization.DataMemberAttribute()]
  376. public int PROMISE_DAY {
  377. get {
  378. return this.PROMISE_DAYField;
  379. }
  380. set {
  381. if ((this.PROMISE_DAYField.Equals(value) != true)) {
  382. this.PROMISE_DAYField = value;
  383. this.RaisePropertyChanged("PROMISE_DAY");
  384. }
  385. }
  386. }
  387. [System.Runtime.Serialization.DataMemberAttribute()]
  388. public string QA_INFO {
  389. get {
  390. return this.QA_INFOField;
  391. }
  392. set {
  393. if ((object.ReferenceEquals(this.QA_INFOField, value) != true)) {
  394. this.QA_INFOField = value;
  395. this.RaisePropertyChanged("QA_INFO");
  396. }
  397. }
  398. }
  399. [System.Runtime.Serialization.DataMemberAttribute()]
  400. public string QL_DEP {
  401. get {
  402. return this.QL_DEPField;
  403. }
  404. set {
  405. if ((object.ReferenceEquals(this.QL_DEPField, value) != true)) {
  406. this.QL_DEPField = value;
  407. this.RaisePropertyChanged("QL_DEP");
  408. }
  409. }
  410. }
  411. [System.Runtime.Serialization.DataMemberAttribute()]
  412. public string QL_KIND {
  413. get {
  414. return this.QL_KINDField;
  415. }
  416. set {
  417. if ((object.ReferenceEquals(this.QL_KINDField, value) != true)) {
  418. this.QL_KINDField = value;
  419. this.RaisePropertyChanged("QL_KIND");
  420. }
  421. }
  422. }
  423. [System.Runtime.Serialization.DataMemberAttribute()]
  424. public string QL_NAME {
  425. get {
  426. return this.QL_NAMEField;
  427. }
  428. set {
  429. if ((object.ReferenceEquals(this.QL_NAMEField, value) != true)) {
  430. this.QL_NAMEField = value;
  431. this.RaisePropertyChanged("QL_NAME");
  432. }
  433. }
  434. }
  435. [System.Runtime.Serialization.DataMemberAttribute()]
  436. public string QL_STATE {
  437. get {
  438. return this.QL_STATEField;
  439. }
  440. set {
  441. if ((object.ReferenceEquals(this.QL_STATEField, value) != true)) {
  442. this.QL_STATEField = value;
  443. this.RaisePropertyChanged("QL_STATE");
  444. }
  445. }
  446. }
  447. [System.Runtime.Serialization.DataMemberAttribute()]
  448. public string ROWGUID {
  449. get {
  450. return this.ROWGUIDField;
  451. }
  452. set {
  453. if ((object.ReferenceEquals(this.ROWGUIDField, value) != true)) {
  454. this.ROWGUIDField = value;
  455. this.RaisePropertyChanged("ROWGUID");
  456. }
  457. }
  458. }
  459. [System.Runtime.Serialization.DataMemberAttribute()]
  460. public string SUPERVISE_TEL {
  461. get {
  462. return this.SUPERVISE_TELField;
  463. }
  464. set {
  465. if ((object.ReferenceEquals(this.SUPERVISE_TELField, value) != true)) {
  466. this.SUPERVISE_TELField = value;
  467. this.RaisePropertyChanged("SUPERVISE_TEL");
  468. }
  469. }
  470. }
  471. [System.Runtime.Serialization.DataMemberAttribute()]
  472. public string WebApplyMode {
  473. get {
  474. return this.WebApplyModeField;
  475. }
  476. set {
  477. if ((object.ReferenceEquals(this.WebApplyModeField, value) != true)) {
  478. this.WebApplyModeField = value;
  479. this.RaisePropertyChanged("WebApplyMode");
  480. }
  481. }
  482. }
  483. [System.Runtime.Serialization.DataMemberAttribute()]
  484. public string XINGZHENXDRXZ {
  485. get {
  486. return this.XINGZHENXDRXZField;
  487. }
  488. set {
  489. if ((object.ReferenceEquals(this.XINGZHENXDRXZField, value) != true)) {
  490. this.XINGZHENXDRXZField = value;
  491. this.RaisePropertyChanged("XINGZHENXDRXZ");
  492. }
  493. }
  494. }
  495. public event System.ComponentModel.PropertyChangedEventHandler PropertyChanged;
  496. protected void RaisePropertyChanged(string propertyName) {
  497. System.ComponentModel.PropertyChangedEventHandler propertyChanged = this.PropertyChanged;
  498. if ((propertyChanged != null)) {
  499. propertyChanged(this, new System.ComponentModel.PropertyChangedEventArgs(propertyName));
  500. }
  501. }
  502. }
  503. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  504. [System.ServiceModel.ServiceContractAttribute(ConfigurationName="PowerMettersServiceReference.IPowerMettersService")]
  505. public interface IPowerMettersService {
  506. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetBranchsEx", ReplyAction="http://tempuri.org/IPowerMettersService/GetBranchsExResponse")]
  507. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.Branch> GetBranchsEx(Winsoft.GOV.Test.PowerMettersServiceReference.County c);
  508. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetBranchs", ReplyAction="http://tempuri.org/IPowerMettersService/GetBranchsResponse")]
  509. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.Branch> GetBranchs();
  510. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetPowerMattersByBranchGuidEx", ReplyAction="http://tempuri.org/IPowerMettersService/GetPowerMattersByBranchGuidExResponse")]
  511. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetPowerMattersByBranchGuidEx(string guid, Winsoft.GOV.Test.PowerMettersServiceReference.County c);
  512. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetPowerMattersByBranchGuid", ReplyAction="http://tempuri.org/IPowerMettersService/GetPowerMattersByBranchGuidResponse")]
  513. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetPowerMattersByBranchGuid(string guid);
  514. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetPowerMattersDetailByRowIDEx", ReplyAction="http://tempuri.org/IPowerMettersService/GetPowerMattersDetailByRowIDExResponse")]
  515. Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersDetail GetPowerMattersDetailByRowIDEx(string rowID, Winsoft.GOV.Test.PowerMettersServiceReference.County c);
  516. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetPowerMattersDetailByRowID", ReplyAction="http://tempuri.org/IPowerMettersService/GetPowerMattersDetailByRowIDResponse")]
  517. Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersDetail GetPowerMattersDetailByRowID(string rowID);
  518. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetPowerMattersEx", ReplyAction="http://tempuri.org/IPowerMettersService/GetPowerMattersExResponse")]
  519. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetPowerMattersEx(string guid, string ql_kind, Winsoft.GOV.Test.PowerMettersServiceReference.County c);
  520. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetPowerMatters", ReplyAction="http://tempuri.org/IPowerMettersService/GetPowerMattersResponse")]
  521. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetPowerMatters(string guid, string ql_kind);
  522. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetBranchsByApplyTypeEx", ReplyAction="http://tempuri.org/IPowerMettersService/GetBranchsByApplyTypeExResponse")]
  523. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.Branch> GetBranchsByApplyTypeEx(int type, Winsoft.GOV.Test.PowerMettersServiceReference.County c);
  524. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetBranchsByApplyType", ReplyAction="http://tempuri.org/IPowerMettersService/GetBranchsByApplyTypeResponse")]
  525. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.Branch> GetBranchsByApplyType(int type);
  526. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetPowerMattersByBranchGuidAndApplyTypeEx" +
  527. "", ReplyAction="http://tempuri.org/IPowerMettersService/GetPowerMattersByBranchGuidAndApplyTypeEx" +
  528. "Response")]
  529. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetPowerMattersByBranchGuidAndApplyTypeEx(string guid, int type, Winsoft.GOV.Test.PowerMettersServiceReference.County c);
  530. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetPowerMattersByBranchGuidAndApplyType", ReplyAction="http://tempuri.org/IPowerMettersService/GetPowerMattersByBranchGuidAndApplyTypeRe" +
  531. "sponse")]
  532. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetPowerMattersByBranchGuidAndApplyType(string guid, int type);
  533. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/SearchByQLNameEx", ReplyAction="http://tempuri.org/IPowerMettersService/SearchByQLNameExResponse")]
  534. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> SearchByQLNameEx(string ql_name, int itemIndex, int size, Winsoft.GOV.Test.PowerMettersServiceReference.County c);
  535. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/SearchByQLName", ReplyAction="http://tempuri.org/IPowerMettersService/SearchByQLNameResponse")]
  536. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> SearchByQLName(string ql_name, int itemIndex, int size);
  537. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetOnceRunBranchsEx", ReplyAction="http://tempuri.org/IPowerMettersService/GetOnceRunBranchsExResponse")]
  538. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.Branch> GetOnceRunBranchsEx(Winsoft.GOV.Test.PowerMettersServiceReference.County c);
  539. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetOnceRunBranchs", ReplyAction="http://tempuri.org/IPowerMettersService/GetOnceRunBranchsResponse")]
  540. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.Branch> GetOnceRunBranchs();
  541. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetOnceRunPowerMattersByBranchGuidEx", ReplyAction="http://tempuri.org/IPowerMettersService/GetOnceRunPowerMattersByBranchGuidExRespo" +
  542. "nse")]
  543. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetOnceRunPowerMattersByBranchGuidEx(string guid, Winsoft.GOV.Test.PowerMettersServiceReference.County c);
  544. [System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IPowerMettersService/GetOnceRunPowerMattersByBranchGuid", ReplyAction="http://tempuri.org/IPowerMettersService/GetOnceRunPowerMattersByBranchGuidRespons" +
  545. "e")]
  546. System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetOnceRunPowerMattersByBranchGuid(string guid);
  547. }
  548. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  549. public interface IPowerMettersServiceChannel : Winsoft.GOV.Test.PowerMettersServiceReference.IPowerMettersService, System.ServiceModel.IClientChannel {
  550. }
  551. [System.Diagnostics.DebuggerStepThroughAttribute()]
  552. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  553. public partial class PowerMettersServiceClient : System.ServiceModel.ClientBase<Winsoft.GOV.Test.PowerMettersServiceReference.IPowerMettersService>, Winsoft.GOV.Test.PowerMettersServiceReference.IPowerMettersService {
  554. public PowerMettersServiceClient() {
  555. }
  556. public PowerMettersServiceClient(string endpointConfigurationName) :
  557. base(endpointConfigurationName) {
  558. }
  559. public PowerMettersServiceClient(string endpointConfigurationName, string remoteAddress) :
  560. base(endpointConfigurationName, remoteAddress) {
  561. }
  562. public PowerMettersServiceClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
  563. base(endpointConfigurationName, remoteAddress) {
  564. }
  565. public PowerMettersServiceClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
  566. base(binding, remoteAddress) {
  567. }
  568. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.Branch> GetBranchsEx(Winsoft.GOV.Test.PowerMettersServiceReference.County c) {
  569. return base.Channel.GetBranchsEx(c);
  570. }
  571. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.Branch> GetBranchs() {
  572. return base.Channel.GetBranchs();
  573. }
  574. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetPowerMattersByBranchGuidEx(string guid, Winsoft.GOV.Test.PowerMettersServiceReference.County c) {
  575. return base.Channel.GetPowerMattersByBranchGuidEx(guid, c);
  576. }
  577. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetPowerMattersByBranchGuid(string guid) {
  578. return base.Channel.GetPowerMattersByBranchGuid(guid);
  579. }
  580. public Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersDetail GetPowerMattersDetailByRowIDEx(string rowID, Winsoft.GOV.Test.PowerMettersServiceReference.County c) {
  581. return base.Channel.GetPowerMattersDetailByRowIDEx(rowID, c);
  582. }
  583. public Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersDetail GetPowerMattersDetailByRowID(string rowID) {
  584. return base.Channel.GetPowerMattersDetailByRowID(rowID);
  585. }
  586. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetPowerMattersEx(string guid, string ql_kind, Winsoft.GOV.Test.PowerMettersServiceReference.County c) {
  587. return base.Channel.GetPowerMattersEx(guid, ql_kind, c);
  588. }
  589. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetPowerMatters(string guid, string ql_kind) {
  590. return base.Channel.GetPowerMatters(guid, ql_kind);
  591. }
  592. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.Branch> GetBranchsByApplyTypeEx(int type, Winsoft.GOV.Test.PowerMettersServiceReference.County c) {
  593. return base.Channel.GetBranchsByApplyTypeEx(type, c);
  594. }
  595. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.Branch> GetBranchsByApplyType(int type) {
  596. return base.Channel.GetBranchsByApplyType(type);
  597. }
  598. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetPowerMattersByBranchGuidAndApplyTypeEx(string guid, int type, Winsoft.GOV.Test.PowerMettersServiceReference.County c) {
  599. return base.Channel.GetPowerMattersByBranchGuidAndApplyTypeEx(guid, type, c);
  600. }
  601. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetPowerMattersByBranchGuidAndApplyType(string guid, int type) {
  602. return base.Channel.GetPowerMattersByBranchGuidAndApplyType(guid, type);
  603. }
  604. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> SearchByQLNameEx(string ql_name, int itemIndex, int size, Winsoft.GOV.Test.PowerMettersServiceReference.County c) {
  605. return base.Channel.SearchByQLNameEx(ql_name, itemIndex, size, c);
  606. }
  607. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> SearchByQLName(string ql_name, int itemIndex, int size) {
  608. return base.Channel.SearchByQLName(ql_name, itemIndex, size);
  609. }
  610. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.Branch> GetOnceRunBranchsEx(Winsoft.GOV.Test.PowerMettersServiceReference.County c) {
  611. return base.Channel.GetOnceRunBranchsEx(c);
  612. }
  613. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.Branch> GetOnceRunBranchs() {
  614. return base.Channel.GetOnceRunBranchs();
  615. }
  616. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetOnceRunPowerMattersByBranchGuidEx(string guid, Winsoft.GOV.Test.PowerMettersServiceReference.County c) {
  617. return base.Channel.GetOnceRunPowerMattersByBranchGuidEx(guid, c);
  618. }
  619. public System.Collections.Generic.List<Winsoft.GOV.Test.PowerMettersServiceReference.PowerMattersBase> GetOnceRunPowerMattersByBranchGuid(string guid) {
  620. return base.Channel.GetOnceRunPowerMattersByBranchGuid(guid);
  621. }
  622. }
  623. }