def getNextSlotPrice(self, slots, slotsPrices): return getNextSlotPrice(slots, slotsPrices)
def getVehicleSlotsPrice(self, currentSlotsCount): return getNextSlotPrice(currentSlotsCount, self.slotsPrices)
def getVehicleSlotsPrice(self, currentSlotsCount): """ @param currentSlotsCount: current vehicle slots count @return: new vehicle slot price """ return getNextSlotPrice(currentSlotsCount, self.slotsPrices)