FDCMessageDeviceStateChange.cs 29 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022
  1. namespace Wayne.FDCPOSLibrary
  2. {
  3. /// <remarks/>
  4. [System.SerializableAttribute()]
  5. [System.Xml.Serialization.XmlRootAttribute(ElementName = "FDCMessage", Namespace = "")]
  6. public partial class FDCMessageDeviceStateChange : FDCMessage
  7. {
  8. private FDCMessageFDCdataDeviceStateChange[] fDCdataField;
  9. [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  10. public FDCMessageFDCdataDeviceStateChange[] FDCdata
  11. {
  12. get
  13. {
  14. return this.fDCdataField;
  15. }
  16. set
  17. {
  18. this.fDCdataField = value;
  19. }
  20. }
  21. public FDCMessageDeviceStateChange()
  22. {
  23. this.MessageType = "DeviceStateChange";
  24. }
  25. }
  26. [System.SerializableAttribute()]
  27. [System.Xml.Serialization.XmlRootAttribute(ElementName = "FDCMessage", Namespace = "")]
  28. public partial class FDCMessageFPStateChange : FDCMessage
  29. {
  30. private FDCMessageFDCdataDeviceStateChange[] fDCdataField;
  31. [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  32. public FDCMessageFDCdataDeviceStateChange[] FDCdata
  33. {
  34. get
  35. {
  36. return this.fDCdataField;
  37. }
  38. set
  39. {
  40. this.fDCdataField = value;
  41. }
  42. }
  43. public FDCMessageFPStateChange()
  44. {
  45. this.MessageType = "FPStateChange";
  46. }
  47. }
  48. [System.SerializableAttribute()]
  49. [System.Xml.Serialization.XmlRootAttribute(ElementName = "FDCMessage", Namespace = "")]
  50. public partial class FDCMessageTPStateChange : FDCMessage
  51. {
  52. private FDCMessageFDCdataDeviceStateChange[] fDCdataField;
  53. [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  54. public FDCMessageFDCdataDeviceStateChange[] FDCdata
  55. {
  56. get
  57. {
  58. return this.fDCdataField;
  59. }
  60. set
  61. {
  62. this.fDCdataField = value;
  63. }
  64. }
  65. public FDCMessageTPStateChange()
  66. {
  67. this.MessageType = "TPStateChange";
  68. }
  69. }
  70. [System.Xml.Serialization.XmlRootAttribute(ElementName = "FDCMessage", Namespace = "")]
  71. public partial class FDCMessagePPStateChange : FDCMessage
  72. {
  73. private FDCMessageFDCdataDeviceStateChange[] fDCdataField;
  74. [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  75. public FDCMessageFDCdataDeviceStateChange[] FDCdata
  76. {
  77. get
  78. {
  79. return this.fDCdataField;
  80. }
  81. set
  82. {
  83. this.fDCdataField = value;
  84. }
  85. }
  86. public FDCMessagePPStateChange()
  87. {
  88. this.MessageType = "PPStateChange";
  89. }
  90. }
  91. [System.SerializableAttribute()]
  92. [System.Xml.Serialization.XmlRootAttribute(ElementName = "FDCMessage", Namespace = "")]
  93. public partial class FDCMessageVIRStateChange : FDCMessage
  94. {
  95. private FDCMessageFDCdataDeviceStateChange[] fDCdataField;
  96. [System.Xml.Serialization.XmlElementAttribute("FDCdata", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  97. public FDCMessageFDCdataDeviceStateChange[] FDCdata
  98. {
  99. get
  100. {
  101. return this.fDCdataField;
  102. }
  103. set
  104. {
  105. this.fDCdataField = value;
  106. }
  107. }
  108. public FDCMessageVIRStateChange()
  109. {
  110. this.MessageType = "VIRStateChange";
  111. }
  112. }
  113. [System.SerializableAttribute()]
  114. public partial class FDCMessageFDCdataDeviceStateChange
  115. {
  116. //private FDCMessageDeviceClassDeviceStateChange[] DeviceClassField;
  117. private string FDCTimeStampField;
  118. private FDCMessageDeviceClass[] DeviceClassField;
  119. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  120. public string FDCTimeStamp
  121. {
  122. get
  123. {
  124. return this.FDCTimeStampField;
  125. }
  126. set
  127. {
  128. this.FDCTimeStampField = value;
  129. }
  130. }
  131. [System.Xml.Serialization.XmlElementAttribute("DeviceClass", Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  132. //public FDCMessageDeviceClassDeviceStateChange[] DeviceClass
  133. public FDCMessageDeviceClass[] DeviceClass
  134. {
  135. get
  136. {
  137. return this.DeviceClassField;
  138. }
  139. set
  140. {
  141. this.DeviceClassField = value;
  142. }
  143. }
  144. }
  145. [System.SerializableAttribute()]
  146. //public partial class FDCMessageDeviceClassDeviceStateChange
  147. public partial class FDCMessageDeviceClass
  148. {
  149. private string TypeField;
  150. private string DeviceIdField;
  151. private string PumpNoField;
  152. private string LogicalStateField;
  153. private string LogicalSubStateField;
  154. private string DeviceStateField;
  155. private string DeviceSubStateField;
  156. private string LockingApplicationSenderField;
  157. private NozzleStateClass[] NozzleField; // v07 and next
  158. private LogicalTPStateClass LogicalTPStateField; // v07 and next
  159. private FDCMessageNozzleStateDeviceStateChange[] LogicalNozzleStateField; // v05
  160. private FDCMessageLogicalTankStateDeviceStateChange LogicalTankStateField; // v05
  161. private VIRStateClass[] VirField;
  162. private string ErrorIdField;
  163. private string ErrorDescriptionField;
  164. private string ErrorCodeField;
  165. [System.Xml.Serialization.XmlAttributeAttribute()]
  166. public string Type
  167. {
  168. get
  169. {
  170. return this.TypeField;
  171. }
  172. set
  173. {
  174. this.TypeField = value;
  175. }
  176. }
  177. [System.Xml.Serialization.XmlAttributeAttribute()]
  178. public string DeviceID
  179. {
  180. get
  181. {
  182. return this.DeviceIdField;
  183. }
  184. set
  185. {
  186. this.DeviceIdField = value;
  187. }
  188. }
  189. [System.Xml.Serialization.XmlAttributeAttribute()]
  190. public string PumpNo
  191. {
  192. get
  193. {
  194. return this.PumpNoField;
  195. }
  196. set
  197. {
  198. this.PumpNoField = value;
  199. }
  200. }
  201. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  202. public string LogicalState
  203. {
  204. get
  205. {
  206. return this.LogicalStateField;
  207. }
  208. set
  209. {
  210. this.LogicalStateField = value;
  211. }
  212. }
  213. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  214. public string LogicalSubState
  215. {
  216. get
  217. {
  218. return this.LogicalSubStateField;
  219. }
  220. set
  221. {
  222. this.LogicalSubStateField = value;
  223. }
  224. }
  225. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  226. public string DeviceState
  227. {
  228. get
  229. {
  230. return this.DeviceStateField;
  231. }
  232. set
  233. {
  234. this.DeviceStateField = value;
  235. }
  236. }
  237. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  238. public string DeviceSubState
  239. {
  240. get
  241. {
  242. return this.DeviceSubStateField;
  243. }
  244. set
  245. {
  246. this.DeviceSubStateField = value;
  247. }
  248. }
  249. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  250. public string LockingApplicationSender
  251. {
  252. get
  253. {
  254. return this.LockingApplicationSenderField;
  255. }
  256. set
  257. {
  258. this.LockingApplicationSenderField = value;
  259. }
  260. }
  261. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  262. public NozzleStateClass[] Nozzle
  263. {
  264. get
  265. {
  266. return this.NozzleField;
  267. }
  268. set
  269. {
  270. this.NozzleField = value;
  271. }
  272. }
  273. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  274. public LogicalTPStateClass LogicalTPState
  275. {
  276. get
  277. {
  278. return this.LogicalTPStateField;
  279. }
  280. set
  281. {
  282. this.LogicalTPStateField = value;
  283. }
  284. }
  285. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  286. public FDCMessageNozzleStateDeviceStateChange[] LogicalNozzleState
  287. {
  288. get
  289. {
  290. return this.LogicalNozzleStateField;
  291. }
  292. set
  293. {
  294. this.LogicalNozzleStateField = value;
  295. }
  296. }
  297. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  298. public FDCMessageLogicalTankStateDeviceStateChange LogicalTankState
  299. {
  300. get
  301. {
  302. return this.LogicalTankStateField;
  303. }
  304. set
  305. {
  306. this.LogicalTankStateField = value;
  307. }
  308. }
  309. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  310. public VIRStateClass[] Vir
  311. {
  312. get
  313. {
  314. return this.VirField;
  315. }
  316. set
  317. {
  318. this.VirField = value;
  319. }
  320. }
  321. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  322. public string ErrorID
  323. {
  324. get
  325. {
  326. return this.ErrorIdField;
  327. }
  328. set
  329. {
  330. this.ErrorIdField = value;
  331. }
  332. }
  333. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  334. public string ErrorDescription
  335. {
  336. get
  337. {
  338. return this.ErrorDescriptionField;
  339. }
  340. set
  341. {
  342. this.ErrorDescriptionField = value;
  343. }
  344. }
  345. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  346. public string ErrorCode
  347. {
  348. get
  349. {
  350. return this.ErrorCodeField;
  351. }
  352. set
  353. {
  354. this.ErrorCodeField = value;
  355. }
  356. }
  357. }
  358. [System.SerializableAttribute()]
  359. public partial class FDCMessageNozzleStateDeviceStateChange
  360. {
  361. private string LogicalStateField;
  362. private string LogicalNozzle1Field;
  363. private string LogicalNozzle2Field;
  364. private string LogicalNozzle3Field;
  365. private string LogicalNozzle4Field;
  366. private string LogicalNozzle5Field;
  367. private string LogicalNozzle6Field;
  368. private string LogicalNozzle7Field;
  369. private string LogicalNozzle8Field;
  370. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  371. public string LogicalState
  372. {
  373. get
  374. {
  375. return this.LogicalStateField;
  376. }
  377. set
  378. {
  379. this.LogicalStateField = value;
  380. }
  381. }
  382. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  383. public string LogicalNozzle1
  384. {
  385. get
  386. {
  387. return this.LogicalNozzle1Field;
  388. }
  389. set
  390. {
  391. this.LogicalNozzle1Field = value;
  392. }
  393. }
  394. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  395. public string LogicalNozzle2
  396. {
  397. get
  398. {
  399. return this.LogicalNozzle2Field;
  400. }
  401. set
  402. {
  403. this.LogicalNozzle2Field = value;
  404. }
  405. }
  406. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  407. public string LogicalNozzle3
  408. {
  409. get
  410. {
  411. return this.LogicalNozzle3Field;
  412. }
  413. set
  414. {
  415. this.LogicalNozzle3Field = value;
  416. }
  417. }
  418. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  419. public string LogicalNozzle4
  420. {
  421. get
  422. {
  423. return this.LogicalNozzle4Field;
  424. }
  425. set
  426. {
  427. this.LogicalNozzle4Field = value;
  428. }
  429. }
  430. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  431. public string LogicalNozzle5
  432. {
  433. get
  434. {
  435. return this.LogicalNozzle5Field;
  436. }
  437. set
  438. {
  439. this.LogicalNozzle5Field = value;
  440. }
  441. }
  442. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  443. public string LogicalNozzle6
  444. {
  445. get
  446. {
  447. return this.LogicalNozzle6Field;
  448. }
  449. set
  450. {
  451. this.LogicalNozzle6Field = value;
  452. }
  453. }
  454. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  455. public string LogicalNozzle7
  456. {
  457. get
  458. {
  459. return this.LogicalNozzle7Field;
  460. }
  461. set
  462. {
  463. this.LogicalNozzle7Field = value;
  464. }
  465. }
  466. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  467. public string LogicalNozzle8
  468. {
  469. get
  470. {
  471. return this.LogicalNozzle8Field;
  472. }
  473. set
  474. {
  475. this.LogicalNozzle8Field = value;
  476. }
  477. }
  478. }
  479. [System.SerializableAttribute()]
  480. public partial class LogicalTPStateClass
  481. {
  482. private string TankLogicalStateField;
  483. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  484. public string TankLogicalState
  485. {
  486. get
  487. {
  488. return this.TankLogicalStateField;
  489. }
  490. set
  491. {
  492. this.TankLogicalStateField = value;
  493. }
  494. }
  495. }
  496. [System.SerializableAttribute()]
  497. public partial class FDCMessageLogicalTankStateDeviceStateChange
  498. {
  499. private string LogicalStateField;
  500. //private string LogicalTank1Field;
  501. //private string LogicalTank2Field;
  502. //private string LogicalTank3Field;
  503. //private string LogicalTank4Field;
  504. //private string LogicalTank5Field;
  505. //private string LogicalTank6Field;
  506. //private string LogicalTank7Field;
  507. //private string LogicalTank8Field;
  508. //private string LogicalTank9Field;
  509. //private string LogicalTank10Field;
  510. //private string LogicalTank11Field;
  511. //private string LogicalTank12Field;
  512. //private string LogicalTank13Field;
  513. //private string LogicalTank14Field;
  514. //private string LogicalTank15Field;
  515. //private string LogicalTank16Field;
  516. //private string LogicalTank17Field;
  517. //private string LogicalTank18Field;
  518. //private string LogicalTank19Field;
  519. //private string LogicalTank20Field;
  520. //private string LogicalTank21Field;
  521. //private string LogicalTank22Field;
  522. //private string LogicalTank23Field;
  523. //private string LogicalTank24Field;
  524. //private string LogicalTank25Field;
  525. //private string LogicalTank26Field;
  526. //private string LogicalTank27Field;
  527. //private string LogicalTank28Field;
  528. //private string LogicalTank29Field;
  529. //private string LogicalTank30Field;
  530. //private string LogicalTank31Field;
  531. //private string LogicalTank32Field;
  532. [System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  533. public string LogicalState
  534. {
  535. get
  536. {
  537. return this.LogicalStateField;
  538. }
  539. set
  540. {
  541. this.LogicalStateField = value;
  542. }
  543. }
  544. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  545. //public string LogicalTank1
  546. //{
  547. // get
  548. // {
  549. // return this.LogicalTank1Field;
  550. // }
  551. // set
  552. // {
  553. // this.LogicalTank1Field = value;
  554. // }
  555. //}
  556. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  557. //public string LogicalTank2
  558. //{
  559. // get
  560. // {
  561. // return this.LogicalTank2Field;
  562. // }
  563. // set
  564. // {
  565. // this.LogicalTank2Field = value;
  566. // }
  567. //}
  568. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  569. //public string LogicalTank3
  570. //{
  571. // get
  572. // {
  573. // return this.LogicalTank3Field;
  574. // }
  575. // set
  576. // {
  577. // this.LogicalTank3Field = value;
  578. // }
  579. //}
  580. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  581. //public string LogicalTank4
  582. //{
  583. // get
  584. // {
  585. // return this.LogicalTank4Field;
  586. // }
  587. // set
  588. // {
  589. // this.LogicalTank4Field = value;
  590. // }
  591. //}
  592. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  593. //public string LogicalTank5
  594. //{
  595. // get
  596. // {
  597. // return this.LogicalTank5Field;
  598. // }
  599. // set
  600. // {
  601. // this.LogicalTank5Field = value;
  602. // }
  603. //}
  604. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  605. //public string LogicalTank6
  606. //{
  607. // get
  608. // {
  609. // return this.LogicalTank6Field;
  610. // }
  611. // set
  612. // {
  613. // this.LogicalTank6Field = value;
  614. // }
  615. //}
  616. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  617. //public string LogicalTank7
  618. //{
  619. // get
  620. // {
  621. // return this.LogicalTank7Field;
  622. // }
  623. // set
  624. // {
  625. // this.LogicalTank7Field = value;
  626. // }
  627. //}
  628. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  629. //public string LogicalTank8
  630. //{
  631. // get
  632. // {
  633. // return this.LogicalTank8Field;
  634. // }
  635. // set
  636. // {
  637. // this.LogicalTank8Field = value;
  638. // }
  639. //}
  640. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  641. //public string LogicalTank9
  642. //{
  643. // get
  644. // {
  645. // return this.LogicalTank9Field;
  646. // }
  647. // set
  648. // {
  649. // this.LogicalTank9Field = value;
  650. // }
  651. //}
  652. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  653. //public string LogicalTank10
  654. //{
  655. // get
  656. // {
  657. // return this.LogicalTank10Field;
  658. // }
  659. // set
  660. // {
  661. // this.LogicalTank10Field = value;
  662. // }
  663. //}
  664. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  665. //public string LogicalTank11
  666. //{
  667. // get
  668. // {
  669. // return this.LogicalTank11Field;
  670. // }
  671. // set
  672. // {
  673. // this.LogicalTank11Field = value;
  674. // }
  675. //}
  676. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  677. //public string LogicalTank12
  678. //{
  679. // get
  680. // {
  681. // return this.LogicalTank12Field;
  682. // }
  683. // set
  684. // {
  685. // this.LogicalTank12Field = value;
  686. // }
  687. //}
  688. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  689. //public string LogicalTank13
  690. //{
  691. // get
  692. // {
  693. // return this.LogicalTank13Field;
  694. // }
  695. // set
  696. // {
  697. // this.LogicalTank13Field = value;
  698. // }
  699. //}
  700. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  701. //public string LogicalTank14
  702. //{
  703. // get
  704. // {
  705. // return this.LogicalTank14Field;
  706. // }
  707. // set
  708. // {
  709. // this.LogicalTank14Field = value;
  710. // }
  711. //}
  712. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  713. //public string LogicalTank15
  714. //{
  715. // get
  716. // {
  717. // return this.LogicalTank15Field;
  718. // }
  719. // set
  720. // {
  721. // this.LogicalTank15Field = value;
  722. // }
  723. //}
  724. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  725. //public string LogicalTank16
  726. //{
  727. // get
  728. // {
  729. // return this.LogicalTank16Field;
  730. // }
  731. // set
  732. // {
  733. // this.LogicalTank16Field = value;
  734. // }
  735. //}
  736. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  737. //public string LogicalTank17
  738. //{
  739. // get
  740. // {
  741. // return this.LogicalTank17Field;
  742. // }
  743. // set
  744. // {
  745. // this.LogicalTank17Field = value;
  746. // }
  747. //}
  748. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  749. //public string LogicalTank18
  750. //{
  751. // get
  752. // {
  753. // return this.LogicalTank18Field;
  754. // }
  755. // set
  756. // {
  757. // this.LogicalTank18Field = value;
  758. // }
  759. //}
  760. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  761. //public string LogicalTank19
  762. //{
  763. // get
  764. // {
  765. // return this.LogicalTank19Field;
  766. // }
  767. // set
  768. // {
  769. // this.LogicalTank19Field = value;
  770. // }
  771. //}
  772. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  773. //public string LogicalTank20
  774. //{
  775. // get
  776. // {
  777. // return this.LogicalTank20Field;
  778. // }
  779. // set
  780. // {
  781. // this.LogicalTank20Field = value;
  782. // }
  783. //}
  784. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  785. //public string LogicalTank21
  786. //{
  787. // get
  788. // {
  789. // return this.LogicalTank21Field;
  790. // }
  791. // set
  792. // {
  793. // this.LogicalTank21Field = value;
  794. // }
  795. //}
  796. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  797. //public string LogicalTank22
  798. //{
  799. // get
  800. // {
  801. // return this.LogicalTank22Field;
  802. // }
  803. // set
  804. // {
  805. // this.LogicalTank22Field = value;
  806. // }
  807. //}
  808. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  809. //public string LogicalTank23
  810. //{
  811. // get
  812. // {
  813. // return this.LogicalTank23Field;
  814. // }
  815. // set
  816. // {
  817. // this.LogicalTank23Field = value;
  818. // }
  819. //}
  820. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  821. //public string LogicalTank24
  822. //{
  823. // get
  824. // {
  825. // return this.LogicalTank24Field;
  826. // }
  827. // set
  828. // {
  829. // this.LogicalTank24Field = value;
  830. // }
  831. //}
  832. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  833. //public string LogicalTank25
  834. //{
  835. // get
  836. // {
  837. // return this.LogicalTank25Field;
  838. // }
  839. // set
  840. // {
  841. // this.LogicalTank25Field = value;
  842. // }
  843. //}
  844. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  845. //public string LogicalTank26
  846. //{
  847. // get
  848. // {
  849. // return this.LogicalTank26Field;
  850. // }
  851. // set
  852. // {
  853. // this.LogicalTank26Field = value;
  854. // }
  855. //}
  856. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  857. //public string LogicalTank27
  858. //{
  859. // get
  860. // {
  861. // return this.LogicalTank27Field;
  862. // }
  863. // set
  864. // {
  865. // this.LogicalTank27Field = value;
  866. // }
  867. //}
  868. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  869. //public string LogicalTank28
  870. //{
  871. // get
  872. // {
  873. // return this.LogicalTank28Field;
  874. // }
  875. // set
  876. // {
  877. // this.LogicalTank28Field = value;
  878. // }
  879. //}
  880. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  881. //public string LogicalTank29
  882. //{
  883. // get
  884. // {
  885. // return this.LogicalTank29Field;
  886. // }
  887. // set
  888. // {
  889. // this.LogicalTank29Field = value;
  890. // }
  891. //}
  892. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  893. //public string LogicalTank30
  894. //{
  895. // get
  896. // {
  897. // return this.LogicalTank30Field;
  898. // }
  899. // set
  900. // {
  901. // this.LogicalTank30Field = value;
  902. // }
  903. //}
  904. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  905. //public string LogicalTank31
  906. //{
  907. // get
  908. // {
  909. // return this.LogicalTank31Field;
  910. // }
  911. // set
  912. // {
  913. // this.LogicalTank31Field = value;
  914. // }
  915. //}
  916. //[System.Xml.Serialization.XmlElementAttribute(Form = System.Xml.Schema.XmlSchemaForm.Unqualified)]
  917. //public string LogicalTank32
  918. //{
  919. // get
  920. // {
  921. // return this.LogicalTank32Field;
  922. // }
  923. // set
  924. // {
  925. // this.LogicalTank32Field = value;
  926. // }
  927. //}
  928. }
  929. }