예제 #1
0
 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)
 {
 }
예제 #4
0
 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;
 }
예제 #7
0
 public CrossCountry(IWheel wheel, BikeColor color)
     : base(wheel, color)
 {
 }
예제 #8
0
 public virtual void paint(BikeColor color)
 {
 }
예제 #9
0
 public Vintage(IWheel wheel, BikeColor color)
     : base(wheel, color)
 {
 }
 public Downhill(BikeColor color, IWheel wheel)
     : base(color, wheel)
 {
 }
예제 #11
0
 public Touring(IWheel wheel, BikeColor color)
     : base(wheel, color)
 {
 }
예제 #12
0
 public virtual void Paint(BikeColor color)
 {
     this.ColorType = color;
 }
예제 #13
0
 public AbstractBike(IWheel wheel, BikeColor color)
 {
     this.Wheel = wheel;
     ColorType  = color;
 }
예제 #14
0
 public AbstractMoutainBike(IWheel wheel, BikeColor color)
     : base(wheel, color)
 {
 }
예제 #15
0
 public AbstractRoadBike(IWheel wheel, BikeColor color)
     : base(wheel, color)
 {
 }
예제 #16
0
 public Vintage(BikeColor color, IWheel wheel)
     : base(color, wheel)
 {
 }
예제 #17
0
 public DownHill(IWheel wheel, BikeColor color)
     : base(wheel, color)
 {
 }