Esempio n. 1
0
 public Car(float ballanse, CarType.carTypes carType)
 {
     //Random rand = new Random();
     this.CarId     = rnd.Next(0, 2000);
     this.Ballanse  = ballanse;
     this.TypeOfCar = carType;
 }
Esempio n. 2
0
 public Car(int carId, float ballanse, CarType.carTypes carType)
 {
     this.CarId     = carId;
     this.Ballanse  = ballanse;
     this.TypeOfCar = carType;
 }