Exemplo n.º 1
0
 public HatchBack(string make, int wheelBase, IBrakeSystem brakeStrategy)
 {
     this.Make          = make;
     this.WheelBase     = wheelBase;
     this.BrakingSystem = brakeStrategy;
 }
Exemplo n.º 2
0
 public SportsCar(string make, int wheelBase, IBrakeSystem brakeStrategy)
 {
     this.Make          = make;
     this.WheelBase     = wheelBase;
     this.BrakingSystem = brakeStrategy;
 }