Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 70.57 KB | None | 0 0
  1. namespace AlphaPOIntegration {
  2. using System;
  3. using System.Xml.Serialization;
  4. using System.Runtime.Serialization;
  5. using System.Collections;
  6. using System.Collections.Generic;
  7.  
  8. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  9. [System.SerializableAttribute()]
  10. [System.Diagnostics.DebuggerStepThroughAttribute()]
  11. [System.ComponentModel.DesignerCategoryAttribute("code")]
  12. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  13. [System.Xml.Serialization.XmlRootAttribute(Namespace="https://plastika-okon.bpmonline.com/Order", IsNullable=false)]
  14. [CollectionDataContract(Name = "Orders", ItemName = "OrdersItem", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  15. public partial class Orders: List<Order>
  16. {
  17.  
  18. }
  19.  
  20. /// <remarks/>
  21. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  22. [System.SerializableAttribute()]
  23. [System.Diagnostics.DebuggerStepThroughAttribute()]
  24. [System.ComponentModel.DesignerCategoryAttribute("code")]
  25. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  26. [System.Xml.Serialization.XmlRootAttribute(Namespace="https://plastika-okon.bpmonline.com/Order", IsNullable=false)]
  27. [DataContract(Name = "Order", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  28. public partial class Order {
  29.  
  30. private string uIDField;
  31.  
  32. private string numberField;
  33.  
  34. private System.DateTime dateField;
  35.  
  36. private System.DateTime paymentDateField;
  37.  
  38. private System.DateTime shipingDateField;
  39.  
  40. private string organizationField;
  41.  
  42. private OrderClient clientField;
  43.  
  44. private OrderContract contractField;
  45.  
  46. private OrderResponsible responsibleField;
  47.  
  48. private OrderSubdivision subdivisionField;
  49.  
  50. private OrderStock stockField;
  51.  
  52. private bool takeVATField;
  53.  
  54. private OrderClientContact clientContactField;
  55.  
  56. private OrderShipingAddress shipingAddressField;
  57.  
  58. private System.DateTime readyDateField;
  59.  
  60. private OrderOrderType orderTypeField;
  61.  
  62. private float totalAmountATField;
  63.  
  64. private OrderResponsibleManager responsibleManagerField;
  65.  
  66. private OrderSeller sellerField;
  67.  
  68. private string commentATField;
  69.  
  70. private string laminationCommentField;
  71.  
  72. private OrderDeliveryType deliveryTypeField;
  73.  
  74. private string departNumberField;
  75.  
  76. private string numberATField;
  77.  
  78. private string productCountField;
  79.  
  80. private bool isShippedField;
  81.  
  82. private OrderStatus statusField;
  83.  
  84. private bool isPaidField;
  85.  
  86. private OrderProductsCollection productsField;
  87.  
  88. private OrderServicesCollection servicesField;
  89.  
  90. private OrderDataATCollection dataATField;
  91.  
  92. /// <remarks/>
  93. [System.Xml.Serialization.XmlElementAttribute(DataType="ID")]
  94. [DataMember(Name = "UID", Order = 0)]
  95. public string UID {
  96. get {
  97. return this.uIDField;
  98. }
  99. set {
  100. this.uIDField = value;
  101. }
  102. }
  103.  
  104. /// <remarks/>
  105.  
  106. [DataMember(Name = "Number", Order = 1)]
  107. public string Number {
  108. get {
  109. return this.numberField;
  110. }
  111. set {
  112. this.numberField = value;
  113. }
  114. }
  115.  
  116. /// <remarks/>
  117.  
  118. [DataMember(Name = "Date", Order = 2)]
  119. public System.DateTime Date {
  120. get {
  121. return this.dateField;
  122. }
  123. set {
  124. this.dateField = value;
  125. }
  126. }
  127.  
  128. /// <remarks/>
  129. [DataMember(Name = "PaymentDate", Order = 3)]
  130. public System.DateTime PaymentDate {
  131. get {
  132. return this.paymentDateField;
  133. }
  134. set {
  135. this.paymentDateField = value;
  136. }
  137. }
  138.  
  139. /// <remarks/>
  140. [DataMember(Name = "ShipingDate", Order = 4)]
  141.  
  142. public System.DateTime ShipingDate {
  143. get {
  144. return this.shipingDateField;
  145. }
  146. set {
  147. this.shipingDateField = value;
  148. }
  149. }
  150.  
  151. /// <remarks/>
  152. [DataMember(Name = "Organization", Order = 5)]
  153. public string Organization {
  154. get {
  155. return this.organizationField;
  156. }
  157. set {
  158. this.organizationField = value;
  159. }
  160. }
  161.  
  162. /// <remarks/>
  163. [DataMember(Name = "Client", Order = 6)]
  164.  
  165. public OrderClient Client {
  166. get {
  167. return this.clientField;
  168. }
  169. set {
  170. this.clientField = value;
  171. }
  172. }
  173.  
  174. /// <remarks/>
  175. [DataMember(Name = "Contract", Order = 7)]
  176. public OrderContract Contract {
  177. get {
  178. return this.contractField;
  179. }
  180. set {
  181. this.contractField = value;
  182. }
  183. }
  184.  
  185. /// <remarks/>
  186. [DataMember(Name = "Responsible", Order = 8)]
  187. public OrderResponsible Responsible {
  188. get {
  189. return this.responsibleField;
  190. }
  191. set {
  192. this.responsibleField = value;
  193. }
  194. }
  195.  
  196. /// <remarks/>
  197. [DataMember(Name = "Subdivision", Order = 9)]
  198. public OrderSubdivision Subdivision {
  199. get {
  200. return this.subdivisionField;
  201. }
  202. set {
  203. this.subdivisionField = value;
  204. }
  205. }
  206.  
  207. /// <remarks/>
  208. [DataMember(Name = "Stock", Order = 10)]
  209. public OrderStock Stock {
  210. get {
  211. return this.stockField;
  212. }
  213. set {
  214. this.stockField = value;
  215. }
  216. }
  217.  
  218. /// <remarks/>
  219. [DataMember(Name = "TakeVAT", Order = 11)]
  220. [XmlElement(Order = 12)]
  221. public bool TakeVAT {
  222. get {
  223. return this.takeVATField;
  224. }
  225. set {
  226. this.takeVATField = value;
  227. }
  228. }
  229.  
  230. /// <remarks/>
  231. [DataMember(Name = "ClientContact", Order = 12)]
  232. public OrderClientContact ClientContact {
  233. get {
  234. return this.clientContactField;
  235. }
  236. set {
  237. this.clientContactField = value;
  238. }
  239. }
  240.  
  241. /// <remarks/>
  242. [DataMember(Name = "ShipingAddress", Order = 13)]
  243. public OrderShipingAddress ShipingAddress {
  244. get {
  245. return this.shipingAddressField;
  246. }
  247. set {
  248. this.shipingAddressField = value;
  249. }
  250. }
  251.  
  252. /// <remarks/>
  253. [DataMember(Name = "ReadyDate", Order = 14)]
  254. public System.DateTime ReadyDate {
  255. get {
  256. return this.readyDateField;
  257. }
  258. set {
  259. this.readyDateField = value;
  260. }
  261. }
  262.  
  263. /// <remarks/>
  264. [DataMember(Name = "OrderType", Order = 15)]
  265. public OrderOrderType OrderType {
  266. get {
  267. return this.orderTypeField;
  268. }
  269. set {
  270. this.orderTypeField = value;
  271. }
  272. }
  273.  
  274. /// <remarks/>
  275. [DataMember(Name = "TotalAmountAT", Order = 16)]
  276. public float TotalAmountAT {
  277. get {
  278. return this.totalAmountATField;
  279. }
  280. set {
  281. this.totalAmountATField = value;
  282. }
  283. }
  284.  
  285. /// <remarks/>
  286. [DataMember(Name = "ResponsibleManager", Order = 17)]
  287. public OrderResponsibleManager ResponsibleManager {
  288. get {
  289. return this.responsibleManagerField;
  290. }
  291. set {
  292. this.responsibleManagerField = value;
  293. }
  294. }
  295.  
  296. /// <remarks/>
  297. [DataMember(Name = "Seller", Order = 18)]
  298. public OrderSeller Seller {
  299. get {
  300. return this.sellerField;
  301. }
  302. set {
  303. this.sellerField = value;
  304. }
  305. }
  306.  
  307. /// <remarks/>
  308. [DataMember(Name = "CommentAT", Order = 19)]
  309. public string CommentAT {
  310. get {
  311. return this.commentATField;
  312. }
  313. set {
  314. this.commentATField = value;
  315. }
  316. }
  317.  
  318. /// <remarks/>
  319. [DataMember(Name = "LaminationComment", Order = 20)]
  320. public string LaminationComment {
  321. get {
  322. return this.laminationCommentField;
  323. }
  324. set {
  325. this.laminationCommentField = value;
  326. }
  327. }
  328.  
  329. /// <remarks/>
  330. [DataMember(Name = "DeliveryType", Order = 21)]
  331. public OrderDeliveryType DeliveryType {
  332. get {
  333. return this.deliveryTypeField;
  334. }
  335. set {
  336. this.deliveryTypeField = value;
  337. }
  338. }
  339.  
  340. /// <remarks/>
  341. [DataMember(Name = "DepartNumber", Order = 22)]
  342. public string DepartNumber {
  343. get {
  344. return this.departNumberField;
  345. }
  346. set {
  347. this.departNumberField = value;
  348. }
  349. }
  350.  
  351. /// <remarks/>
  352. [DataMember(Name = "NumberAT", Order = 23)]
  353. public string NumberAT {
  354. get {
  355. return this.numberATField;
  356. }
  357. set {
  358. this.numberATField = value;
  359. }
  360. }
  361.  
  362. /// <remarks/>
  363. [DataMember(Name = "ProductCount", Order = 24)]
  364. [System.Xml.Serialization.XmlElementAttribute(DataType="integer")]
  365. public string ProductCount {
  366. get {
  367. return this.productCountField;
  368. }
  369. set {
  370. this.productCountField = value;
  371. }
  372. }
  373.  
  374. /// <remarks/>
  375. [DataMember(Name = "IsShipped", Order = 25)]
  376. public bool IsShipped {
  377. get {
  378. return this.isShippedField;
  379. }
  380. set {
  381. this.isShippedField = value;
  382. }
  383. }
  384.  
  385. /// <remarks/>
  386. [DataMember(Name = "Status", Order = 26)]
  387. public OrderStatus Status {
  388. get {
  389. return this.statusField;
  390. }
  391. set {
  392. this.statusField = value;
  393. }
  394. }
  395.  
  396. /// <remarks/>
  397. [DataMember(Name = "IsPaid", Order = 27)]
  398. public bool IsPaid {
  399. get {
  400. return this.isPaidField;
  401. }
  402. set {
  403. this.isPaidField = value;
  404. }
  405. }
  406.  
  407. /// <remarks/>
  408. [DataMember(Name = "Products", Order = 28)]
  409. public OrderProductsCollection Products {
  410. get {
  411. return this.productsField;
  412. }
  413. set {
  414. this.productsField = value;
  415. }
  416. }
  417.  
  418. /// <remarks/>
  419. [DataMember(Name = "Services", Order = 29)]
  420. public OrderServicesCollection Services {
  421. get {
  422. return this.servicesField;
  423. }
  424. set {
  425. this.servicesField = value;
  426. }
  427. }
  428.  
  429. /// <remarks/>
  430. [DataMember(Name = "DataAT", Order = 30)]
  431. public OrderDataATCollection DataAT {
  432. get {
  433. return this.dataATField;
  434. }
  435. set {
  436. this.dataATField = value;
  437. }
  438. }
  439. }
  440.  
  441. /// <remarks/>
  442. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  443. [System.SerializableAttribute()]
  444. [System.Diagnostics.DebuggerStepThroughAttribute()]
  445. [System.ComponentModel.DesignerCategoryAttribute("code")]
  446. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  447. [DataContract(Name = "OrderClient", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  448. public partial class OrderClient {
  449.  
  450. private string iNNField;
  451.  
  452. private string kPPField;
  453.  
  454. private string codeField;
  455.  
  456. /// <remarks/>
  457. [DataMember(Name = "INN", Order = 0)]
  458. public string INN {
  459. get {
  460. return this.iNNField;
  461. }
  462. set {
  463. this.iNNField = value;
  464. }
  465. }
  466.  
  467. /// <remarks/>
  468. [DataMember(Name = "KPP", Order = 1)]
  469. public string KPP {
  470. get {
  471. return this.kPPField;
  472. }
  473. set {
  474. this.kPPField = value;
  475. }
  476. }
  477.  
  478. /// <remarks/>
  479. [DataMember(Name = "Code", Order = 2)]
  480. public string Code {
  481. get {
  482. return this.codeField;
  483. }
  484. set {
  485. this.codeField = value;
  486. }
  487. }
  488. }
  489.  
  490. /// <remarks/>
  491. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  492. [System.SerializableAttribute()]
  493. [System.Diagnostics.DebuggerStepThroughAttribute()]
  494. [System.ComponentModel.DesignerCategoryAttribute("code")]
  495. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  496. [DataContract(Name = "OrderContract", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  497. public partial class OrderContract {
  498. private string numberField;
  499. private OrderContractClient clientField;
  500. private string organizationField;
  501. private string codeField;
  502. private System.DateTime dueDateField;
  503.  
  504. /// <remarks/>
  505. [DataMember(Name = "Number", Order = 0)]
  506. public string Number {
  507. get {
  508. return this.numberField;
  509. }
  510. set {
  511. this.numberField = value;
  512. }
  513. }
  514.  
  515. /// <remarks/>
  516. [DataMember(Name = "Client", Order = 1)]
  517. public OrderContractClient Client {
  518. get {
  519. return this.clientField;
  520. }
  521. set {
  522. this.clientField = value;
  523. }
  524. }
  525.  
  526. /// <remarks/>
  527. [DataMember(Name = "Organization", Order = 2)]
  528. public string Organization {
  529. get {
  530. return this.organizationField;
  531. }
  532. set {
  533. this.organizationField = value;
  534. }
  535. }
  536.  
  537. /// <remarks/>
  538. [DataMember(Name = "Code", Order = 3)]
  539. public string Code {
  540. get {
  541. return this.codeField;
  542. }
  543. set {
  544. this.codeField = value;
  545. }
  546. }
  547.  
  548. /// <remarks/>
  549. [DataMember(Name = "DueDate", Order = 4)]
  550. public System.DateTime DueDate {
  551. get {
  552. return this.dueDateField;
  553. }
  554. set {
  555. this.dueDateField = value;
  556. }
  557. }
  558. }
  559.  
  560. /// <remarks/>
  561. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  562. [System.SerializableAttribute()]
  563. [System.Diagnostics.DebuggerStepThroughAttribute()]
  564. [System.ComponentModel.DesignerCategoryAttribute("code")]
  565. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  566. [DataContract(Name = "OrderContractClient", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  567. public partial class OrderContractClient {
  568. private string codeField;
  569.  
  570. /// <remarks/>
  571. [DataMember(Name = "Code", Order = 0)]
  572. public string Code {
  573. get {
  574. return this.codeField;
  575. }
  576. set {
  577. this.codeField = value;
  578. }
  579. }
  580. }
  581.  
  582. /// <remarks/>
  583. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  584. [System.SerializableAttribute()]
  585. [System.Diagnostics.DebuggerStepThroughAttribute()]
  586. [System.ComponentModel.DesignerCategoryAttribute("code")]
  587. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  588. [DataContract(Name = "OrderResponsible", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  589. public partial class OrderResponsible {
  590. private string codeField;
  591.  
  592. /// <remarks/>
  593. [DataMember(Name = "Code", Order = 0)]
  594. public string Code {
  595. get {
  596. return this.codeField;
  597. }
  598. set {
  599. this.codeField = value;
  600. }
  601. }
  602. }
  603.  
  604. /// <remarks/>
  605. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  606. [System.SerializableAttribute()]
  607. [System.Diagnostics.DebuggerStepThroughAttribute()]
  608. [System.ComponentModel.DesignerCategoryAttribute("code")]
  609. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  610. [DataContract(Name = "OrderSubdivision", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  611. public partial class OrderSubdivision {
  612. private string codeField;
  613.  
  614. /// <remarks/>
  615. [DataMember(Name = "Code", Order = 0)]
  616. public string Code {
  617. get {
  618. return this.codeField;
  619. }
  620. set {
  621. this.codeField = value;
  622. }
  623. }
  624. }
  625.  
  626. /// <remarks/>
  627. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  628. [System.SerializableAttribute()]
  629. [System.Diagnostics.DebuggerStepThroughAttribute()]
  630. [System.ComponentModel.DesignerCategoryAttribute("code")]
  631. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  632. [DataContract(Name = "OrderStock", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  633. public partial class OrderStock {
  634. private string codeField;
  635. private string nameField;
  636.  
  637. /// <remarks/>
  638. [DataMember(Name = "Code", Order = 0)]
  639. public string Code {
  640. get {
  641. return this.codeField;
  642. }
  643. set {
  644. this.codeField = value;
  645. }
  646. }
  647.  
  648. /// <remarks/>
  649. [DataMember(Name = "Name", Order = 1)]
  650. public string Name {
  651. get {
  652. return this.nameField;
  653. }
  654. set {
  655. this.nameField = value;
  656. }
  657. }
  658. }
  659.  
  660. /// <remarks/>
  661. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  662. [System.SerializableAttribute()]
  663. [System.Diagnostics.DebuggerStepThroughAttribute()]
  664. [System.ComponentModel.DesignerCategoryAttribute("code")]
  665. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  666. [DataContract(Name = "OrderClientContact", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  667. public partial class OrderClientContact {
  668. private string codeField;
  669.  
  670. /// <remarks/>
  671. [DataMember(Name = "Code", Order = 0)]
  672. public string Code {
  673. get {
  674. return this.codeField;
  675. }
  676. set {
  677. this.codeField = value;
  678. }
  679. }
  680. }
  681.  
  682. /// <remarks/>
  683. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  684. [System.SerializableAttribute()]
  685. [System.Diagnostics.DebuggerStepThroughAttribute()]
  686. [System.ComponentModel.DesignerCategoryAttribute("code")]
  687. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  688. [DataContract(Name = "OrderShipingAddress", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  689. public partial class OrderShipingAddress {
  690. private string codeField;
  691. private string clientField;
  692. private string countyField;
  693. private string regionField;
  694. private string cityField;
  695. private string addressField;
  696.  
  697. /// <remarks/>
  698. [DataMember(Name = "Code", Order = 0)]
  699. public string Code {
  700. get {
  701. return this.codeField;
  702. }
  703. set {
  704. this.codeField = value;
  705. }
  706. }
  707.  
  708. /// <remarks/>
  709. [DataMember(Name = "Client", Order = 1)]
  710. public string Client {
  711. get {
  712. return this.clientField;
  713. }
  714. set {
  715. this.clientField = value;
  716. }
  717. }
  718.  
  719. /// <remarks/>
  720. [DataMember(Name = "County", Order = 2)]
  721. public string County {
  722. get {
  723. return this.countyField;
  724. }
  725. set {
  726. this.countyField = value;
  727. }
  728. }
  729.  
  730. /// <remarks/>
  731. [DataMember(Name = "Region", Order = 3)]
  732. public string Region {
  733. get {
  734. return this.regionField;
  735. }
  736. set {
  737. this.regionField = value;
  738. }
  739. }
  740.  
  741. /// <remarks/>
  742. [DataMember(Name = "City", Order = 4)]
  743. public string City {
  744. get {
  745. return this.cityField;
  746. }
  747. set {
  748. this.cityField = value;
  749. }
  750. }
  751.  
  752. /// <remarks/>
  753. [DataMember(Name = "Address", Order = 5)]
  754. public string Address {
  755. get {
  756. return this.addressField;
  757. }
  758. set {
  759. this.addressField = value;
  760. }
  761. }
  762. }
  763.  
  764. /// <remarks/>
  765. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  766. [System.SerializableAttribute()]
  767. [System.Diagnostics.DebuggerStepThroughAttribute()]
  768. [System.ComponentModel.DesignerCategoryAttribute("code")]
  769. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  770. [DataContract(Name = "OrderOrderType", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  771. public partial class OrderOrderType {
  772. private string nameField;
  773. private string codeField;
  774.  
  775. /// <remarks/>
  776. [DataMember(Name = "Name", Order = 0)]
  777. public string Name {
  778. get {
  779. return this.nameField;
  780. }
  781. set {
  782. this.nameField = value;
  783. }
  784. }
  785.  
  786. /// <remarks/>
  787. [DataMember(Name = "Code", Order = 1)]
  788. public string Code {
  789. get {
  790. return this.codeField;
  791. }
  792. set {
  793. this.codeField = value;
  794. }
  795. }
  796. }
  797.  
  798. /// <remarks/>
  799. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  800. [System.SerializableAttribute()]
  801. [System.Diagnostics.DebuggerStepThroughAttribute()]
  802. [System.ComponentModel.DesignerCategoryAttribute("code")]
  803. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  804. [DataContract(Name = "OrderResponsibleManager", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  805. public partial class OrderResponsibleManager {
  806. private string codeField;
  807.  
  808. /// <remarks/>
  809. [DataMember(Name = "Code", Order = 0)]
  810. public string Code {
  811. get {
  812. return this.codeField;
  813. }
  814. set {
  815. this.codeField = value;
  816. }
  817. }
  818. }
  819.  
  820. /// <remarks/>
  821. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  822. [System.SerializableAttribute()]
  823. [System.Diagnostics.DebuggerStepThroughAttribute()]
  824. [System.ComponentModel.DesignerCategoryAttribute("code")]
  825. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  826. [DataContract(Name = "OrderSeller", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  827. public partial class OrderSeller {
  828. private string codeField;
  829.  
  830. /// <remarks/>
  831. [DataMember(Name = "Code", Order = 0)]
  832. public string Code {
  833. get {
  834. return this.codeField;
  835. }
  836. set {
  837. this.codeField = value;
  838. }
  839. }
  840. }
  841.  
  842. /// <remarks/>
  843. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  844. [System.SerializableAttribute()]
  845. [System.Diagnostics.DebuggerStepThroughAttribute()]
  846. [System.ComponentModel.DesignerCategoryAttribute("code")]
  847. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  848. [DataContract(Name = "OrderDeliveryType", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  849. public partial class OrderDeliveryType {
  850. private string nameField;
  851. private string codeField;
  852.  
  853. /// <remarks/>
  854. [DataMember(Name = "Name", Order = 0)]
  855. public string Name {
  856. get {
  857. return this.nameField;
  858. }
  859. set {
  860. this.nameField = value;
  861. }
  862. }
  863.  
  864. /// <remarks/>
  865. [DataMember(Name = "Code", Order = 1)]
  866. public string Code {
  867. get {
  868. return this.codeField;
  869. }
  870. set {
  871. this.codeField = value;
  872. }
  873. }
  874. }
  875.  
  876. /// <remarks/>
  877. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  878. [System.SerializableAttribute()]
  879. [System.Diagnostics.DebuggerStepThroughAttribute()]
  880. [System.ComponentModel.DesignerCategoryAttribute("code")]
  881. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  882. [DataContract(Name = "OrderStatus", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  883. public partial class OrderStatus {
  884. private string codeField;
  885. private string nameField;
  886.  
  887. /// <remarks/>
  888. [DataMember(Name = "Code", Order = 0)]
  889. public string Code {
  890. get {
  891. return this.codeField;
  892. }
  893. set {
  894. this.codeField = value;
  895. }
  896. }
  897.  
  898. /// <remarks/>
  899. [DataMember(Name = "Name", Order = 1)]
  900. public string Name {
  901. get {
  902. return this.nameField;
  903. }
  904. set {
  905. this.nameField = value;
  906. }
  907. }
  908. }
  909.  
  910. /// <remarks/>
  911. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  912. [System.SerializableAttribute()]
  913. [System.Diagnostics.DebuggerStepThroughAttribute()]
  914. [System.ComponentModel.DesignerCategoryAttribute("code")]
  915. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  916. // [System.Xml.Serialization.XmlRootAttribute(Namespace="https://plastika-okon.bpmonline.com/Order", IsNullable=false)]
  917. [DataContract(Name = "OrderProducts", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  918. public partial class OrderProducts {
  919. private OrderProductsProduct productField;
  920. private OrderProductsProductUnit productUnitField;
  921. private float discountMarkupPercentField;
  922. private OrderProductsTax taxField;
  923. private float priceField;
  924. private float countField;
  925. private float coefficientField;
  926. private float taxAmountField;
  927. private float sumField;
  928. private string rowKeyField;
  929. private OrderProductsSpecification specificationField;
  930. private OrderProductsInnerColor innerColorField;
  931. private OrderProductsOuterColor outerColorField;
  932. private string iDOrderItemField;
  933. private string commentATField;
  934. private bool isShippedField;
  935. private float areaField;
  936. private string fillingField;
  937. private string fittingsField;
  938. private string markingSillField;
  939. private string rubberField;
  940.  
  941. /// <remarks/>
  942. [DataMember(Name = "Product", Order = 0)]
  943. public OrderProductsProduct Product {
  944. get {
  945. return this.productField;
  946. }
  947. set {
  948. this.productField = value;
  949. }
  950. }
  951.  
  952. /// <remarks/>
  953. [DataMember(Name = "ProductUnit", Order = 1)]
  954. public OrderProductsProductUnit ProductUnit {
  955. get {
  956. return this.productUnitField;
  957. }
  958. set {
  959. this.productUnitField = value;
  960. }
  961. }
  962.  
  963. /// <remarks/>
  964. [DataMember(Name = "DiscountMarkupPercent", Order = 2)]
  965. public float DiscountMarkupPercent {
  966. get {
  967. return this.discountMarkupPercentField;
  968. }
  969. set {
  970. this.discountMarkupPercentField = value;
  971. }
  972. }
  973.  
  974. /// <remarks/>
  975. [DataMember(Name = "Tax", Order = 3)]
  976. public OrderProductsTax Tax {
  977. get {
  978. return this.taxField;
  979. }
  980. set {
  981. this.taxField = value;
  982. }
  983. }
  984.  
  985. /// <remarks/>
  986. [DataMember(Name = "Price", Order = 4)]
  987. public float Price {
  988. get {
  989. return this.priceField;
  990. }
  991. set {
  992. this.priceField = value;
  993. }
  994. }
  995.  
  996. /// <remarks/>
  997. [DataMember(Name = "Count", Order = 5)]
  998. public float Count {
  999. get {
  1000. return this.countField;
  1001. }
  1002. set {
  1003. this.countField = value;
  1004. }
  1005. }
  1006.  
  1007. /// <remarks/>
  1008. [DataMember(Name = "Coefficient", Order = 6)]
  1009. public float Coefficient {
  1010. get {
  1011. return this.coefficientField;
  1012. }
  1013. set {
  1014. this.coefficientField = value;
  1015. }
  1016. }
  1017.  
  1018. /// <remarks/>
  1019. [DataMember(Name = "TaxAmount", Order = 7)]
  1020. public float TaxAmount {
  1021. get {
  1022. return this.taxAmountField;
  1023. }
  1024. set {
  1025. this.taxAmountField = value;
  1026. }
  1027. }
  1028.  
  1029. /// <remarks/>
  1030. [DataMember(Name = "Sum", Order = 8)]
  1031. public float Sum {
  1032. get {
  1033. return this.sumField;
  1034. }
  1035. set {
  1036. this.sumField = value;
  1037. }
  1038. }
  1039.  
  1040. /// <remarks/>
  1041. [DataMember(Name = "RowKey", Order = 9)]
  1042. public string RowKey {
  1043. get {
  1044. return this.rowKeyField;
  1045. }
  1046. set {
  1047. this.rowKeyField = value;
  1048. }
  1049. }
  1050.  
  1051. /// <remarks/>
  1052. [DataMember(Name = "Specification", Order = 10)]
  1053. public OrderProductsSpecification Specification {
  1054. get {
  1055. return this.specificationField;
  1056. }
  1057. set {
  1058. this.specificationField = value;
  1059. }
  1060. }
  1061.  
  1062. /// <remarks/>
  1063. [DataMember(Name = "InnerColor", Order = 11)]
  1064. public OrderProductsInnerColor InnerColor {
  1065. get {
  1066. return this.innerColorField;
  1067. }
  1068. set {
  1069. this.innerColorField = value;
  1070. }
  1071. }
  1072.  
  1073. /// <remarks/>
  1074. [DataMember(Name = "OuterColor", Order = 12)]
  1075. public OrderProductsOuterColor OuterColor {
  1076. get {
  1077. return this.outerColorField;
  1078. }
  1079. set {
  1080. this.outerColorField = value;
  1081. }
  1082. }
  1083.  
  1084. /// <remarks/>
  1085. [DataMember(Name = "IDOrderItem", Order = 13)]
  1086. public string IDOrderItem {
  1087. get {
  1088. return this.iDOrderItemField;
  1089. }
  1090. set {
  1091. this.iDOrderItemField = value;
  1092. }
  1093. }
  1094.  
  1095. /// <remarks/>
  1096. [DataMember(Name = "CommentAT", Order = 14)]
  1097. public string CommentAT {
  1098. get {
  1099. return this.commentATField;
  1100. }
  1101. set {
  1102. this.commentATField = value;
  1103. }
  1104. }
  1105.  
  1106. /// <remarks/>
  1107. [DataMember(Name = "IsShipped", Order = 15)]
  1108. public bool IsShipped {
  1109. get {
  1110. return this.isShippedField;
  1111. }
  1112. set {
  1113. this.isShippedField = value;
  1114. }
  1115. }
  1116.  
  1117. /// <remarks/>
  1118. [DataMember(Name = "Area", Order = 16)]
  1119. public float Area {
  1120. get {
  1121. return this.areaField;
  1122. }
  1123. set {
  1124. this.areaField = value;
  1125. }
  1126. }
  1127.  
  1128. /// <remarks/>
  1129. [DataMember(Name = "Filling", Order = 17)]
  1130. public string Filling {
  1131. get {
  1132. return this.fillingField;
  1133. }
  1134. set {
  1135. this.fillingField = value;
  1136. }
  1137. }
  1138.  
  1139. /// <remarks/>
  1140. [DataMember(Name = "Fittings", Order = 18)]
  1141. public string Fittings {
  1142. get {
  1143. return this.fittingsField;
  1144. }
  1145. set {
  1146. this.fittingsField = value;
  1147. }
  1148. }
  1149.  
  1150. /// <remarks/>
  1151. [DataMember(Name = "MarkingSill", Order = 19)]
  1152. public string MarkingSill {
  1153. get {
  1154. return this.markingSillField;
  1155. }
  1156. set {
  1157. this.markingSillField = value;
  1158. }
  1159. }
  1160.  
  1161. /// <remarks/>
  1162. [DataMember(Name = "Rubber", Order = 20)]
  1163. public string Rubber {
  1164. get {
  1165. return this.rubberField;
  1166. }
  1167. set {
  1168. this.rubberField = value;
  1169. }
  1170. }
  1171. }
  1172.  
  1173. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1174. [System.SerializableAttribute()]
  1175. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1176. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1177. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1178. [CollectionDataContract(Name = "OrderProductsCollection", ItemName = "OrderProductsCollectionItem", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1179. public partial class OrderProductsCollection: List<OrderProducts>
  1180. {
  1181.  
  1182. }
  1183.  
  1184. /// <remarks/>
  1185. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1186. [System.SerializableAttribute()]
  1187. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1188. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1189. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1190. [DataContract(Name = "OrderProductsProduct", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1191. public partial class OrderProductsProduct {
  1192. private string codeField;
  1193. private string nameField;
  1194. private string fullNameField;
  1195. private string articulField;
  1196. private string commentField;
  1197. private OrderProductsProductTax taxField;
  1198. private bool isServiceField;
  1199. private OrderProductsProductProductType productTypeField;
  1200. private string iDWinField;
  1201. private bool laminationField;
  1202. private OrderProductsProductInnerColor innerColorField;
  1203. private OrderProductsProductOuterColor outerColorField;
  1204. private OrderProductsProductProfileType profileTypeField;
  1205. private string analogsField;
  1206. private bool isFilmField;
  1207. private OrderProductsProductSupplyMaterialType supplyMaterialTypeField;
  1208. private bool isAdditionalEquipmentField;
  1209.  
  1210. /// <remarks/>
  1211. [DataMember(Name = "Code", Order = 0)]
  1212. public string Code {
  1213. get {
  1214. return this.codeField;
  1215. }
  1216. set {
  1217. this.codeField = value;
  1218. }
  1219. }
  1220.  
  1221. /// <remarks/>
  1222. [DataMember(Name = "Name", Order = 1)]
  1223. public string Name {
  1224. get {
  1225. return this.nameField;
  1226. }
  1227. set {
  1228. this.nameField = value;
  1229. }
  1230. }
  1231.  
  1232. /// <remarks/>
  1233. [DataMember(Name = "FullName", Order = 2)]
  1234. public string FullName {
  1235. get {
  1236. return this.fullNameField;
  1237. }
  1238. set {
  1239. this.fullNameField = value;
  1240. }
  1241. }
  1242.  
  1243. /// <remarks/>
  1244. [DataMember(Name = "Articul", Order = 3)]
  1245. public string Articul {
  1246. get {
  1247. return this.articulField;
  1248. }
  1249. set {
  1250. this.articulField = value;
  1251. }
  1252. }
  1253.  
  1254. /// <remarks/>
  1255. [DataMember(Name = "Comment", Order = 4)]
  1256. public string Comment {
  1257. get {
  1258. return this.commentField;
  1259. }
  1260. set {
  1261. this.commentField = value;
  1262. }
  1263. }
  1264.  
  1265. /// <remarks/>
  1266. [DataMember(Name = "Tax", Order = 5)]
  1267. public OrderProductsProductTax Tax {
  1268. get {
  1269. return this.taxField;
  1270. }
  1271. set {
  1272. this.taxField = value;
  1273. }
  1274. }
  1275.  
  1276. /// <remarks/>
  1277. [DataMember(Name = "IsService", Order = 6)]
  1278. public bool IsService {
  1279. get {
  1280. return this.isServiceField;
  1281. }
  1282. set {
  1283. this.isServiceField = value;
  1284. }
  1285. }
  1286.  
  1287. /// <remarks/>
  1288. [DataMember(Name = "ProductType", Order = 7)]
  1289. public OrderProductsProductProductType ProductType {
  1290. get {
  1291. return this.productTypeField;
  1292. }
  1293. set {
  1294. this.productTypeField = value;
  1295. }
  1296. }
  1297.  
  1298. /// <remarks/>
  1299. [DataMember(Name = "IDWin", Order = 8)]
  1300. public string IDWin {
  1301. get {
  1302. return this.iDWinField;
  1303. }
  1304. set {
  1305. this.iDWinField = value;
  1306. }
  1307. }
  1308.  
  1309. /// <remarks/>
  1310. [DataMember(Name = "Lamination", Order = 9)]
  1311. public bool Lamination {
  1312. get {
  1313. return this.laminationField;
  1314. }
  1315. set {
  1316. this.laminationField = value;
  1317. }
  1318. }
  1319.  
  1320. /// <remarks/>
  1321. [DataMember(Name = "InnerColor", Order = 10)]
  1322. public OrderProductsProductInnerColor InnerColor {
  1323. get {
  1324. return this.innerColorField;
  1325. }
  1326. set {
  1327. this.innerColorField = value;
  1328. }
  1329. }
  1330.  
  1331. /// <remarks/>
  1332. [DataMember(Name = "OuterColor", Order = 11)]
  1333. public OrderProductsProductOuterColor OuterColor {
  1334. get {
  1335. return this.outerColorField;
  1336. }
  1337. set {
  1338. this.outerColorField = value;
  1339. }
  1340. }
  1341.  
  1342. /// <remarks/>
  1343. [DataMember(Name = "ProfileType", Order = 12)]
  1344. public OrderProductsProductProfileType ProfileType {
  1345. get {
  1346. return this.profileTypeField;
  1347. }
  1348. set {
  1349. this.profileTypeField = value;
  1350. }
  1351. }
  1352.  
  1353. /// <remarks/>
  1354. [DataMember(Name = "Analogs", Order = 13)]
  1355. public string Analogs {
  1356. get {
  1357. return this.analogsField;
  1358. }
  1359. set {
  1360. this.analogsField = value;
  1361. }
  1362. }
  1363.  
  1364. /// <remarks/>
  1365. [DataMember(Name = "IsFilm", Order = 14)]
  1366. public bool IsFilm {
  1367. get {
  1368. return this.isFilmField;
  1369. }
  1370. set {
  1371. this.isFilmField = value;
  1372. }
  1373. }
  1374.  
  1375. /// <remarks/>
  1376. [DataMember(Name = "SupplyMaterialType", Order = 15)]
  1377. public OrderProductsProductSupplyMaterialType SupplyMaterialType {
  1378. get {
  1379. return this.supplyMaterialTypeField;
  1380. }
  1381. set {
  1382. this.supplyMaterialTypeField = value;
  1383. }
  1384. }
  1385.  
  1386. /// <remarks/>
  1387. [DataMember(Name = "IsAdditionalEquipment", Order = 16)]
  1388. public bool IsAdditionalEquipment {
  1389. get {
  1390. return this.isAdditionalEquipmentField;
  1391. }
  1392. set {
  1393. this.isAdditionalEquipmentField = value;
  1394. }
  1395. }
  1396. }
  1397.  
  1398. /// <remarks/>
  1399. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1400. [System.SerializableAttribute()]
  1401. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1402. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1403. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1404. [DataContract(Name = "OrderProductsProductTax", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1405. public partial class OrderProductsProductTax {
  1406. private string codeField;
  1407.  
  1408. /// <remarks/>
  1409. [DataMember(Name = "Code", Order = 0)]
  1410. public string Code {
  1411. get {
  1412. return this.codeField;
  1413. }
  1414. set {
  1415. this.codeField = value;
  1416. }
  1417. }
  1418. }
  1419.  
  1420. /// <remarks/>
  1421. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1422. [System.SerializableAttribute()]
  1423. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1424. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1425. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1426. [DataContract(Name = "OrderProductsProductProductType", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1427. public partial class OrderProductsProductProductType {
  1428. private string codeField;
  1429. private string nameField;
  1430.  
  1431. /// <remarks/>
  1432. [DataMember(Name = "Code", Order = 0)]
  1433. public string Code {
  1434. get {
  1435. return this.codeField;
  1436. }
  1437. set {
  1438. this.codeField = value;
  1439. }
  1440. }
  1441.  
  1442. /// <remarks/>
  1443. [DataMember(Name = "Name", Order = 1)]
  1444. public string Name {
  1445. get {
  1446. return this.nameField;
  1447. }
  1448. set {
  1449. this.nameField = value;
  1450. }
  1451. }
  1452. }
  1453.  
  1454. /// <remarks/>
  1455. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1456. [System.SerializableAttribute()]
  1457. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1458. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1459. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1460. [DataContract(Name = "OrderProductsProductInnerColor", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1461. public partial class OrderProductsProductInnerColor {
  1462. private string codeField;
  1463.  
  1464. /// <remarks/>
  1465. [DataMember(Name = "Code", Order = 0)]
  1466. public string Code {
  1467. get {
  1468. return this.codeField;
  1469. }
  1470. set {
  1471. this.codeField = value;
  1472. }
  1473. }
  1474. }
  1475.  
  1476. /// <remarks/>
  1477. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1478. [System.SerializableAttribute()]
  1479. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1480. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1481. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1482. [DataContract(Name = "OrderProductsProductOuterColor", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1483. public partial class OrderProductsProductOuterColor {
  1484. private string codeField;
  1485.  
  1486. /// <remarks/>
  1487. [DataMember(Name = "Code", Order = 0)]
  1488. public string Code {
  1489. get {
  1490. return this.codeField;
  1491. }
  1492. set {
  1493. this.codeField = value;
  1494. }
  1495. }
  1496. }
  1497.  
  1498. /// <remarks/>
  1499. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1500. [System.SerializableAttribute()]
  1501. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1502. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1503. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1504. [DataContract(Name = "OrderProductsProductProfileType", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1505. public partial class OrderProductsProductProfileType {
  1506. private string codeField;
  1507.  
  1508. /// <remarks/>
  1509. [DataMember(Name = "Code", Order = 0)]
  1510. public string Code {
  1511. get {
  1512. return this.codeField;
  1513. }
  1514. set {
  1515. this.codeField = value;
  1516. }
  1517. }
  1518. }
  1519.  
  1520. /// <remarks/>
  1521. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1522. [System.SerializableAttribute()]
  1523. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1524. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1525. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1526. [DataContract(Name = "OrderProductsProductProfileType", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1527. public partial class OrderProductsProductSupplyMaterialType {
  1528. private string codeField;
  1529.  
  1530. /// <remarks/>
  1531. [DataMember(Name = "Code", Order = 0)]
  1532. public string Code {
  1533. get {
  1534. return this.codeField;
  1535. }
  1536. set {
  1537. this.codeField = value;
  1538. }
  1539. }
  1540. }
  1541.  
  1542. /// <remarks/>
  1543. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1544. [System.SerializableAttribute()]
  1545. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1546. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1547. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1548. [DataContract(Name = "OrderProductsProductUnit", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1549. public partial class OrderProductsProductUnit {
  1550. private string codeField;
  1551. private string nameField;
  1552.  
  1553. /// <remarks/>
  1554. [DataMember(Name = "Code", Order = 0)]
  1555. public string Code {
  1556. get {
  1557. return this.codeField;
  1558. }
  1559. set {
  1560. this.codeField = value;
  1561. }
  1562. }
  1563.  
  1564. /// <remarks/>
  1565. [DataMember(Name = "Name", Order = 1)]
  1566. public string Name {
  1567. get {
  1568. return this.nameField;
  1569. }
  1570. set {
  1571. this.nameField = value;
  1572. }
  1573. }
  1574. }
  1575.  
  1576. /// <remarks/>
  1577. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1578. [System.SerializableAttribute()]
  1579. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1580. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1581. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1582. [DataContract(Name = "OrderProductsTax", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1583. public partial class OrderProductsTax {
  1584. private string codeField;
  1585.  
  1586. /// <remarks/>
  1587. [DataMember(Name = "Code", Order = 0)]
  1588. public string Code {
  1589. get {
  1590. return this.codeField;
  1591. }
  1592. set {
  1593. this.codeField = value;
  1594. }
  1595. }
  1596. }
  1597.  
  1598. /// <remarks/>
  1599. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1600. [System.SerializableAttribute()]
  1601. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1602. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1603. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1604. [DataContract(Name = "OrderProductsSpecification", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1605. public partial class OrderProductsSpecification {
  1606. private string codeField;
  1607. private string nameField;
  1608.  
  1609. /// <remarks/>
  1610. [DataMember(Name = "Code", Order = 0)]
  1611. public string Code {
  1612. get {
  1613. return this.codeField;
  1614. }
  1615. set {
  1616. this.codeField = value;
  1617. }
  1618. }
  1619.  
  1620. /// <remarks/>
  1621. [DataMember(Name = "Name", Order = 1)]
  1622. public string Name {
  1623. get {
  1624. return this.nameField;
  1625. }
  1626. set {
  1627. this.nameField = value;
  1628. }
  1629. }
  1630. }
  1631.  
  1632. /// <remarks/>
  1633. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1634. [System.SerializableAttribute()]
  1635. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1636. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1637. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1638. [DataContract(Name = "OrderProductsInnerColor", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1639. public partial class OrderProductsInnerColor {
  1640. private string codeField;
  1641.  
  1642. /// <remarks/>
  1643. [DataMember(Name = "Code", Order = 0)]
  1644. public string Code {
  1645. get {
  1646. return this.codeField;
  1647. }
  1648. set {
  1649. this.codeField = value;
  1650. }
  1651. }
  1652. }
  1653.  
  1654. /// <remarks/>
  1655. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1656. [System.SerializableAttribute()]
  1657. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1658. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1659. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1660. [DataContract(Name = "OrderProductsOuterColor", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1661. public partial class OrderProductsOuterColor {
  1662. private string codeField;
  1663.  
  1664. /// <remarks/>
  1665. [DataMember(Name = "Code", Order = 0)]
  1666. public string Code {
  1667. get {
  1668. return this.codeField;
  1669. }
  1670. set {
  1671. this.codeField = value;
  1672. }
  1673. }
  1674. }
  1675.  
  1676. /// <remarks/>
  1677. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1678. [System.SerializableAttribute()]
  1679. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1680. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1681. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1682. [DataContract(Name = "OrderServices", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1683. public partial class OrderServices {
  1684. private OrderServicesProduct productField;
  1685. private float discountMarkupPercentField;
  1686. private OrderServicesTax taxField;
  1687. private float priceField;
  1688. private float countField;
  1689. private float coefficientField;
  1690. private float sumField;
  1691. private float taxAmountField;
  1692.  
  1693. /// <remarks/>
  1694. [DataMember(Name = "Product", Order = 0)]
  1695. public OrderServicesProduct Product {
  1696. get {
  1697. return this.productField;
  1698. }
  1699. set {
  1700. this.productField = value;
  1701. }
  1702. }
  1703.  
  1704. /// <remarks/>
  1705. [DataMember(Name = "DiscountMarkupPercent", Order = 1)]
  1706. public float DiscountMarkupPercent {
  1707. get {
  1708. return this.discountMarkupPercentField;
  1709. }
  1710. set {
  1711. this.discountMarkupPercentField = value;
  1712. }
  1713. }
  1714.  
  1715. /// <remarks/>
  1716. [DataMember(Name = "Tax", Order = 2)]
  1717. public OrderServicesTax Tax {
  1718. get {
  1719. return this.taxField;
  1720. }
  1721. set {
  1722. this.taxField = value;
  1723. }
  1724. }
  1725.  
  1726. /// <remarks/>
  1727. [DataMember(Name = "Price", Order = 3)]
  1728. public float Price {
  1729. get {
  1730. return this.priceField;
  1731. }
  1732. set {
  1733. this.priceField = value;
  1734. }
  1735. }
  1736.  
  1737. /// <remarks/>
  1738. [DataMember(Name = "Count", Order = 4)]
  1739. public float Count {
  1740. get {
  1741. return this.countField;
  1742. }
  1743. set {
  1744. this.countField = value;
  1745. }
  1746. }
  1747.  
  1748. /// <remarks/>
  1749. [DataMember(Name = "Coefficient", Order = 5)]
  1750. public float Coefficient {
  1751. get {
  1752. return this.coefficientField;
  1753. }
  1754. set {
  1755. this.coefficientField = value;
  1756. }
  1757. }
  1758.  
  1759. /// <remarks/>
  1760. [DataMember(Name = "Sum", Order = 6)]
  1761. public float Sum {
  1762. get {
  1763. return this.sumField;
  1764. }
  1765. set {
  1766. this.sumField = value;
  1767. }
  1768. }
  1769.  
  1770. /// <remarks/>
  1771. [DataMember(Name = "TaxAmount", Order = 7)]
  1772. public float TaxAmount {
  1773. get {
  1774. return this.taxAmountField;
  1775. }
  1776. set {
  1777. this.taxAmountField = value;
  1778. }
  1779. }
  1780. }
  1781.  
  1782. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1783. [System.SerializableAttribute()]
  1784. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1785. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1786. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1787. [CollectionDataContract(Name = "OrderServicesCollection", ItemName = "OrderServicesCollectionItem", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1788. public partial class OrderServicesCollection: List<OrderServices>
  1789. {
  1790.  
  1791. }
  1792.  
  1793. /// <remarks/>
  1794. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1795. [System.SerializableAttribute()]
  1796. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1797. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1798. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1799. [DataContract(Name = "OrderServicesProduct", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1800. public partial class OrderServicesProduct {
  1801. private string codeField;
  1802. private string nameField;
  1803. private string fullNameField;
  1804. private string articulField;
  1805. private string commentField;
  1806. private OrderServicesProductTax taxField;
  1807. private bool isServiceField;
  1808. private OrderServicesProductProductType productTypeField;
  1809. private string iDWinField;
  1810. private bool laminationField;
  1811. private OrderServicesProductInnerColor innerColorField;
  1812. private OrderServicesProductOuterColor outerColorField;
  1813. private OrderServicesProductProfileType profileTypeField;
  1814. private string analogsField;
  1815. private bool isAdditionalEquipmentField;
  1816.  
  1817. /// <remarks/>
  1818. [DataMember(Name = "Code", Order = 0)]
  1819. public string Code {
  1820. get {
  1821. return this.codeField;
  1822. }
  1823. set {
  1824. this.codeField = value;
  1825. }
  1826. }
  1827.  
  1828. /// <remarks/>
  1829. [DataMember(Name = "Name", Order = 1)]
  1830. public string Name {
  1831. get {
  1832. return this.nameField;
  1833. }
  1834. set {
  1835. this.nameField = value;
  1836. }
  1837. }
  1838.  
  1839. /// <remarks/>
  1840. [DataMember(Name = "FullName", Order = 2)]
  1841. public string FullName {
  1842. get {
  1843. return this.fullNameField;
  1844. }
  1845. set {
  1846. this.fullNameField = value;
  1847. }
  1848. }
  1849.  
  1850. /// <remarks/>
  1851. [DataMember(Name = "Articul", Order = 3)]
  1852. public string Articul {
  1853. get {
  1854. return this.articulField;
  1855. }
  1856. set {
  1857. this.articulField = value;
  1858. }
  1859. }
  1860.  
  1861. /// <remarks/>
  1862. [DataMember(Name = "Comment", Order = 4)]
  1863. public string Comment {
  1864. get {
  1865. return this.commentField;
  1866. }
  1867. set {
  1868. this.commentField = value;
  1869. }
  1870. }
  1871.  
  1872. /// <remarks/>
  1873. [DataMember(Name = "Tax", Order = 5)]
  1874. public OrderServicesProductTax Tax {
  1875. get {
  1876. return this.taxField;
  1877. }
  1878. set {
  1879. this.taxField = value;
  1880. }
  1881. }
  1882.  
  1883. /// <remarks/>
  1884. [DataMember(Name = "IsService", Order = 6)]
  1885. public bool IsService {
  1886. get {
  1887. return this.isServiceField;
  1888. }
  1889. set {
  1890. this.isServiceField = value;
  1891. }
  1892. }
  1893.  
  1894. /// <remarks/>
  1895. [DataMember(Name = "ProductType", Order = 7)]
  1896. public OrderServicesProductProductType ProductType {
  1897. get {
  1898. return this.productTypeField;
  1899. }
  1900. set {
  1901. this.productTypeField = value;
  1902. }
  1903. }
  1904.  
  1905. /// <remarks/>
  1906. [DataMember(Name = "IDWin", Order = 8)]
  1907. public string IDWin {
  1908. get {
  1909. return this.iDWinField;
  1910. }
  1911. set {
  1912. this.iDWinField = value;
  1913. }
  1914. }
  1915.  
  1916. /// <remarks/>
  1917. [DataMember(Name = "Lamination", Order = 9)]
  1918. public bool Lamination {
  1919. get {
  1920. return this.laminationField;
  1921. }
  1922. set {
  1923. this.laminationField = value;
  1924. }
  1925. }
  1926.  
  1927. /// <remarks/>
  1928. [DataMember(Name = "InnerColor", Order = 10)]
  1929. public OrderServicesProductInnerColor InnerColor {
  1930. get {
  1931. return this.innerColorField;
  1932. }
  1933. set {
  1934. this.innerColorField = value;
  1935. }
  1936. }
  1937.  
  1938. /// <remarks/>
  1939. [DataMember(Name = "OuterColor", Order = 11)]
  1940. public OrderServicesProductOuterColor OuterColor {
  1941. get {
  1942. return this.outerColorField;
  1943. }
  1944. set {
  1945. this.outerColorField = value;
  1946. }
  1947. }
  1948.  
  1949. /// <remarks/>
  1950. [DataMember(Name = "ProfileType", Order = 12)]
  1951. public OrderServicesProductProfileType ProfileType {
  1952. get {
  1953. return this.profileTypeField;
  1954. }
  1955. set {
  1956. this.profileTypeField = value;
  1957. }
  1958. }
  1959.  
  1960. /// <remarks/>
  1961. [DataMember(Name = "Analogs", Order = 13)]
  1962. public string Analogs {
  1963. get {
  1964. return this.analogsField;
  1965. }
  1966. set {
  1967. this.analogsField = value;
  1968. }
  1969. }
  1970.  
  1971. /// <remarks/>
  1972. [DataMember(Name = "IsAdditionalEquipment", Order = 14)]
  1973. public bool IsAdditionalEquipment {
  1974. get {
  1975. return this.isAdditionalEquipmentField;
  1976. }
  1977. set {
  1978. this.isAdditionalEquipmentField = value;
  1979. }
  1980. }
  1981. }
  1982.  
  1983. /// <remarks/>
  1984. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  1985. [System.SerializableAttribute()]
  1986. [System.Diagnostics.DebuggerStepThroughAttribute()]
  1987. [System.ComponentModel.DesignerCategoryAttribute("code")]
  1988. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  1989. [DataContract(Name = "OrderServicesProductTax", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  1990. public partial class OrderServicesProductTax {
  1991. private string codeField;
  1992.  
  1993. /// <remarks/>
  1994. [DataMember(Name = "Code", Order = 0)]
  1995. public string Code {
  1996. get {
  1997. return this.codeField;
  1998. }
  1999. set {
  2000. this.codeField = value;
  2001. }
  2002. }
  2003. }
  2004.  
  2005. /// <remarks/>
  2006. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  2007. [System.SerializableAttribute()]
  2008. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2009. [System.ComponentModel.DesignerCategoryAttribute("code")]
  2010. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  2011. [DataContract(Name = "OrderServicesProductProductType", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  2012. public partial class OrderServicesProductProductType {
  2013. private string codeField;
  2014. private string nameField;
  2015.  
  2016. /// <remarks/>
  2017. [DataMember(Name = "Code", Order = 0)]
  2018. public string Code {
  2019. get {
  2020. return this.codeField;
  2021. }
  2022. set {
  2023. this.codeField = value;
  2024. }
  2025. }
  2026.  
  2027. /// <remarks/>
  2028. [DataMember(Name = "Name", Order = 1)]
  2029. public string Name {
  2030. get {
  2031. return this.nameField;
  2032. }
  2033. set {
  2034. this.nameField = value;
  2035. }
  2036. }
  2037. }
  2038.  
  2039. /// <remarks/>
  2040. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  2041. [System.SerializableAttribute()]
  2042. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2043. [System.ComponentModel.DesignerCategoryAttribute("code")]
  2044. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  2045. [DataContract(Name = "OrderServicesProductInnerColor", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  2046. public partial class OrderServicesProductInnerColor {
  2047. private string codeField;
  2048.  
  2049. /// <remarks/>
  2050. [DataMember(Name = "Code", Order = 0)]
  2051. public string Code {
  2052. get {
  2053. return this.codeField;
  2054. }
  2055. set {
  2056. this.codeField = value;
  2057. }
  2058. }
  2059. }
  2060.  
  2061. /// <remarks/>
  2062. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  2063. [System.SerializableAttribute()]
  2064. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2065. [System.ComponentModel.DesignerCategoryAttribute("code")]
  2066. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  2067. [DataContract(Name = "OrderServicesProductOuterColor", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  2068. public partial class OrderServicesProductOuterColor {
  2069. private string codeField;
  2070.  
  2071. /// <remarks/>
  2072. [DataMember(Name = "Code", Order = 0)]
  2073. public string Code {
  2074. get {
  2075. return this.codeField;
  2076. }
  2077. set {
  2078. this.codeField = value;
  2079. }
  2080. }
  2081. }
  2082.  
  2083. /// <remarks/>
  2084. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  2085. [System.SerializableAttribute()]
  2086. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2087. [System.ComponentModel.DesignerCategoryAttribute("code")]
  2088. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  2089. [DataContract(Name = "OrderServicesProductProfileType", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  2090. public partial class OrderServicesProductProfileType {
  2091. private string codeField;
  2092.  
  2093. /// <remarks/>
  2094. [DataMember(Name = "Code", Order = 0)]
  2095. public string Code {
  2096. get {
  2097. return this.codeField;
  2098. }
  2099. set {
  2100. this.codeField = value;
  2101. }
  2102. }
  2103. }
  2104.  
  2105. /// <remarks/>
  2106. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  2107. [System.SerializableAttribute()]
  2108. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2109. [System.ComponentModel.DesignerCategoryAttribute("code")]
  2110. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  2111. [DataContract(Name = "OrderServicesTax", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  2112. public partial class OrderServicesTax {
  2113. private string codeField;
  2114.  
  2115. /// <remarks/>
  2116. [DataMember(Name = "Code", Order = 0)]
  2117. public string Code {
  2118. get {
  2119. return this.codeField;
  2120. }
  2121. set {
  2122. this.codeField = value;
  2123. }
  2124. }
  2125. }
  2126.  
  2127. /// <remarks/>
  2128. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  2129. [System.SerializableAttribute()]
  2130. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2131. [System.ComponentModel.DesignerCategoryAttribute("code")]
  2132. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  2133. [DataContract(Name = "OrderDataAT", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  2134. public partial class OrderDataAT {
  2135. private string optionField;
  2136. private string valueField;
  2137.  
  2138. /// <remarks/>
  2139. [DataMember(Name = "Option", Order = 0)]
  2140. public string Option {
  2141. get {
  2142. return this.optionField;
  2143. }
  2144. set {
  2145. this.optionField = value;
  2146. }
  2147. }
  2148.  
  2149. /// <remarks/>
  2150. [DataMember(Name = "Value", Order = 1)]
  2151. public string Value {
  2152. get {
  2153. return this.valueField;
  2154. }
  2155. set {
  2156. this.valueField = value;
  2157. }
  2158. }
  2159. }
  2160.  
  2161. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  2162. [System.SerializableAttribute()]
  2163. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2164. [System.ComponentModel.DesignerCategoryAttribute("code")]
  2165. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  2166. [CollectionDataContract(Name = "OrderDataATCollection", ItemName = "OrderDataATCollectionItem", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  2167. public partial class OrderDataATCollection: List<OrderDataAT>
  2168. {
  2169.  
  2170. }
  2171.  
  2172. /* [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  2173. [System.SerializableAttribute()]
  2174. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2175. [System.ComponentModel.DesignerCategoryAttribute("code")]
  2176. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  2177. [System.Xml.Serialization.XmlRootAttribute(Namespace="https://plastika-okon.bpmonline.com/Order", IsNullable=false)]
  2178. [CollectionDataContract(Name = "OrderCollection", ItemName = "OrderCollectionItem", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  2179. public partial class OrderCollection: List<Order>
  2180. {
  2181.  
  2182. }
  2183.  
  2184. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  2185. [System.SerializableAttribute()]
  2186. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2187. [System.ComponentModel.DesignerCategoryAttribute("code")]
  2188. [System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="https://plastika-okon.bpmonline.com/Order")]
  2189. [System.Xml.Serialization.XmlRootAttribute(Namespace="https://plastika-okon.bpmonline.com/Order", IsNullable=false)]
  2190. [DataContract(Name = "Orders", Namespace = "https://plastika-okon.bpmonline.com/Order")]
  2191. public partial class Orders {
  2192. private OrderCollection orderField;
  2193.  
  2194. [DataMember(Name = "Order")]
  2195. public OrderCollection Order {
  2196. get {
  2197. return this.orderField;
  2198. }
  2199. set {
  2200. this.orderField = value;
  2201. }
  2202. }
  2203. }*/
  2204.  
  2205. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement