Пример #1
0
 public LocalEventStore(
     IEventTypeLookupStrategy eventTypeLookupStrategy,
     CommandContext commandContext
     )
 {
     _eventTypeLookupStrategy = eventTypeLookupStrategy;
     _commandContext          = commandContext;
 }
Пример #2
0
 public LocalEventStore(
     LiteDatabase db,
     IEventTypeLookupStrategy eventTypeLookupStrategy,
     CommandContext commandContext
     )
 {
     this._db = db;
     _eventTypeLookupStrategy = eventTypeLookupStrategy;
     _commandContext          = commandContext;
 }