/Docs/07-Implementacion/build/Package Encuestas/Ponderacion.cs

http://blpm.googlecode.com/ · C# · 47 lines · 26 code · 14 blank · 7 comment · 0 complexity · 6066065154d22e2fafbcc266cc68979b MD5 · raw file

  1. ///////////////////////////////////////////////////////////
  2. // Ponderacion.cs
  3. // Implementation of the Class Ponderacion
  4. // Generated by Enterprise Architect
  5. // Created on: 12-jun-2011 07:44:21 p.m.
  6. // Original author: Pablo Nicoliello
  7. ///////////////////////////////////////////////////////////
  8. public class Ponderacion {
  9. private string _descripcion;
  10. private int _peso;
  11. public Ponderacion(){
  12. }
  13. ~Ponderacion(){
  14. }
  15. public virtual void Dispose(){
  16. }
  17. public string _descripcion{
  18. get{
  19. return _descripcion;
  20. }
  21. set{
  22. _descripcion = value;
  23. }
  24. }
  25. public int _peso{
  26. get{
  27. return _peso;
  28. }
  29. set{
  30. _peso = value;
  31. }
  32. }
  33. }//end Ponderacion