/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
- ///////////////////////////////////////////////////////////
- // Ponderacion.cs
- // Implementation of the Class Ponderacion
- // Generated by Enterprise Architect
- // Created on: 12-jun-2011 07:44:21 p.m.
- // Original author: Pablo Nicoliello
- ///////////////////////////////////////////////////////////
-
-
-
-
- public class Ponderacion {
-
- private string _descripcion;
- private int _peso;
-
- public Ponderacion(){
-
- }
-
- ~Ponderacion(){
-
- }
-
- public virtual void Dispose(){
-
- }
-
- public string _descripcion{
- get{
- return _descripcion;
- }
- set{
- _descripcion = value;
- }
- }
-
- public int _peso{
- get{
- return _peso;
- }
- set{
- _peso = value;
- }
- }
-
- }//end Ponderacion