public RentedBike(Bike bike, DateTime startTime) { Bike = bike; StartRent = startTime; }
public void AddBike(Bike bike) { Bikes.Add(bike); }
public Rental(Bike bike, Person person, int hours) { Bike = bike; Person = person; Hours = hours; }