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