/Docs/07-Implementacion/Source/trunk/EDUAR_Regular/EDUAR/EDUAR_DataTransferObject/Entities/Package Usuarios/Preceptor.cs

http://blpm.googlecode.com/ · C# · 49 lines · 28 code · 11 blank · 10 comment · 0 complexity · 4df42ee3c9b23b6789706e8331e65ff6 MD5 · raw file

  1. ///////////////////////////////////////////////////////////
  2. // Preceptor.cs
  3. // Implementation of the Class Preceptor
  4. // Generated by Enterprise Architect
  5. // Created on: 20-jun-2011 16:21:54
  6. // Original author: Pablo Nicoliello
  7. ///////////////////////////////////////////////////////////
  8. using System;
  9. using EDUAR_Entities.Shared;
  10. namespace EDUAR_Entities
  11. {
  12. [Serializable]
  13. public class Preceptor : Personal
  14. {
  15. public int idPreceptor { get; set; }
  16. private Curso _cursos;
  17. public Preceptor()
  18. {
  19. }
  20. ~Preceptor()
  21. {
  22. }
  23. //public override void Dispose()
  24. //{
  25. //}
  26. public Curso cursos
  27. {
  28. get
  29. {
  30. return _cursos;
  31. }
  32. set
  33. {
  34. _cursos = value;
  35. }
  36. }
  37. }//end Preceptor
  38. }