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