示例#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;
 }