You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The project has adopted a CQRS pattern using the Mediatr library. We have discussed ([read discussion](https://github.com/HTBox/allReady/issues/1262)) the naming for these components and agreed that we will *not* suffix them with "Async".
12
+
13
+
**Commands:**
14
+
15
+
A command message should end with "Command" and descibe the action that is intended. e.g.
16
+
17
+
- EditCampaignCommand
18
+
- DeleteTaskCommand
19
+
20
+
The handlers should match the command message name with the suffix of "Handler". e.g.
21
+
22
+
- EditCampaignCommandHandler
23
+
- DeleteTaskCommandHandler
24
+
25
+
**Queries:**
26
+
27
+
A query message should end with "Query" and describe the data it returns. e.g.
28
+
29
+
- EventSummaryQuery
30
+
- TaskDetailQuery
31
+
32
+
The handlers should match the query message name with the suffix of "Handler". e.g.
0 commit comments