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