Reservation process flow in a hospitality system.
sequenceDiagram
participant Guest
participant Frontend
participant BookingEngine
participant Inventory
Guest->>Frontend: Search Dates
Frontend->>BookingEngine: Check Availability
BookingEngine->>Inventory: Query Rooms
Inventory-->>BookingEngine: Available Rooms
BookingEngine-->>Frontend: Show Options
Guest->>Frontend: Select Room
Frontend->>BookingEngine: Reserve Room
BookingEngine->>Inventory: Lock RoomSequence