/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
- ///////////////////////////////////////////////////////////
- // Contenido.cs
- // Implementation of the Class Contenido
- // Generated by Enterprise Architect
- // Created on: 20-jun-2011 16:21:46
- // Original author: Pablo Nicoliello
- ///////////////////////////////////////////////////////////
-
- using System;
- using System.Collections.Generic;
- using EDUAR_Entities.Shared;
- namespace EDUAR_Entities
- {
- [Serializable]
- public class Contenido : DTBase
- {
- public int idContenido { get; set; }
- public int idCurricula { get; set; }
- public string descripcion { get; set; }
- public bool activo { get; set; }
- public DateTime fechaBaja { get; set; }
- public Persona usuarioBaja { get; set; }
- public List<TemaContenido> listaContenidos { get; set; }
-
- public Contenido(int unIdCurricula)
- {
- idCurricula = unIdCurricula;
- listaContenidos = new List<TemaContenido>();
- usuarioBaja = new Persona();
- }
-
- public Contenido()
- {
- listaContenidos = new List<TemaContenido>();
- usuarioBaja = new Persona();
- }
-
- ~Contenido()
- {
-
- }
-
- public virtual void Dispose()
- {
-
- }
- }//end Contenido
- }