Beispiel #1
0
 private void Handle(NewBookStored evnt)
 {
     _connection.Insert(evnt, "EventSourcing_Sample_BookStoreItem", _transaction);
 }
Beispiel #2
0
 private void Handle(NewBookStored evnt)
 {
     _bookStoreItems.Add(new BookStoreItem(evnt.BookId, Id, evnt.Count));
 }