Example #1
0
 public Mujer(string cad, float a)
 {
     menstruaciĆ³n = false;
     satisfecha = true;
     feliz = false;
     ahorros = a;
     esc = new Escaparate(3);
 }
Example #2
0
 public Mujer(float ahorros, int cantRop)
 {
     menstruaciĆ³n = false;
     satisfecha = true;
     feliz = false;
     this.ahorros = ahorros;
     esc = new Escaparate(cantRop);
 }