CQRS / ES

## CQRS Command Query Responsability Segregation
## Command A command is acting on the system (write)
## Query A query is requesting the system (read)
## Resp. Segregation The read and write operations are of different responsabilities
## Example ```javascript Command model != Query model ```
## ES Event Sourcing