public Touring(BikeColor color, IWheel wheel)
     : base(color, wheel)
 {
 }
 public AbstractMountainBike(BikeColor color, IWheel wheel)
     : base(color, wheel)
 {
 }
 public AbstractRoadBike(BikeColor color, IWheel wheel) : base(color, wheel)
 {
 }
 public CrossCountry(BikeColor color, IWheel wheel)
     : base(color, wheel)
 {
 }
 public AbstractBike(BikeColor color, IWheel wheel)
 {
     this._wheel = wheel;
     this._color = color;
 }
 public virtual void Paint(BikeColor color)
 {
     this._color = color;
 }
Beispiel #7
0
 public CrossCountry(IWheel wheel, BikeColor color)
     : base(wheel, color)
 {
 }
Beispiel #8
0
 public virtual void paint(BikeColor color)
 {
 }
Beispiel #9
0
 public Vintage(IWheel wheel, BikeColor color)
     : base(wheel, color)
 {
 }
 public Downhill(BikeColor color, IWheel wheel)
     : base(color, wheel)
 {
 }
Beispiel #11
0
 public Touring(IWheel wheel, BikeColor color)
     : base(wheel, color)
 {
 }
Beispiel #12
0
 public virtual void Paint(BikeColor color)
 {
     this.ColorType = color;
 }
Beispiel #13
0
 public AbstractBike(IWheel wheel, BikeColor color)
 {
     this.Wheel = wheel;
     ColorType  = color;
 }
Beispiel #14
0
 public AbstractMoutainBike(IWheel wheel, BikeColor color)
     : base(wheel, color)
 {
 }
Beispiel #15
0
 public AbstractRoadBike(IWheel wheel, BikeColor color)
     : base(wheel, color)
 {
 }
Beispiel #16
0
 public Vintage(BikeColor color, IWheel wheel)
     : base(color, wheel)
 {
 }
Beispiel #17
0
 public DownHill(IWheel wheel, BikeColor color)
     : base(wheel, color)
 {
 }