blob: 773fa986634860729d2682591eb3cc474cbb7885 (
plain)
1
2
3
4
5
6
7
8
9
|
@startuml
participant ":Cart" as Cart
participant ":CartItem" as CartItem
participant ":Product" as Product
[-> Cart : getPrice()
Cart -> CartItem : [*] getPrice()
CartItem -> Product : getPrice()
@enduml
|