Ejemplo n.º 1
0
        protected string _eventStoreTableName; // Used so it can be overridden for tests

        public AzureTableSnapshotStore(
            IAzureTableService tableService,
            IDomainEntityTypeBuilder domainEntityTypeBuilder)
        {
            _tableService            = tableService;
            _domainEntityTypeBuilder = domainEntityTypeBuilder;
            _eventStoreTableName     = EVENT_STORE_TABLE_NAME;
        }
 public ScheduledMessageRepository(
     IAzureTableService tableService)
 {
     _tableService = tableService;
 }
Ejemplo n.º 3
0
 public TestableAzureTableEventStore(IAzureTableService tableService) : base(tableService, new DomainEntityTypeBuilder())
 {
 }
Ejemplo n.º 4
0
 public SagaStateRepository(
     IAzureTableService tableService)
 {
     _tableService = tableService;
 }