Skip to content

Instantly share code, notes, and snippets.

@flomosq
Last active June 27, 2024 19:30
Demystifying CQRS: A Practical Approach – Simple CQRS (2)
# CustomerWriteService
# void MakeCustomerPreferred(CustomerId)
# void ChangeCustomerLocale(CustomerId, NewLocale)
# void CreateCustomer(Customer)
# void EditCustomerDetails(CustomerDetails)
# CustomerReadService
# Customer GetCustomer(CustomerId)
# CustomerSet GetCustomersWithName(Name)
# CustomerSet GetPreferredCustomers()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment