public bool CanFitInSpot(ParkingSpot spot) { return(SpotVehicleFitCalculator.CanFit(spot, this)); }
// only checks size (not if more than one is needed) public bool CanFitVehicle(Vehicle v) { return(SpotVehicleFitCalculator.CanFit(this, v)); }