/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

  1. ///////////////////////////////////////////////////////////
  2. // Reunion.cs
  3. // Implementation of the Class Reunion
  4. // Generated by Enterprise Architect
  5. // Created on: 20-jun-2011 16:21:55
  6. // Original author: Belén
  7. ///////////////////////////////////////////////////////////
  8. using EDUAR_Entities.Shared;
  9. using System;
  10. namespace EDUAR_Entities
  11. {
  12. [Serializable]
  13. public class Reunion : EventoAgenda
  14. {
  15. public int idReunion { get; set; }
  16. public DateTime horario { get; set; }
  17. public Reunion()
  18. {
  19. //evento = new EventoAgenda<Reunion>();
  20. }
  21. ~Reunion()
  22. {
  23. }
  24. public virtual void Dispose()
  25. {
  26. }
  27. }//end Reunion
  28. }