iOSGeek
iOSGeek

Reputation: 5587

Class diagram of category and sub-category

I have a simple relationship between product and category I came up with this diagram:

enter image description here

I want to be sure that the diagram has a correct cardinality, especially category to category relation.

Upvotes: 2

Views: 2795

Answers (1)

qwerty_so
qwerty_so

Reputation: 36313

Almost correct.

enter image description here

Use roles to clearly identify parent/sub-category along with their multiplicities. The hollow diamond makes it a shared aggregation which means the sub-category lives independent of its parent (else you would use a filled diamond).

Upvotes: 8

Related Questions