Advertisement
Guest User

Untitled

a guest
Feb 17th, 2017
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.06 KB | None | 0 0
  1. [System.Diagnostics.DebuggerStepThroughAttribute()]
  2. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  3. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  4. [System.ServiceModel.MessageContractAttribute(WrapperName="Streets", WrapperNamespace="http://schemas.ddd.com/open/crm", IsWrapped=true)]
  5. public partial class StreetsRequest {
  6.  
  7. [System.ServiceModel.MessageHeaderAttribute(Namespace="")]
  8. public string username;
  9.  
  10. [System.ServiceModel.MessageHeaderAttribute(Namespace="")]
  11. public string password;
  12.  
  13. public StreetsRequest() {
  14. }
  15.  
  16. public StreetsRequest(string username, string password) {
  17. this.username = username;
  18. this.password = password;
  19. }
  20. }
  21.  
  22. [System.Diagnostics.DebuggerStepThroughAttribute()]
  23. [System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "4.0.0.0")]
  24. [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Advanced)]
  25. [System.ServiceModel.MessageContractAttribute(WrapperName="StreetsResponse", WrapperNamespace="http://schemas.ddd.com/open/crm", IsWrapped=true)]
  26. public partial class StreetsResponse {
  27.  
  28. [System.ServiceModel.MessageBodyMemberAttribute(Namespace="http://schemas.ddd.com /open/crm", Order=0)]
  29. public myProProject.eServe.Parametre[] StreetsResult;
  30.  
  31. public StreetsResponse() {
  32. }
  33.  
  34. public StreetsResponse(myProProject.eServe.Parametre[] StreetsResult) {
  35. this.StreetsResult = StreetsResult;
  36. }
  37. }
  38.  
  39. <xs:element name="Streets">
  40. <xs:complexType>
  41. <xs:sequence/>
  42. </xs:complexType>
  43. </xs:element>
  44. <xs:element name="StreetsResponse">
  45. <xs:complexType>
  46. <xs:sequence>
  47. <xs:element minOccurs="0" name="StreetsResult" nillable="true" type="tns:ArrayOfParametre"/>
  48. </xs:sequence>
  49. </xs:complexType>
  50. </xs:element>
  51. <xs:complexType name="ArrayOfParametre">
  52. <xs:sequence>
  53. <xs:element minOccurs="0" maxOccurs="unbounded" name="Parametre" nillable="true" type="tns:Parametre"/>
  54. </xs:sequence>
  55. </xs:complexType>
  56. <xs:element name="ArrayOfParametre" nillable="true" type="tns:ArrayOfParametre"/>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement