/// <summary>
 /// Constrcuctor for CellphoneBuilder
 /// </summary>
 public CellphoneBuilder()
 {
     phone = new Phone("Cellphone");
 }
 /// <summary>
 /// 
 /// </summary>
 public TelephoneBuilder()
 {
     phone = new Phone("Telephone");
 }
Exemple #3
0
 public void CreatePhone()
 {
     phone = new Phone();
 }