Use Case Diagram Ecommerce
Use Case Diagram Ecommerce
rankdir=TB size=10
Client [shape=actor]
Admin [shape=actor]
"Payment System" [shape=actor]
"Browse Products" [shape=ellipse]
"Search for a Product" [shape=ellipse]
"View Product Details" [shape=ellipse]
"Add to Cart" [shape=ellipse]
"Remove from Cart" [shape=ellipse]
"Place an Order" [shape=ellipse]
"Register/Login" [shape=ellipse]
"Manage Orders" [shape=ellipse]
"Manage Products" [shape=ellipse]
"Manage Users" [shape=ellipse]
"Process Payment" [shape=ellipse]
Client -> "Browse Products"
Client -> "Search for a Product"
Client -> "View Product Details"
Client -> "Add to Cart"
Client -> "Remove from Cart"
Client -> "Place an Order"
Client -> "Register/Login"
Admin -> "Manage Orders"
Admin -> "Manage Products"
Admin -> "Manage Users"
"Payment System" -> "Process Payment"
"Place an Order" -> "Process Payment" [constraint=false]
}