Advertisement
Fhernd

TipoProducto.cs

Jul 6th, 2014
2,012
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.57 KB | None | 0 0
  1. // ===++===
  2. //
  3. //  OrtizOL
  4. //
  5. // ===--===
  6. /*============================================================
  7. //
  8. // Enumeración: TipoProducto.cs
  9. //
  10. // Propósito: Representar los tipos de productos que se
  11. // venden en la tienda.
  12. //
  13. ============================================================*/
  14.  
  15. using System;
  16.  
  17. namespace LaTienda.Modelo
  18. {
  19.     /// <summary>
  20.     /// Representa los tipos de productos que se venden en la tienda.
  21.     /// </summary>
  22.     public enum TipoProducto
  23.     {
  24.         Drogueria = 1,
  25.         Papeleria = 2,
  26.         Supermercado = 3
  27.     }
  28. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement