public Car(EGasType gasType, int price)
 {
     GasType = gasType;
     Price   = price;
 }
Beispiel #2
0
 public Car(EGasType gasType, int price)
 {
     mGasType = gasType;
     SetPrice(price);
 }