Ejemplo n.º 1
0
 public CVehicle(GPS gps, double price, int yearProduction)
 {
     GPS            = gps;
     Price          = price;
     YearProduction = yearProduction;
 }
Ejemplo n.º 2
0
 public CPlane(GPS gps, double price, int yearProduction, string height, int countPassenger) : base(gps, price, yearProduction)
 {
     Height         = height;
     CountPassenger = countPassenger;
 }
Ejemplo n.º 3
0
 public CCar(GPS gps, double price, int yearProduction) : base(gps, price, yearProduction)
 {
 }
Ejemplo n.º 4
0
 public CShip(GPS gps, double price, int yearProduction, int countPassenger, string homePort) : base(gps, price, yearProduction)
 {
     CountPassenger = countPassenger;
     HomePort       = homePort;
 }