public Car(CarType type, decimal balance) { Id = Guid.NewGuid(); CarType = type; Balance = balance; }
public Car(double balance, CarType carType) { this.id = count++; this.balance = balance; this.carType = carType; }