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

http://blpm.googlecode.com/ · C# · 40 lines · 23 code · 10 blank · 7 comment · 0 complexity · 8cf7439420dd009d051a64e78620e0a9 MD5 · raw file

  1. ///////////////////////////////////////////////////////////
  2. // Orientacion.cs
  3. // Implementation of the Class Orientacion
  4. // Generated by Enterprise Architect
  5. // Created on: 20-jun-2011 16:21:52
  6. // Original author: Pablo Nicoliello
  7. ///////////////////////////////////////////////////////////
  8. using EDUAR_Entities.Shared;
  9. using System;
  10. namespace EDUAR_Entities
  11. {
  12. [Serializable]
  13. public class Orientacion: DTBase
  14. {
  15. public string nombre { get; set; }
  16. public int idOrientacion { get; set; }
  17. public string definicionCompetencias { get; set; }
  18. public string descripcion { get; set; }
  19. public int idOrientacionTransaccional { get; set; }
  20. public Orientacion()
  21. {
  22. }
  23. ~Orientacion()
  24. {
  25. }
  26. public virtual void Dispose()
  27. {
  28. }
  29. }//end Orientacion
  30. }