Changes between Version 5 and Version 6 of konceptualenDizajn


Ignore:
Timestamp:
12/16/24 15:41:17 (4 weeks ago)
Author:
213209
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • konceptualenDizajn

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