Changes between Version 3 and Version 4 of konceptualenDizajnLogickiFizicki


Ignore:
Timestamp:
12/24/24 14:10:49 (3 weeks ago)
Author:
213209
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • konceptualenDizajnLogickiFizicki

    v3 v4  
    88Customer('''__customerId__''', registrationDate, firstName, lastName, email, password, role, phone, address, membershipLevel)
    99
    10 Reservation('''__reservationId__''', paymentStatus, partySize, reservationDateTime, specialRequests, status, checkInTime, checkOutTime)
     10Reservation('''__reservationId__''', customerId*(Customer), paymentId*(Payment), menuId*(Menu), tableId*(Table), paymentStatus, partySize, reservationDateTime, specialRequests, status, checkInTime, checkOutTime)
    1111
    12 Payment('''__paymentId__''', '''__customerId__'''*, '''__reservationId__'''*, totalPrice, date)
     12Payment('''__paymentId__''', '''__customerId__'''*(Customer), totalPrice, date, reservationNumber)
     13
     14Menu('''__menuId__''', restaurantId*(Restaurant),itemName, category, price, description, dietaryInformation)
     15
     16Restaurant('''__restaurantId__''', name, address, cuisineType, phone, operatingHours, website, socialMediaLinks, rating)
     17
     18Table('''__tableId__''', restaurantId*(Restaurant), capacity, location, isSmokingArea, description)