I have an aggregate root 'Order', and it has a number of methods on it which internally set its 'Status' field:
- Submit
- Place On Hold
- Take Off Hold
- Confirm
- Cancel
- etc.
The available actions are dependent upon the current Status of the order (e.g. it can't be put on hold if it's already on hold). The problem is that I need to provide a query to tell the UI which commands are are available so I can hide the operations that would otherwise throw an InvalidOperationException.
How do I do this with minimal DRY violation?