| | 4 | |
| | 5 | = Ентитети |
| | 6 | Entity: Customer |
| | 7 | |
| | 8 | Description: Represents a customer who can make reservations. |
| | 9 | Primary Key: None specified in the XML; assumed to be an ID or similar field. |
| | 10 | Attributes: Not explicitly detailed in the XML file. |
| | 11 | Entity: Restaurant |
| | 12 | |
| | 13 | Description: Represents a restaurant, which contains menus and tables. |
| | 14 | Primary Key: None specified; assumed to have an identifier such as RestaurantID. |
| | 15 | Attributes: Not explicitly detailed. |
| | 16 | Entity: Menu |
| | 17 | |
| | 18 | Description: Represents the menu associated with a restaurant. |
| | 19 | Primary Key: None specified; assumed to have an identifier such as MenuID. |
| | 20 | Attributes: Not explicitly detailed. |
| | 21 | Entity: Table |
| | 22 | |
| | 23 | Description: Represents a table in a restaurant that can be reserved. |
| | 24 | Primary Key: None specified; assumed to have an identifier such as TableID. |
| | 25 | Attributes: Not explicitly detailed. |
| | 26 | Entity: Reservation |
| | 27 | |
| | 28 | Description: Represents a reservation made by a customer. |
| | 29 | Primary Key: None specified; assumed to have an identifier such as ReservationID. |
| | 30 | Attributes: Not explicitly detailed. |