/Docs/07-Implementacion/build/Package Principales/Sancion.cs

http://blpm.googlecode.com/ · C# · 69 lines · 46 code · 16 blank · 7 comment · 0 complexity · 454050478992bc439325b1611a006bdf MD5 · raw file

  1. ///////////////////////////////////////////////////////////
  2. // Sancion.cs
  3. // Implementation of the Class Sancion
  4. // Generated by Enterprise Architect
  5. // Created on: 12-jun-2011 07:44:23 p.m.
  6. // Original author: orkus
  7. ///////////////////////////////////////////////////////////
  8. public class Sancion {
  9. private int _cantidad;
  10. private Datetime _fecha;
  11. private MotivoSancion _motivoSancion;
  12. private TipoSancion _tipoSancion;
  13. public MotivoSancion m_MotivoSancion;
  14. public TipoSancion m_TipoSancion;
  15. public Sancion(){
  16. }
  17. ~Sancion(){
  18. }
  19. public virtual void Dispose(){
  20. }
  21. public int _cantidad{
  22. get{
  23. return _cantidad;
  24. }
  25. set{
  26. _cantidad = value;
  27. }
  28. }
  29. public Datetime _fecha{
  30. get{
  31. return _fecha;
  32. }
  33. set{
  34. _fecha = value;
  35. }
  36. }
  37. public MotivoSancion _motivoSancion{
  38. get{
  39. return _motivoSancion;
  40. }
  41. set{
  42. _motivoSancion = value;
  43. }
  44. }
  45. public TipoSancion _tipoSancion{
  46. get{
  47. return _tipoSancion;
  48. }
  49. set{
  50. _tipoSancion = value;
  51. }
  52. }
  53. }//end Sancion