/Docs/07-Implementacion/Source/trunk/EDUAR_Regular/EDUAR/EDUAR_DataTransferObject/Entities/Package Agenda/Reunion.cs
http://blpm.googlecode.com/ · C# · 36 lines · 20 code · 8 blank · 8 comment · 0 complexity · f39ffb7085c25ca71d5785f856f7ecb3 MD5 · raw file
- ///////////////////////////////////////////////////////////
- // Reunion.cs
- // Implementation of the Class Reunion
- // Generated by Enterprise Architect
- // Created on: 20-jun-2011 16:21:55
- // Original author: Belén
- ///////////////////////////////////////////////////////////
-
- using EDUAR_Entities.Shared;
- using System;
-
- namespace EDUAR_Entities
- {
- [Serializable]
- public class Reunion : EventoAgenda
- {
- public int idReunion { get; set; }
- public DateTime horario { get; set; }
-
- public Reunion()
- {
- //evento = new EventoAgenda<Reunion>();
- }
-
- ~Reunion()
- {
-
- }
-
- public virtual void Dispose()
- {
-
- }
-
- }//end Reunion
- }