/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

  1. ///////////////////////////////////////////////////////////
  2. // Excursion.cs
  3. // Implementation of the Class Excursion
  4. // Generated by Enterprise Architect
  5. // Created on: 12-jun-2011 07:44:16 p.m.
  6. // Original author: Pablo Nicoliello
  7. ///////////////////////////////////////////////////////////
  8. public class Excursion {
  9. private Curso _curso;
  10. private string _descripcion;
  11. private string _destino;
  12. private Datetime _fecha;
  13. private Datetime _horaDesde;
  14. private Datetime _horaHasta;
  15. private Usuario _organizador;
  16. public Usuario m_Usuario;
  17. public Curso m_Curso;
  18. public Excursion(){
  19. }
  20. ~Excursion(){
  21. }
  22. public virtual void Dispose(){
  23. }
  24. public Curso _curso{
  25. get{
  26. return _curso;
  27. }
  28. set{
  29. _curso = value;
  30. }
  31. }
  32. public string _descripcion{
  33. get{
  34. return _descripcion;
  35. }
  36. set{
  37. _descripcion = value;
  38. }
  39. }
  40. public string _destino{
  41. get{
  42. return _destino;
  43. }
  44. set{
  45. _destino = value;
  46. }
  47. }
  48. public Datetime _fecha{
  49. get{
  50. return _fecha;
  51. }
  52. set{
  53. _fecha = value;
  54. }
  55. }
  56. public Datetime _horaDesde{
  57. get{
  58. return _horaDesde;
  59. }
  60. set{
  61. _horaDesde = value;
  62. }
  63. }
  64. public Datetime _horaHasta{
  65. get{
  66. return _horaHasta;
  67. }
  68. set{
  69. _horaHasta = value;
  70. }
  71. }
  72. public Usuario _organizador{
  73. get{
  74. return _organizador;
  75. }
  76. set{
  77. _organizador = value;
  78. }
  79. }
  80. }//end Excursion