Advertisement
Fhernd

CatalogoProductos.cs

Jun 11th, 2016
2,758
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.26 KB | None | 0 0
  1. //------------------------------------------------------------------------------
  2. // <auto-generated>
  3. //     This code was generated by a tool.
  4. //     Runtime Version:4.0.30319.42000
  5. //
  6. //     Changes to this file may cause incorrect behavior and will be lost if
  7. //     the code is regenerated.
  8. // </auto-generated>
  9. //------------------------------------------------------------------------------
  10.  
  11. using System.Xml.Serialization;
  12.  
  13. //
  14. // This source code was auto-generated by xsd, Version=4.6.1055.0.
  15. //
  16.  
  17.  
  18. /// <remarks/>
  19. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  20. [System.SerializableAttribute()]
  21. [System.Diagnostics.DebuggerStepThroughAttribute()]
  22. [System.ComponentModel.DesignerCategoryAttribute("code")]
  23. [System.Xml.Serialization.XmlRootAttribute("Catalogo", Namespace="", IsNullable=true)]
  24. public partial class CatalogoProducto {
  25.    
  26.     private string nombreField;
  27.    
  28.     private System.DateTime fechaExpiracionField;
  29.    
  30.     private Producto[] productosField;
  31.    
  32.     /// <remarks/>
  33.     public string Nombre {
  34.         get {
  35.             return this.nombreField;
  36.         }
  37.         set {
  38.             this.nombreField = value;
  39.         }
  40.     }
  41.    
  42.     /// <remarks/>
  43.     [System.Xml.Serialization.XmlElementAttribute(DataType="date")]
  44.     public System.DateTime FechaExpiracion {
  45.         get {
  46.             return this.fechaExpiracionField;
  47.         }
  48.         set {
  49.             this.fechaExpiracionField = value;
  50.         }
  51.     }
  52.    
  53.     /// <remarks/>
  54.     public Producto[] Productos {
  55.         get {
  56.             return this.productosField;
  57.         }
  58.         set {
  59.             this.productosField = value;
  60.         }
  61.     }
  62. }
  63.  
  64. /// <remarks/>
  65. [System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "4.6.1055.0")]
  66. [System.SerializableAttribute()]
  67. [System.Diagnostics.DebuggerStepThroughAttribute()]
  68. [System.ComponentModel.DesignerCategoryAttribute("code")]
  69. [System.Xml.Serialization.XmlRootAttribute(Namespace="", IsNullable=true)]
  70. public partial class Producto {
  71.    
  72.     private string nombreProductoField;
  73.    
  74.     private string descripciónField;
  75.    
  76.     private decimal precioField;
  77.    
  78.     private bool disponibleField;
  79.    
  80.     private string idField;
  81.    
  82.     /// <remarks/>
  83.     public string NombreProducto {
  84.         get {
  85.             return this.nombreProductoField;
  86.         }
  87.         set {
  88.             this.nombreProductoField = value;
  89.         }
  90.     }
  91.    
  92.     /// <remarks/>
  93.     public string Descripción {
  94.         get {
  95.             return this.descripciónField;
  96.         }
  97.         set {
  98.             this.descripciónField = value;
  99.         }
  100.     }
  101.    
  102.     /// <remarks/>
  103.     public decimal Precio {
  104.         get {
  105.             return this.precioField;
  106.         }
  107.         set {
  108.             this.precioField = value;
  109.         }
  110.     }
  111.    
  112.     /// <remarks/>
  113.     public bool Disponible {
  114.         get {
  115.             return this.disponibleField;
  116.         }
  117.         set {
  118.             this.disponibleField = value;
  119.         }
  120.     }
  121.    
  122.     /// <remarks/>
  123.     [System.Xml.Serialization.XmlAttributeAttribute(DataType="integer")]
  124.     public string ID {
  125.         get {
  126.             return this.idField;
  127.         }
  128.         set {
  129.             this.idField = value;
  130.         }
  131.     }
  132. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement