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