/Docs/07-Implementacion/Source/trunk/EDUAR_actual/EDUAR/EDUAR_DataTransferObject/Entities/Package Planificacion Clases/Contenido.cs

http://blpm.googlecode.com/ · C# · 48 lines · 34 code · 7 blank · 7 comment · 0 complexity · f6947ba1d29f7302a48d5f5cab0d0903 MD5 · raw file

  1. ///////////////////////////////////////////////////////////
  2. // Contenido.cs
  3. // Implementation of the Class Contenido
  4. // Generated by Enterprise Architect
  5. // Created on: 20-jun-2011 16:21:46
  6. // Original author: Pablo Nicoliello
  7. ///////////////////////////////////////////////////////////
  8. using System;
  9. using System.Collections.Generic;
  10. using EDUAR_Entities.Shared;
  11. namespace EDUAR_Entities
  12. {
  13. [Serializable]
  14. public class Contenido : DTBase
  15. {
  16. public int idContenido { get; set; }
  17. public int idCurricula { get; set; }
  18. public string descripcion { get; set; }
  19. public bool activo { get; set; }
  20. public DateTime fechaBaja { get; set; }
  21. public Persona usuarioBaja { get; set; }
  22. public List<TemaContenido> listaContenidos { get; set; }
  23. public Contenido(int unIdCurricula)
  24. {
  25. idCurricula = unIdCurricula;
  26. listaContenidos = new List<TemaContenido>();
  27. usuarioBaja = new Persona();
  28. }
  29. public Contenido()
  30. {
  31. listaContenidos = new List<TemaContenido>();
  32. usuarioBaja = new Persona();
  33. }
  34. ~Contenido()
  35. {
  36. }
  37. public virtual void Dispose()
  38. {
  39. }
  40. }//end Contenido
  41. }