Ejemplo n.º 1
0
 public PassengerTrain(ILoco <V8DieselEngine> locomotive, PassengerBlock carriageBlock)
     : base(locomotive, carriageBlock)
 {
 }
Ejemplo n.º 2
0
 public CargoTrain(ILoco <V8DieselEngine> locomotive, CarriageBlock <CargoVag> carriageBlock)
     : base(locomotive, carriageBlock)
 {
 }
Ejemplo n.º 3
0
 public Train(ILoco <V8DieselEngine> locomotive, CarriageBlock <T> carriageBlock)
 {
     this.locomotive = locomotive;
     this.carriages  = carriageBlock;
 }