I have one actor (admin), he can perform some actions over other user accounts such as creating the account, editing the account and deleting the account account. Should I do something like this:
-->UseCase:createAccount
/
o /
-|- /
| -----> UseCase:DeleteAccount
/ \ \
Admin \
\-->UseCase:EditAccount
Or should I do a single case?
o
-|-
| -----> UseCase:ManageAccounts
/ \
Admin
I'm asking this question because I feel that is harder to explain the successful case in the use case description if I have three actions in a single use case. Thanks for your time.