public AzureTablesRepositorySpecificTests()
        {
            var connString = AzureTablesHelper.GetConnectionString();

            tableClientFactory = new TableClientFactory(connString);
            sut = new AzureTablesSagaRepository(tableClientFactory, new JsonNetSerialiser(), new DumbSagaFactory());
        }
示例#2
0
        public AzureTablesSagaRepositoryTests()
        {
            var connectionString = AzureTablesHelper.GetConnectionString();

            this.Sut = new AzureTablesSagaRepository(new TableClientFactory(connectionString), new JsonNetSerialiser(), new DumbSagaFactory());
        }