public iPhoneBuilder()
 {
     this.celular = new Celular("iPhone");
 }
Ejemplo n.º 2
0
 public AndroidBuilder()
 {
     celular = new Celular("Android");
 }
Ejemplo n.º 3
0
 public IphoneBuilder()
 {
     this.celular = new Celular();
 }
Ejemplo n.º 4
0
 public IPhoneBuilder()
 {
     Celular = new Celular("IPhone");
 }
Ejemplo n.º 5
0
 public BuilderIphone()
 {
     this.celular = new Celular("Iphone");
 }
Ejemplo n.º 6
0
 public BuilderAndroid()
 {
     this.celular = new Celular("Android");
 }
Ejemplo n.º 7
0
 public IphoneBuilder()
 {
     celular = new Celular("Iphone");
 }
 public AndriodBuilder()
 {
     this.celular = new Celular("Android");
 }