/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
- ///////////////////////////////////////////////////////////
- // Orientacion.cs
- // Implementation of the Class Orientacion
- // Generated by Enterprise Architect
- // Created on: 20-jun-2011 16:21:52
- // Original author: Pablo Nicoliello
- ///////////////////////////////////////////////////////////
-
-
- using EDUAR_Entities.Shared;
- using System;
- namespace EDUAR_Entities
- {
- [Serializable]
- public class Orientacion: DTBase
- {
-
- public string nombre { get; set; }
- public int idOrientacion { get; set; }
- public string definicionCompetencias { get; set; }
- public string descripcion { get; set; }
- public int idOrientacionTransaccional { get; set; }
-
- public Orientacion()
- {
-
- }
-
- ~Orientacion()
- {
-
- }
-
- public virtual void Dispose()
- {
-
- }
-
- }//end Orientacion
- }