Ejemplo n.º 1
0
 public LocalEventStore(
     IEventTypeLookupStrategy eventTypeLookupStrategy,
     CommandContext commandContext
     )
 {
     _eventTypeLookupStrategy = eventTypeLookupStrategy;
     _commandContext          = commandContext;
 }
Ejemplo n.º 2
0
 public LocalEventStore(
     LiteDatabase db,
     IEventTypeLookupStrategy eventTypeLookupStrategy,
     CommandContext commandContext
     )
 {
     this._db = db;
     _eventTypeLookupStrategy = eventTypeLookupStrategy;
     _commandContext          = commandContext;
 }