public CossCountry(BikecColor color, IWheel wheel)
     : base(color, wheel)
 {
 }
 public AbstractMountainBike(BikecColor color, IWheel wheel)
     : base(color, wheel)
 {
 }
Example #3
0
 public Vintage(BikecColor color, IWheel wheel)
     : base(color, wheel)
 {
 }
 public DownHill(BikecColor color, IWheel wheel)
     : base(color, wheel)
 {
 }
Example #5
0
 public void paint(BikecColor color)
 {
     this._color = color;
 }
Example #6
0
 public AbstractBike(BikecColor color, IWheel wheel)
 {
     this._wheel = wheel;
     this._color = color;
 }
Example #7
0
 public Touring(BikecColor color, IWheel wheel)
     : base(color, wheel)
 {
 }
Example #8
0
 public AbstractRoadBike(BikecColor color, IWheel wheel)
     : base(color, wheel)
 {
 }