CQRS stands for “Command Query Responsibility Segregation”.
* CQRS
* MediatR
* CRUD Services
* Vertical Slice Architecture
- ListProductsQuery
- GetProductQuery
- CreateProductCommand
- UpdateProductCommand
- DeleteProductCommand
- List, Get
- Create, Update, Delete
A MediatR behaviour is used for logging of all requests.