Advertisement
Fhernd

MedioPublicitario.cs

Sep 3rd, 2014
1,116
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. // Clase: MedioPublicitario.cs
  9. //
  10. // Propósito: Modelar los diferentes medios publicitarios.
  11. //
  12. ============================================================*/
  13. using System;
  14.  
  15. namespace N1_EleccionesCupi2.Modelo
  16. {
  17.     /// <summary>
  18.     /// Enumeración con los tres medios publicitarios: Internet, Radio, Televisión.
  19.     /// </summary>
  20.     public enum MedioPublicitario
  21.     {
  22.         Internet = 1,
  23.         Radio = 2,
  24.         Television = 3
  25.     }
  26. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement