Ejemplo n.º 1
0
        public SqlEventsStore(IAmAnEventBus bus, IGetDataAccessConfiguration dataAccessConfiguration)
        {
            _bus = bus;
            _dataAccessConfiguration = dataAccessConfiguration;

            _serializerSettings = new JsonSerializerSettings
            {
                TypeNameHandling = TypeNameHandling.Auto
            };
        }
Ejemplo n.º 2
0
 public InMemoryEventStore(IAmAnEventBus eventBus)
 {
     _eventBus = eventBus;
 }