Shopping cart UML
Shopping cart
classDiagram
class Item {
-itemId
+isRestricted()
}
class Customer {
-name
+getAddress()
}
class Address {
-country
-state
}
Customer "1" *-- "1" Address : composition
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
Shopping cart
classDiagram
class Item {
-itemId
+isRestricted()
}
class Customer {
-name
+getAddress()
}
class Address {
-country
-state
}
Customer "1" *-- "1" Address : composition