/// <summary>
 /// Creates new instance of Windows phone.
 /// </summary>
 public WindowsPhoneBuilder()
 {
     _phone = new MobilePhone("Windows Phone");
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Creates new instance of SymbionPhoneBuilder class
 /// </summary>
 public SymbionPhoneBuilder()
 {
     _phone = new MobilePhone("Symbion Phone");
 }
Ejemplo n.º 3
0
 /// <summary>
 /// Creates new instance of AndriodPhoneBuilder class
 /// </summary>
 public AndriodPhoneBuilder()
 {
     _phone = new MobilePhone("Andriod Phone");
 }