/Docs/07-Implementacion/Source/trunk/EDUAR_Regular/EDUAR/EDUAR_DataTransferObject/Entities/Package Principales/MotivoAusencia.cs
http://blpm.googlecode.com/ · C# · 71 lines · 54 code · 10 blank · 7 comment · 0 complexity · 360900994cc4f8b5185e0695c96871e0 MD5 · raw file
- ///////////////////////////////////////////////////////////
- // MotivoAusencia.cs
- // Implementation of the Class MotivoAusencia
- // Generated by Enterprise Architect
- // Created on: 20-jun-2011 16:21:51
- // Original author: orkus
- ///////////////////////////////////////////////////////////
-
- using EDUAR_Entities.Shared;
- using System;
- namespace EDUAR_Entities
- {
- [Serializable]
- public class MotivoAusencia: DTBase
- {
-
- private string _nombre;
- private int _idMotivo;
- private int _idMotivoTransaccional;
-
- public MotivoAusencia()
- {
-
- }
-
- ~MotivoAusencia()
- {
-
- }
-
- public virtual void Dispose()
- {
-
- }
-
- public string nombre
- {
- get
- {
- return _nombre;
- }
- set
- {
- _nombre = value;
- }
- }
-
- public int idMotivo
- {
- get
- {
- return _idMotivo;
- }
- set
- {
- _idMotivo = value;
- }
- }
- public int idMotivoTransaccional
- {
- get
- {
- return _idMotivoTransaccional;
- }
- set
- {
- _idMotivoTransaccional = value;
- }
- }
- }//end MotivoAusencia
- }