Example #1
0
 public int Get(MotorFuelType fuelType)
 {
     return(factors[fuelType]);
 }
Example #2
0
 public Car(string licensePlate, MotorFuelType fuelType)
 {
     this.licensePlate = licensePlate;
     this.fuelType     = fuelType;
 }
 public string Get(MotorFuelType fuelType)
 {
     return(descriptions[fuelType]);
 }