Changes between Version 6 and Version 7 of konceptualenDizajn


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

--

Legend:

Unmodified
Added
Removed
Modified
  • konceptualenDizajn

    v6 v7  
    1 == ER Дијаграм
     1= ER Дијаграм
    22
    33[[Image(er2.png)]]
    44
    5 = Ентитети
    6 Entity: Customer
     5== Ентитети
     6
     7'''Entity: Customer'''
    78
    89Description: Represents a customer who can make reservations.
    910Primary Key: None specified in the XML; assumed to be an ID or similar field.
    1011Attributes: Not explicitly detailed in the XML file.
    11 Entity: Restaurant
     12
     13'''Entity: Restaurant'''
    1214
    1315Description: Represents a restaurant, which contains menus and tables.
    1416Primary Key: None specified; assumed to have an identifier such as RestaurantID.
    1517Attributes: Not explicitly detailed.
    16 Entity: Menu
     18
     19'''Entity: Menu'''
    1720
    1821Description: Represents the menu associated with a restaurant.
    1922Primary Key: None specified; assumed to have an identifier such as MenuID.
    2023Attributes: Not explicitly detailed.
    21 Entity: Table
     24'''Entity: Table'''
    2225
    2326Description: Represents a table in a restaurant that can be reserved.
    2427Primary Key: None specified; assumed to have an identifier such as TableID.
    2528Attributes: Not explicitly detailed.
    26 Entity: Reservation
     29
     30'''Entity: Reservation'''
    2731
    2832Description: Represents a reservation made by a customer.