Exemplo n.º 1
0
 public DesktopBuilder()
 {
     Computer = new Computer(ComputerType.Desktop);
 }
Exemplo n.º 2
0
 public LaptopBuilder()
 {
     Computer = new Computer(ComputerType.Laptop);
 }
Exemplo n.º 3
0
 public AppleBuilder()
 {
     Computer = new Computer(ComputerType.Apple);
 }