Пример #1
0
def listOfInactiveRooms():
    return list(getRoomsByStatus(CONST.inactive_status))
Пример #2
0
def listOfRoomsCurrentlyUnoccupied():
    return list(getRoomsByStatus(CONST.ready_status))
Пример #3
0
def listOfRoomsCurrentlyUnclean():
    return list(getRoomsByStatus(CONST.unclean_status))
Пример #4
0
def listOfRoomsCurrentlyOccupied():
    return list(getRoomsByStatus(CONST.occupied_status))