Exemplo n.º 1
0
 public Observacion()
 {
     this.pId          = 0;
     this.pNombre      = "<Ingrese el nombre>";
     this.pDescripcion = "<Ingrese la descripción>";
     this.pActivo      = ActivoEnum.Si;
 }
Exemplo n.º 2
0
 public Observacion(int ID, string Nombre, string Descripcion, ActivoEnum Activo)
 {
     this.pId          = ID;
     this.pNombre      = Nombre;
     this.pDescripcion = Descripcion;
     this.pActivo      = Activo;
 }