示例#1
0
 public void Handle(NoteCreated evnt)
 {
     _connection.Insert(evnt, "EventSourcing_Sample_Note", _transaction);
 }
示例#2
0
 public void Handle(NoteCreated evnt)
 {
     OnEventHappened(new TotalNoteCountChanged(Id, TotalNoteCount + 1));
 }