コード例 #1
0
        public SqlEventsStore(IAmAnEventBus bus, IGetDataAccessConfiguration dataAccessConfiguration)
        {
            _bus = bus;
            _dataAccessConfiguration = dataAccessConfiguration;

            _serializerSettings = new JsonSerializerSettings
            {
                TypeNameHandling = TypeNameHandling.Auto
            };
        }
コード例 #2
0
 public InMemoryEventStore(IAmAnEventBus eventBus)
 {
     _eventBus = eventBus;
 }