/Docs/07-Implementacion/build/Package Agenda/Excursion.cs
http://blpm.googlecode.com/ · C# · 99 lines · 73 code · 19 blank · 7 comment · 0 complexity · 64717dac2c9294a9bd901fcbab039dd3 MD5 · raw file
- ///////////////////////////////////////////////////////////
- // Excursion.cs
- // Implementation of the Class Excursion
- // Generated by Enterprise Architect
- // Created on: 12-jun-2011 07:44:16 p.m.
- // Original author: Pablo Nicoliello
- ///////////////////////////////////////////////////////////
-
-
-
-
- public class Excursion {
-
- private Curso _curso;
- private string _descripcion;
- private string _destino;
- private Datetime _fecha;
- private Datetime _horaDesde;
- private Datetime _horaHasta;
- private Usuario _organizador;
- public Usuario m_Usuario;
- public Curso m_Curso;
-
- public Excursion(){
-
- }
-
- ~Excursion(){
-
- }
-
- public virtual void Dispose(){
-
- }
-
- public Curso _curso{
- get{
- return _curso;
- }
- set{
- _curso = value;
- }
- }
-
- public string _descripcion{
- get{
- return _descripcion;
- }
- set{
- _descripcion = value;
- }
- }
-
- public string _destino{
- get{
- return _destino;
- }
- set{
- _destino = value;
- }
- }
-
- public Datetime _fecha{
- get{
- return _fecha;
- }
- set{
- _fecha = value;
- }
- }
-
- public Datetime _horaDesde{
- get{
- return _horaDesde;
- }
- set{
- _horaDesde = value;
- }
- }
-
- public Datetime _horaHasta{
- get{
- return _horaHasta;
- }
- set{
- _horaHasta = value;
- }
- }
-
- public Usuario _organizador{
- get{
- return _organizador;
- }
- set{
- _organizador = value;
- }
- }
-
- }//end Excursion