public AndriodPhoneBuilder()
 {
     this.mobilePhone = new MobilePhone();
     this.mobilePhone.Name = "Andriod";
 }
 public WindowsPhoneBuilder()
 {
     this.mobilePhone = new MobilePhone();
     this.mobilePhone.Name = "Windows";
 }
Exemple #3
0
 public WindowsPhoneBuilder()
 {
     this.mobilePhone      = new MobilePhone();
     this.mobilePhone.Name = "Windows";
 }
 public AndriodPhoneBuilder()
 {
     this.mobilePhone      = new MobilePhone();
     this.mobilePhone.Name = "Andriod";
 }