| Contact | Donate | Imprint |
| BookingSeat | FlightModule | ZeppelinFlight |
| Property | Type | Entity | Reference | Module |
| (1) Booking | INT | BookingSeat | Booking | CustomerModule |
| (2) Currency | STRING | BookingSeat | ||
| (3) FlightSeat | INT | BookingSeat | FlightSeat | FlightModule |
| (4) Price | STRING | BookingSeat |
| Remote Method | Local Method | Module | HTTP-Method | References |
| (1) /bookingseat/booking/{id} | findAllBookingSeatOfBooking(id) | FlightModule | GET | Booking BookingSeat |
| (2) /bookingseat/flightseat/{id} | findAllBookingSeatOfFlightSeat(id) | FlightModule | GET | FlightSeat BookingSeat |
| (3) /bookingseat | insertBookingSeat(bookingseat) | FlightModule | POST | BookingSeat |
| (4) /bookingseat/{id} | deleteBookingSeatById(id) | FlightModule | DELETE | BookingSeat |
| (5) /bookingseat | findAllBookingSeat() | FlightModule | GET | BookingSeat |
| (6) /bookingseat/{id} | updateBookingSeatById(bookingseat) | FlightModule | PUT | BookingSeat |
| (7) /bookingseat/{id} | findBookingSeatById(id) | FlightModule | GET | BookingSeat |
Example:
final BookingSeat bookingseat = (BookingSeat) invokeModule(FLIGHT_MODULE + "/bookingseat/" + id, BookingSeat.class);| Contact | Donate | Imprint |