CQRS and Event Sourcing in a Simple Shop Example in C#

In the following article, I present CQRS and Event Sourcing, where we have two separate databases – a write database (Event Store) and a read database.
The write database
In the write database (Even...