├── .gitignore ├── Dockerfile ├── LICENSE ├── ProductContext.sln ├── ProductContext.v3.ncrunchsolution ├── README.md ├── deployments ├── couchbase │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ └── values.yaml ├── eventstore │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ └── service.yaml │ └── values.yaml └── productcontext │ ├── .DS_Store │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ ├── NOTES.txt │ ├── _helpers.tpl │ ├── deployment.yaml │ ├── ingress.yaml │ └── service.yaml │ └── values.yaml ├── docker-compose.yml ├── docker └── couchbase │ ├── Dockerfile │ ├── by_productId.ddoc │ └── configure.sh ├── lib ├── AggregateSource │ ├── .gitattributes │ ├── .gitignore │ ├── .nuget │ │ ├── NuGet.Config │ │ └── NuGet.targets │ ├── LICENSE.txt │ ├── README.md │ ├── docs │ │ ├── backlog.md │ │ └── images │ │ │ └── TestSpecificationStatechart.png │ ├── lib │ │ ├── geteventstore_integration.proj │ │ └── packages.config │ ├── linuxbuild │ │ ├── mono-build.proj │ │ ├── mono-info.proj │ │ └── mono-version.proj │ ├── src │ │ ├── .nuget │ │ │ └── packages.config │ │ ├── Core │ │ │ ├── AggregateSource.Content.ExplicitRouting │ │ │ │ ├── AggregateRootEntity.cs │ │ │ │ ├── AggregateRootEntityTests.cs │ │ │ │ ├── AggregateSource.Content.ExplicitRouting.csproj │ │ │ │ ├── Entity.cs │ │ │ │ ├── EntityTests.cs │ │ │ │ └── GlobalSuppressions.cs │ │ │ ├── AggregateSource.ContentExplicitStateExplicitRouting │ │ │ │ ├── AggregateRootEntity.cs │ │ │ │ ├── AggregateRootEntityTests.cs │ │ │ │ ├── AggregateSource.Content.ExplicitStateExplicitRouting.csproj │ │ │ │ ├── Entity.cs │ │ │ │ ├── EntityState.cs │ │ │ │ ├── EntityStateTests.cs │ │ │ │ └── EntityTests.cs │ │ │ ├── AggregateSource.Tests │ │ │ │ ├── AggregateBuilderTests.cs │ │ │ │ ├── AggregateNotFoundExceptionTests.cs │ │ │ │ ├── AggregateRootEntityStub.cs │ │ │ │ ├── AggregateSource.Tests.csproj │ │ │ │ ├── AggregateSourceExceptionTests.cs │ │ │ │ ├── AggregateStubs.cs │ │ │ │ ├── AggregateTests.cs │ │ │ │ ├── ConcurrentUnitOfWorkTests.cs │ │ │ │ ├── EventRecorderTests.cs │ │ │ │ ├── FactTests.cs │ │ │ │ ├── GlobalSuppressions.cs │ │ │ │ ├── InstanceEventRouterTests.cs │ │ │ │ ├── OptionalTests.cs │ │ │ │ ├── StaticEventRouterTests.cs │ │ │ │ ├── TestFactBuilder.cs │ │ │ │ └── UnitOfWorkTests.cs │ │ │ ├── AggregateSource.sln │ │ │ ├── AggregateSource.sln.DotSettings │ │ │ └── AggregateSource │ │ │ │ ├── Aggregate.cs │ │ │ │ ├── AggregateBuilder.cs │ │ │ │ ├── AggregateNotFoundException.cs │ │ │ │ ├── AggregateSource.csproj │ │ │ │ ├── AggregateSourceException.cs │ │ │ │ ├── ConcurrentUnitOfWork.cs │ │ │ │ ├── EventRecorder.cs │ │ │ │ ├── Fact.cs │ │ │ │ ├── GlobalSuppressions.cs │ │ │ │ ├── IAggregateChangeTracker.cs │ │ │ │ ├── IAggregateInitializer.cs │ │ │ │ ├── IAggregateRootEntity.cs │ │ │ │ ├── IAsyncRepository.cs │ │ │ │ ├── IConfigureInstanceEventRouter.cs │ │ │ │ ├── IConfigureStaticEventRouter.cs │ │ │ │ ├── IInstanceEventRouter.cs │ │ │ │ ├── IRepository.cs │ │ │ │ ├── ISnapshotable.cs │ │ │ │ ├── IStaticEventRouter.cs │ │ │ │ ├── InstanceEventRouter.cs │ │ │ │ ├── Optional.cs │ │ │ │ ├── StaticEventRouter.cs │ │ │ │ └── UnitOfWork.cs │ │ ├── EventStore.NetCore │ │ │ ├── AggregateSource.EventStore.Tests │ │ │ │ ├── AggregateSource.EventStore.Tests.csproj │ │ │ │ ├── Builders │ │ │ │ │ ├── EventReaderConfigurationBuilder.cs │ │ │ │ │ ├── SnapshotBuilder.cs │ │ │ │ │ └── SnapshotReaderConfigurationBuilder.cs │ │ │ │ ├── EventReaderConfigurationTests.cs │ │ │ │ ├── Resolvers │ │ │ │ │ ├── FixedStreamUserCredentialsResolverTests.cs │ │ │ │ │ ├── NoStreamUserCredentialsResolverTests.cs │ │ │ │ │ └── PassThroughStreamNameResolverTests.cs │ │ │ │ ├── Snapshots │ │ │ │ │ ├── SnapshotReaderConfigurationTests.cs │ │ │ │ │ └── SnapshotTests.cs │ │ │ │ └── Stubs │ │ │ │ │ ├── StubbedEventDeserializer.cs │ │ │ │ │ ├── StubbedSnapshotDeserializer.cs │ │ │ │ │ ├── StubbedStreamNameResolver.cs │ │ │ │ │ └── StubbedStreamUserCredentialsResolver.cs │ │ │ ├── AggregateSource.EventStore.sln │ │ │ ├── AggregateSource.EventStore.sln.DotSettings │ │ │ ├── AggregateSource.EventStore.v3.ncrunchsolution │ │ │ └── AggregateSource.EventStore │ │ │ │ ├── AggregateSource.EventStore.csproj │ │ │ │ ├── AsyncRepository.cs │ │ │ │ ├── EventReaderConfiguration.cs │ │ │ │ ├── IEventDeserializer.cs │ │ │ │ ├── IStreamNameResolver.cs │ │ │ │ ├── IStreamUserCredentialsResolver.cs │ │ │ │ ├── Repository.cs │ │ │ │ ├── Resolvers │ │ │ │ ├── FixedStreamUserCredentialsResolver.cs │ │ │ │ ├── NoStreamUserCredentialsResolver.cs │ │ │ │ └── PassThroughStreamNameResolver.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ ├── Resources.resx │ │ │ │ ├── SliceSize.cs │ │ │ │ └── Snapshots │ │ │ │ ├── AsyncSnapshotReader.cs │ │ │ │ ├── AsyncSnapshotableRepository.cs │ │ │ │ ├── IAsyncSnapshotReader.cs │ │ │ │ ├── ISnapshotDeserializer.cs │ │ │ │ ├── ISnapshotReader.cs │ │ │ │ ├── Snapshot.cs │ │ │ │ ├── SnapshotReader.cs │ │ │ │ ├── SnapshotReaderConfiguration.cs │ │ │ │ └── SnapshotableRepository.cs │ │ ├── EventStore │ │ │ ├── AggregateSource.EventStore.IntegratedTests │ │ │ │ ├── AggregateSource.EventStore.IntegratedTests.csproj │ │ │ │ ├── AsyncRepositoryTests.cs │ │ │ │ ├── Framework │ │ │ │ │ ├── AggregateRootEntityStub.cs │ │ │ │ │ ├── AssemblyAttribute.cs │ │ │ │ │ ├── Catch.cs │ │ │ │ │ ├── EmbeddedEventStore.cs │ │ │ │ │ ├── EventDeserializer.cs │ │ │ │ │ ├── EventReaderConfigurationFactory.cs │ │ │ │ │ ├── EventStoreConnectionExtensions.cs │ │ │ │ │ ├── EventStoreIntegrationAttribute.cs │ │ │ │ │ ├── EventStub.cs │ │ │ │ │ ├── IBinaryDeserializer.cs │ │ │ │ │ ├── IBinarySerializer.cs │ │ │ │ │ ├── RepositoryScenarioBuilder.cs │ │ │ │ │ └── Snapshots │ │ │ │ │ │ ├── AsyncSnapshotReaderFactory.cs │ │ │ │ │ │ ├── SnapshotDeserializer.cs │ │ │ │ │ │ ├── SnapshotReaderConfigurationFactory.cs │ │ │ │ │ │ ├── SnapshotReaderFactory.cs │ │ │ │ │ │ ├── SnapshotStateStub.cs │ │ │ │ │ │ └── SnapshotStreamNameResolver.cs │ │ │ │ ├── Model.cs │ │ │ │ ├── NLog.config │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── RepositoryTests.cs │ │ │ │ ├── Snapshots │ │ │ │ │ ├── AsyncSnapshotReaderTests.cs │ │ │ │ │ ├── AsyncSnapshotableRepositoryTests.cs │ │ │ │ │ ├── Framework │ │ │ │ │ │ └── SnapshotStoreReadConfigurationFactory.cs │ │ │ │ │ ├── SnapshotReaderTests.cs │ │ │ │ │ ├── SnapshotableAggregateRootEntityStub.cs │ │ │ │ │ └── SnapshotableRepositoryTests.cs │ │ │ │ ├── app.config │ │ │ │ └── packages.config │ │ │ ├── AggregateSource.EventStore.Tests │ │ │ │ ├── AggregateSource.EventStore.Tests.csproj │ │ │ │ ├── Builders │ │ │ │ │ ├── EventReaderConfigurationBuilder.cs │ │ │ │ │ ├── SnapshotBuilder.cs │ │ │ │ │ └── SnapshotReaderConfigurationBuilder.cs │ │ │ │ ├── EventReaderConfigurationTests.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Resolvers │ │ │ │ │ ├── FixedStreamUserCredentialsResolverTests.cs │ │ │ │ │ ├── NoStreamUserCredentialsResolverTests.cs │ │ │ │ │ └── PassThroughStreamNameResolverTests.cs │ │ │ │ ├── Snapshots │ │ │ │ │ ├── SnapshotReaderConfigurationTests.cs │ │ │ │ │ └── SnapshotTests.cs │ │ │ │ ├── Stubs │ │ │ │ │ ├── StubbedEventDeserializer.cs │ │ │ │ │ ├── StubbedSnapshotDeserializer.cs │ │ │ │ │ ├── StubbedStreamNameResolver.cs │ │ │ │ │ └── StubbedStreamUserCredentialsResolver.cs │ │ │ │ └── packages.config │ │ │ ├── AggregateSource.EventStore.sln │ │ │ ├── AggregateSource.EventStore.sln.DotSettings │ │ │ └── AggregateSource.EventStore │ │ │ │ ├── AggregateSource.EventStore.csproj │ │ │ │ ├── AsyncRepository.cs │ │ │ │ ├── EventReaderConfiguration.cs │ │ │ │ ├── IEventDeserializer.cs │ │ │ │ ├── IStreamNameResolver.cs │ │ │ │ ├── IStreamUserCredentialsResolver.cs │ │ │ │ ├── Properties │ │ │ │ ├── AssemblyInfo.cs │ │ │ │ ├── Resources.Designer.cs │ │ │ │ └── Resources.resx │ │ │ │ ├── Repository.cs │ │ │ │ ├── Resolvers │ │ │ │ ├── FixedStreamUserCredentialsResolver.cs │ │ │ │ ├── NoStreamUserCredentialsResolver.cs │ │ │ │ └── PassThroughStreamNameResolver.cs │ │ │ │ ├── SliceSize.cs │ │ │ │ ├── Snapshots │ │ │ │ ├── AsyncSnapshotReader.cs │ │ │ │ ├── AsyncSnapshotableRepository.cs │ │ │ │ ├── IAsyncSnapshotReader.cs │ │ │ │ ├── ISnapshotDeserializer.cs │ │ │ │ ├── ISnapshotReader.cs │ │ │ │ ├── Snapshot.cs │ │ │ │ ├── SnapshotReader.cs │ │ │ │ ├── SnapshotReaderConfiguration.cs │ │ │ │ └── SnapshotableRepository.cs │ │ │ │ └── packages.config │ │ ├── NEventStore │ │ │ ├── .nuget │ │ │ │ └── packages.config │ │ │ ├── AggregateSource.NEventStore.Tests │ │ │ │ ├── AggregateSource.NEventStore.Tests.csproj │ │ │ │ ├── Framework │ │ │ │ │ ├── AggregateRootEntityStub.cs │ │ │ │ │ ├── Catch.cs │ │ │ │ │ ├── EventStub.cs │ │ │ │ │ ├── RepositoryScenarioBuilder.cs │ │ │ │ │ └── Snapshots │ │ │ │ │ │ ├── SnapshotStateStub.cs │ │ │ │ │ │ └── SnapshotableAggregateRootEntityStub.cs │ │ │ │ ├── Model.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── RepositoryTests.cs │ │ │ │ ├── Snapshots │ │ │ │ │ └── SnapshotableRepositoryTests.cs │ │ │ │ └── packages.config │ │ │ ├── AggregateSource.NEventStore.sln │ │ │ ├── AggregateSource.NEventStore.sln.DotSettings │ │ │ └── AggregateSource.NEventStore │ │ │ │ ├── AggregateSource.NEventStore.csproj │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Repository.cs │ │ │ │ ├── Snapshots │ │ │ │ └── SnapshotableRepository.cs │ │ │ │ └── packages.config │ │ ├── Reactive │ │ │ ├── AggregateSource.Reactive.Tests │ │ │ │ ├── AggregateSource.Reactive.Tests.csproj │ │ │ │ ├── ObservableAggregateRootEntityTests.cs │ │ │ │ ├── Properties │ │ │ │ │ └── AssemblyInfo.cs │ │ │ │ └── packages.config │ │ │ ├── AggregateSource.Reactive.sln │ │ │ ├── AggregateSource.Reactive.sln.DotSettings │ │ │ └── AggregateSource.Reactive │ │ │ │ ├── AggregateSource.Reactive.csproj │ │ │ │ ├── IObservableAggregateRootEntity.cs │ │ │ │ ├── ObservableAggregateRootEntity.cs │ │ │ │ └── Properties │ │ │ │ └── AssemblyInfo.cs │ │ ├── Recipes │ │ │ └── EventStoreShopping │ │ │ │ ├── EventStoreShopping.sln │ │ │ │ └── EventStoreShopping │ │ │ │ ├── AggregateRootEntity.cs │ │ │ │ ├── App.config │ │ │ │ ├── Entity.cs │ │ │ │ ├── EventStoreShopping.csproj │ │ │ │ ├── Messaging │ │ │ │ ├── Commands │ │ │ │ │ ├── AddItemToCart.cs │ │ │ │ │ ├── Checkout.cs │ │ │ │ │ ├── DecrementItemInCart.cs │ │ │ │ │ ├── IncrementItemInCart.cs │ │ │ │ │ ├── RemoveItemFromCart.cs │ │ │ │ │ └── StartShopping.cs │ │ │ │ └── Events │ │ │ │ │ ├── AddedItemToCart.cs │ │ │ │ │ ├── CheckedoutCart.cs │ │ │ │ │ ├── DecrementedItemCountInCart.cs │ │ │ │ │ ├── IncrementedItemCountInCart.cs │ │ │ │ │ ├── RemovedItemFromCart.cs │ │ │ │ │ └── StartedShopping.cs │ │ │ │ ├── Program.cs │ │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ │ ├── Shopping │ │ │ │ ├── ItemId.cs │ │ │ │ ├── ShoppingCart.cs │ │ │ │ ├── ShoppingCartAlreadyCheckedOutException.cs │ │ │ │ ├── ShoppingCartDoesNotContainItemException.cs │ │ │ │ └── ShoppingCartId.cs │ │ │ │ └── packages.config │ │ ├── SampleSource │ │ │ ├── Properties │ │ │ │ └── AssemblyInfo.cs │ │ │ ├── SampleSource.csproj │ │ │ ├── SampleSource.sln │ │ │ ├── Testing │ │ │ │ ├── AggregateAsSystemUnderTest.cs │ │ │ │ └── UsingIdFromIEvent.cs │ │ │ ├── UsingDomainEvents.cs │ │ │ ├── UsingEntities.cs │ │ │ ├── UsingObjectInheritance.cs │ │ │ └── packages.config │ │ ├── SharedAssemblyInfo.cs │ │ ├── SharedVersionInfo.cs │ │ ├── SqlStreamStore │ │ │ ├── AggregateSource.SqlStreamStore.Tests │ │ │ │ ├── AggregateSource.SqlStreamStore.Tests.csproj │ │ │ │ ├── Framework │ │ │ │ │ ├── AggregateRootEntityStub.cs │ │ │ │ │ ├── AsyncRepositoryTests.InMemoryStore.cs │ │ │ │ │ ├── Catch.cs │ │ │ │ │ ├── EventDeserializer.cs │ │ │ │ │ ├── EventStub.cs │ │ │ │ │ ├── LoggingHelper.cs │ │ │ │ │ ├── Model.cs │ │ │ │ │ ├── RepositoryScenarioBuilder.cs │ │ │ │ │ ├── SqlStreamStoreAcceptanceTestFixture.cs │ │ │ │ │ ├── SqlStreamStoreInMemoryStreamStoreFixture.cs │ │ │ │ │ ├── SqlStreamStoreMsSqlStreamStoreFixture.cs │ │ │ │ │ └── TypeExtensions.cs │ │ │ │ └── SqlServer │ │ │ │ │ └── AsyncRepositoryTests.SqlServer.cs │ │ │ ├── AggregateSource.SqlStreamStore.sln │ │ │ └── AggregateSource.SqlStreamStore │ │ │ │ ├── AggregateSource.SqlStreamStore.csproj │ │ │ │ ├── AsyncRepository.cs │ │ │ │ └── IEventDeserializer.cs │ │ └── Testing │ │ │ ├── AggregateSource.Testing.NUnit │ │ │ ├── AggregateSource.Testing.NUnit.csproj │ │ │ ├── ExtensionsForCommandScenario.cs │ │ │ ├── ExtensionsForConstructorScenario.cs │ │ │ ├── ExtensionsForFactoryScenario.cs │ │ │ └── ExtensionsForQueryScenario.cs │ │ │ ├── AggregateSource.Testing.Tests │ │ │ ├── AggregateRootEntityStub.cs │ │ │ ├── AggregateSource.Testing.Tests.csproj │ │ │ ├── CommandScenarioForTests.cs │ │ │ ├── Comparers │ │ │ │ ├── CompareNetObjectsBasedEventComparerTests.cs │ │ │ │ ├── CompareNetObjectsBasedExceptionComparerTests.cs │ │ │ │ ├── CompareNetObjectsBasedFactComparerTests.cs │ │ │ │ └── CompareNetObjectsBasedResultComparerTests.cs │ │ │ ├── ConstructorScenarioForTests.cs │ │ │ ├── EventCentricAggregateCommandTestRunnerTests.cs │ │ │ ├── EventCentricAggregateCommandTestSpecificationTests.cs │ │ │ ├── EventCentricAggregateConstructorTestRunnerTests.cs │ │ │ ├── EventCentricAggregateConstructorTestSpecificationTests.cs │ │ │ ├── EventCentricAggregateFactoryTestRunnerTests.cs │ │ │ ├── EventCentricAggregateFactoryTestSpecificationTests.cs │ │ │ ├── EventCentricTestSpecificationTests.cs │ │ │ ├── ExceptionCentricAggregateCommandTestRunnerTests.cs │ │ │ ├── ExceptionCentricAggregateCommandTestSpecificationTests.cs │ │ │ ├── ExceptionCentricAggregateConstructorTestRunnerTests.cs │ │ │ ├── ExceptionCentricAggregateConstructorTestSpecificationTests.cs │ │ │ ├── ExceptionCentricAggregateFactoryTestRunnerTests.cs │ │ │ ├── ExceptionCentricAggregateFactoryTestSpecificationTests.cs │ │ │ ├── ExceptionCentricAggregateQueryTestRunnerTests.cs │ │ │ ├── ExceptionCentricAggregateQueryTestSpecificationTests.cs │ │ │ ├── ExceptionCentricTestSpecificationTests.cs │ │ │ ├── FactoryScenarioForTests.cs │ │ │ ├── FactsBuilderTests.cs │ │ │ ├── Model.cs │ │ │ ├── NUnitExtensionsForCommandScenarioTests.cs │ │ │ ├── NUnitExtensionsForConstructorScenarioTests.cs │ │ │ ├── NUnitExtensionsForFactoryScenarioTests.cs │ │ │ ├── NUnitExtensionsForQueryScenarioTests.cs │ │ │ ├── QueryScenarioForTests.cs │ │ │ ├── ResultCentricAggregateQueryTestRunnerTests.cs │ │ │ ├── ResultCentricAggregateQueryTestSpecificationTests.cs │ │ │ ├── ScenarioGivenStateBuilderTests.cs │ │ │ ├── ScenarioTests.cs │ │ │ ├── ScenarioThenStateBuilderTests.cs │ │ │ ├── ScenarioThrowStateBuilderTests.cs │ │ │ ├── ScenarioWhenStateBuilderTests.cs │ │ │ ├── TestSpecificationDataPointFixture.cs │ │ │ └── TestSpecificationTextWriterTests.cs │ │ │ ├── AggregateSource.Testing.Xunit │ │ │ └── AggregateSource.Testing.Xunit.csproj │ │ │ ├── AggregateSource.Testing.sln │ │ │ ├── AggregateSource.Testing.sln.DotSettings │ │ │ └── AggregateSource.Testing │ │ │ ├── AggregateSource.Testing.csproj │ │ │ ├── Catch.cs │ │ │ ├── Command │ │ │ ├── AggregateCommandGivenNoneStateBuilder.cs │ │ │ ├── AggregateCommandGivenStateBuilder.cs │ │ │ ├── AggregateCommandThenNoneStateBuilder.cs │ │ │ ├── AggregateCommandThenStateBuilder.cs │ │ │ ├── AggregateCommandThrowStateBuilder.cs │ │ │ └── AggregateCommandWhenStateBuilder.cs │ │ │ ├── CommandScenarioFor.cs │ │ │ ├── Comparers │ │ │ ├── CompareNetObjectsBasedEventComparer.cs │ │ │ ├── CompareNetObjectsBasedExceptionComparer.cs │ │ │ ├── CompareNetObjectsBasedFactComparer.cs │ │ │ └── CompareNetObjectsBasedResultComparer.cs │ │ │ ├── Constructor │ │ │ ├── AggregateConstructorThenStateBuilder.cs │ │ │ └── AggregateConstructorThrowStateBuilder.cs │ │ │ ├── ConstructorScenarioFor.cs │ │ │ ├── EventCentricAggregateCommandTestResult.cs │ │ │ ├── EventCentricAggregateCommandTestRunner.cs │ │ │ ├── EventCentricAggregateCommandTestSpecification.cs │ │ │ ├── EventCentricAggregateConstructorTestResult.cs │ │ │ ├── EventCentricAggregateConstructorTestRunner.cs │ │ │ ├── EventCentricAggregateConstructorTestSpecification.cs │ │ │ ├── EventCentricAggregateFactoryTestResult.cs │ │ │ ├── EventCentricAggregateFactoryTestRunner.cs │ │ │ ├── EventCentricAggregateFactoryTestSpecification.cs │ │ │ ├── EventCentricAggregateQueryTestResult.cs │ │ │ ├── EventCentricTestResult.cs │ │ │ ├── EventCentricTestSpecification.cs │ │ │ ├── EventComparisonDifference.cs │ │ │ ├── ExceptionCentricAggregateCommandTestResult.cs │ │ │ ├── ExceptionCentricAggregateCommandTestRunner.cs │ │ │ ├── ExceptionCentricAggregateCommandTestSpecification.cs │ │ │ ├── ExceptionCentricAggregateConstructorTestResult.cs │ │ │ ├── ExceptionCentricAggregateConstructorTestRunner.cs │ │ │ ├── ExceptionCentricAggregateConstructorTestSpecification.cs │ │ │ ├── ExceptionCentricAggregateFactoryTestResult.cs │ │ │ ├── ExceptionCentricAggregateFactoryTestRunner.cs │ │ │ ├── ExceptionCentricAggregateFactoryTestSpecification.cs │ │ │ ├── ExceptionCentricAggregateQueryTestResult.cs │ │ │ ├── ExceptionCentricAggregateQueryTestRunner.cs │ │ │ ├── ExceptionCentricAggregateQueryTestSpecification.cs │ │ │ ├── ExceptionCentricTestResult.cs │ │ │ ├── ExceptionCentricTestSpecification.cs │ │ │ ├── ExceptionComparisonDifference.cs │ │ │ ├── FactComparisonDifference.cs │ │ │ ├── Factory │ │ │ ├── AggregateFactoryGivenNoneStateBuilder.cs │ │ │ ├── AggregateFactoryGivenStateBuilder.cs │ │ │ ├── AggregateFactoryThenNoneStateBuilder.cs │ │ │ ├── AggregateFactoryThenStateBuilder.cs │ │ │ ├── AggregateFactoryThrowStateBuilder.cs │ │ │ └── AggregateFactoryWhenStateBuilder.cs │ │ │ ├── FactoryScenarioFor.cs │ │ │ ├── FactsBuilder.cs │ │ │ ├── IAggregateCommandGivenNoneStateBuilder.cs │ │ │ ├── IAggregateCommandGivenStateBuilder.cs │ │ │ ├── IAggregateCommandInitialStateBuilder.cs │ │ │ ├── IAggregateCommandThenNoneStateBuilder.cs │ │ │ ├── IAggregateCommandThenStateBuilder.cs │ │ │ ├── IAggregateCommandThrowStateBuilder.cs │ │ │ ├── IAggregateCommandWhenStateBuilder.cs │ │ │ ├── IAggregateConstructorThenStateBuilder.cs │ │ │ ├── IAggregateConstructorThrowStateBuilder.cs │ │ │ ├── IAggregateConstructorWhenStateBuilder.cs │ │ │ ├── IAggregateFactoryGivenNoneStateBuilder.cs │ │ │ ├── IAggregateFactoryGivenStateBuilder.cs │ │ │ ├── IAggregateFactoryInitialStateBuilder.cs │ │ │ ├── IAggregateFactoryThenNoneStateBuilder.cs │ │ │ ├── IAggregateFactoryThenStateBuilder.cs │ │ │ ├── IAggregateFactoryThrowStateBuilder.cs │ │ │ ├── IAggregateFactoryWhenStateBuilder.cs │ │ │ ├── IAggregateQueryGivenNoneStateBuilder.cs │ │ │ ├── IAggregateQueryGivenStateBuilder.cs │ │ │ ├── IAggregateQueryInitialStateBuilder.cs │ │ │ ├── IAggregateQueryThenStateBuilder.cs │ │ │ ├── IAggregateQueryThrowStateBuilder.cs │ │ │ ├── IAggregateQueryWhenStateBuilder.cs │ │ │ ├── IEventCentricAggregateCommandTestRunner.cs │ │ │ ├── IEventCentricAggregateCommandTestSpecificationBuilder.cs │ │ │ ├── IEventCentricAggregateConstructorTestRunner.cs │ │ │ ├── IEventCentricAggregateConstructorTestSpecificationBuilder.cs │ │ │ ├── IEventCentricAggregateFactoryTestRunner.cs │ │ │ ├── IEventCentricAggregateFactoryTestSpecificationBuilder.cs │ │ │ ├── IEventCentricTestSpecificationBuilder.cs │ │ │ ├── IEventCentricTestSpecificationRunner.cs │ │ │ ├── IEventCentricTestSpecificationWriter.cs │ │ │ ├── IEventComparer.cs │ │ │ ├── IExceptionCentricAggregateCommandTestRunner.cs │ │ │ ├── IExceptionCentricAggregateCommandTestSpecificationBuilder.cs │ │ │ ├── IExceptionCentricAggregateConstructorTestRunner.cs │ │ │ ├── IExceptionCentricAggregateConstructorTestSpecificationBuilder.cs │ │ │ ├── IExceptionCentricAggregateFactoryTestRunner.cs │ │ │ ├── IExceptionCentricAggregateFactoryTestSpecificationBuilder.cs │ │ │ ├── IExceptionCentricAggregateQueryTestRunner.cs │ │ │ ├── IExceptionCentricAggregateQueryTestSpecificationBuilder.cs │ │ │ ├── IExceptionCentricTestSpecificationBuilder.cs │ │ │ ├── IExceptionCentricTestSpecificationRunner.cs │ │ │ ├── IExceptionCentricTestSpecificationWriter.cs │ │ │ ├── IExceptionComparer.cs │ │ │ ├── IFactComparer.cs │ │ │ ├── IResultCentricAggregateQueryTestRunner.cs │ │ │ ├── IResultCentricAggregateQueryTestSpecificationBuilder.cs │ │ │ ├── IResultComparer.cs │ │ │ ├── IScenarioGivenNoneStateBuilder.cs │ │ │ ├── IScenarioGivenStateBuilder.cs │ │ │ ├── IScenarioInitialStateBuilder.cs │ │ │ ├── IScenarioThenNoneStateBuilder.cs │ │ │ ├── IScenarioThenStateBuilder.cs │ │ │ ├── IScenarioThrowStateBuilder.cs │ │ │ ├── IScenarioWhenStateBuilder.cs │ │ │ ├── Query │ │ │ ├── AggregateQueryGivenNoneStateBuilder.cs │ │ │ ├── AggregateQueryGivenStateBuilder.cs │ │ │ ├── AggregateQueryThenStateBuilder.cs │ │ │ ├── AggregateQueryThrowStateBuilder.cs │ │ │ └── AggregateQueryWhenStateBuilder.cs │ │ │ ├── QueryScenarioFor.cs │ │ │ ├── ResultCentricAggregateQueryTestRunner.cs │ │ │ ├── ResultCentricAggregateQueryTestSpecification.cs │ │ │ ├── ResultComparisonDifference.cs │ │ │ ├── Scenario.cs │ │ │ ├── State.cs │ │ │ ├── TestResultState.cs │ │ │ ├── TestSpecificationBuilder.cs │ │ │ ├── TestSpecificationBuilderContext.cs │ │ │ ├── TestSpecificationTextWriter.cs │ │ │ └── WrappedEventComparerEqualityComparer.cs │ ├── win_run_me_first.bat │ ├── win_run_me_right_off_the.bat │ └── winbuild │ │ ├── TransformProjectToNET40.xslt │ │ ├── build.proj │ │ ├── ci.proj │ │ ├── info.proj │ │ ├── master_version.txt │ │ ├── nuget.proj │ │ ├── nuspec │ │ ├── AggregateSource.Content.ExplicitRouting.nuspec │ │ ├── AggregateSource.Content.ExplicitStateExplicitRouting.nuspec │ │ ├── AggregateSource.EventStore.nuspec │ │ ├── AggregateSource.NEventStore.nuspec │ │ ├── AggregateSource.Testing.NUnit.nuspec │ │ ├── AggregateSource.Testing.Xunit.nuspec │ │ ├── AggregateSource.Testing.nuspec │ │ └── AggregateSource.nuspec │ │ ├── packages.config │ │ ├── run_build.bat │ │ ├── run_cibuild.bat │ │ ├── run_me_first.proj │ │ ├── run_pack.bat │ │ ├── run_push.bat │ │ ├── run_test.bat │ │ ├── test.proj │ │ └── version.proj └── Value │ ├── .build │ ├── Build.proj │ └── Build.tasks │ ├── .gitignore │ ├── BackLog.md │ ├── ImplementationDetails.md │ ├── LICENSE │ ├── Readme.md │ ├── ReleaseNoteContentToBeInsertedWithinNuspecFile.txt │ ├── Value-icon.jpg │ ├── Value-small.jpg │ ├── Value.Net40 │ └── Value.Net40.csproj │ ├── Value.Net45 │ ├── Value.Net45.csproj │ └── Value.Net45.csproj.DotSettings │ ├── Value.Standard │ └── Value.Standard.csproj │ ├── Value.Tests │ ├── AmountTests.cs │ ├── DictionaryByValueTests.cs │ ├── Domain.Helpers.Tests.csproj.DotSettings │ ├── ListByValueTests.cs │ ├── Samples │ │ ├── Amount.cs │ │ ├── Card.cs │ │ ├── Currency.cs │ │ ├── ItemPrice.cs │ │ ├── ItemPriceWithBadImplementationForEqualityAndUnicity.cs │ │ ├── Suit.cs │ │ ├── ThreeCards.cs │ │ └── ThreeCardsBadlyImplementedAsValueType.cs │ ├── SetByValueTests.cs │ ├── Value.Tests.csproj │ ├── Value.Tests.csproj.DotSettings │ ├── ValueTypeTests.cs │ └── packages.config │ ├── Value.jpg │ ├── Value.nuspec │ ├── Value.sln │ ├── Value │ ├── DictionaryByValue.cs │ ├── EquatableByValue.cs │ ├── EquatableByValueWithoutOrder.cs │ ├── ListByValue.cs │ ├── SetByValue.cs │ ├── Value.Shared.projitems │ ├── Value.shproj │ └── ValueType.cs │ ├── Version.cs │ ├── appveyor.yml │ └── build.cmd ├── misc ├── folder.png ├── folder_structure.png └── model_eventstorming.png ├── src ├── ProductContext.Domain │ ├── Contracts │ │ ├── Commands.cs │ │ └── Enums.cs │ ├── Extensions │ │ └── ProductSnapshotExtensions.cs │ ├── ProductContext.Domain.csproj │ ├── Products │ │ ├── Events.cs │ │ ├── Product.cs │ │ ├── ProductCommandHandlers.cs │ │ ├── ProductContent.cs │ │ ├── ProductContentId.cs │ │ ├── ProductContentVariantValue.cs │ │ ├── ProductId.cs │ │ ├── ProductVariant.cs │ │ ├── ProductVariantId.cs │ │ ├── ProductVariantTypeValue.cs │ │ ├── Snapshots │ │ │ ├── ProductContentSnapshot.cs │ │ │ ├── ProductContentVariantValueSnapshot.cs │ │ │ ├── ProductSnapshot.cs │ │ │ ├── ProductVariantSnapshot.cs │ │ │ └── ProductVariantTypeValueSnapshot.cs │ │ ├── VariantTypeValue.cs │ │ └── VariantTypeValueId.cs │ └── Projections │ │ ├── ProductContentDocument.cs │ │ ├── ProductDocument.cs │ │ ├── ProductProjection.cs │ │ └── ProductVariantDocument.cs ├── ProductContext.Framework │ ├── App_Packages │ │ └── LibLog.4.2 │ │ │ └── LibLog.cs │ ├── CouchbaseCheckpointStore.cs │ ├── DefaultEventDeserializer.cs │ ├── DefaultSnapshotDeserializer.cs │ ├── Defaults.cs │ ├── Envelope.cs │ ├── EventMetadata.cs │ ├── EventstoreSnapshotter.cs │ ├── GetSnapshotStreamName.cs │ ├── GetStreamName.cs │ ├── ISnapshotableStreamNameResolver.cs │ ├── ISnapshotter.cs │ ├── Now.cs │ ├── ProductContext.Framework.csproj │ ├── ProjectionManager.cs │ ├── ProjectionManagerBuilder.cs │ ├── RepositoryExtensions.cs │ ├── SetProjectionPosition.cs │ ├── TypeExtensions.cs │ ├── TypedStreamNameResolver.cs │ └── WrongExpectedStreamVersionException.cs └── ProductContext.WebApi │ ├── Controllers │ └── ProductCommandsApi.cs │ ├── ProductContext.WebApi.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ ├── appsettings.Production.json │ ├── appsettings.Stage.json │ └── appsettings.json └── test ├── ProductContext.Domain.Tests ├── ProductContext.Domain.Tests.csproj ├── Scenarios │ └── ProductSpecs.cs └── XunitAssertionExtensions.cs ├── ProductContext.Framework.Tests ├── Helpers │ └── CollectionsExtensions.cs ├── ProductContext.Framework.Tests.csproj ├── TypeExtensionsTests.cs └── TypedStreamNameResolverTests.cs └── ProductContext.Integration.Tests ├── App_Packages └── LibLog.4.2 │ └── LibLog.cs ├── CouchbaseFixture.cs ├── DockerHelper.cs ├── EventStoreFixture.cs ├── ProductContext.Integration.Tests.csproj ├── ProductIntegrationTestBase.cs ├── ProductIntegrationTests.cs └── couchbaseintegration ├── Dockerfile └── configure-node.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/LICENSE -------------------------------------------------------------------------------- /ProductContext.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/ProductContext.sln -------------------------------------------------------------------------------- /ProductContext.v3.ncrunchsolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/ProductContext.v3.ncrunchsolution -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/README.md -------------------------------------------------------------------------------- /deployments/couchbase/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/couchbase/.helmignore -------------------------------------------------------------------------------- /deployments/couchbase/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/couchbase/Chart.yaml -------------------------------------------------------------------------------- /deployments/couchbase/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/couchbase/templates/NOTES.txt -------------------------------------------------------------------------------- /deployments/couchbase/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/couchbase/templates/_helpers.tpl -------------------------------------------------------------------------------- /deployments/couchbase/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/couchbase/templates/deployment.yaml -------------------------------------------------------------------------------- /deployments/couchbase/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/couchbase/templates/ingress.yaml -------------------------------------------------------------------------------- /deployments/couchbase/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/couchbase/templates/service.yaml -------------------------------------------------------------------------------- /deployments/couchbase/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/couchbase/values.yaml -------------------------------------------------------------------------------- /deployments/eventstore/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/eventstore/.helmignore -------------------------------------------------------------------------------- /deployments/eventstore/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/eventstore/Chart.yaml -------------------------------------------------------------------------------- /deployments/eventstore/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/eventstore/templates/NOTES.txt -------------------------------------------------------------------------------- /deployments/eventstore/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/eventstore/templates/_helpers.tpl -------------------------------------------------------------------------------- /deployments/eventstore/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/eventstore/templates/deployment.yaml -------------------------------------------------------------------------------- /deployments/eventstore/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/eventstore/templates/ingress.yaml -------------------------------------------------------------------------------- /deployments/eventstore/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/eventstore/templates/service.yaml -------------------------------------------------------------------------------- /deployments/eventstore/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/eventstore/values.yaml -------------------------------------------------------------------------------- /deployments/productcontext/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/productcontext/.DS_Store -------------------------------------------------------------------------------- /deployments/productcontext/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/productcontext/.helmignore -------------------------------------------------------------------------------- /deployments/productcontext/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/productcontext/Chart.yaml -------------------------------------------------------------------------------- /deployments/productcontext/templates/NOTES.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/productcontext/templates/NOTES.txt -------------------------------------------------------------------------------- /deployments/productcontext/templates/_helpers.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/productcontext/templates/_helpers.tpl -------------------------------------------------------------------------------- /deployments/productcontext/templates/deployment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/productcontext/templates/deployment.yaml -------------------------------------------------------------------------------- /deployments/productcontext/templates/ingress.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/productcontext/templates/ingress.yaml -------------------------------------------------------------------------------- /deployments/productcontext/templates/service.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/productcontext/templates/service.yaml -------------------------------------------------------------------------------- /deployments/productcontext/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/deployments/productcontext/values.yaml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/couchbase/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/docker/couchbase/Dockerfile -------------------------------------------------------------------------------- /docker/couchbase/by_productId.ddoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/docker/couchbase/by_productId.ddoc -------------------------------------------------------------------------------- /docker/couchbase/configure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/docker/couchbase/configure.sh -------------------------------------------------------------------------------- /lib/AggregateSource/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/.gitattributes -------------------------------------------------------------------------------- /lib/AggregateSource/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/.gitignore -------------------------------------------------------------------------------- /lib/AggregateSource/.nuget/NuGet.Config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/.nuget/NuGet.Config -------------------------------------------------------------------------------- /lib/AggregateSource/.nuget/NuGet.targets: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/.nuget/NuGet.targets -------------------------------------------------------------------------------- /lib/AggregateSource/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/LICENSE.txt -------------------------------------------------------------------------------- /lib/AggregateSource/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/README.md -------------------------------------------------------------------------------- /lib/AggregateSource/docs/backlog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/docs/backlog.md -------------------------------------------------------------------------------- /lib/AggregateSource/docs/images/TestSpecificationStatechart.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/docs/images/TestSpecificationStatechart.png -------------------------------------------------------------------------------- /lib/AggregateSource/lib/geteventstore_integration.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/lib/geteventstore_integration.proj -------------------------------------------------------------------------------- /lib/AggregateSource/lib/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/lib/packages.config -------------------------------------------------------------------------------- /lib/AggregateSource/linuxbuild/mono-build.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/linuxbuild/mono-build.proj -------------------------------------------------------------------------------- /lib/AggregateSource/linuxbuild/mono-info.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/linuxbuild/mono-info.proj -------------------------------------------------------------------------------- /lib/AggregateSource/linuxbuild/mono-version.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/linuxbuild/mono-version.proj -------------------------------------------------------------------------------- /lib/AggregateSource/src/.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/.nuget/packages.config -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Content.ExplicitRouting/AggregateRootEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Content.ExplicitRouting/AggregateRootEntity.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Content.ExplicitRouting/AggregateRootEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Content.ExplicitRouting/AggregateRootEntityTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Content.ExplicitRouting/AggregateSource.Content.ExplicitRouting.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Content.ExplicitRouting/AggregateSource.Content.ExplicitRouting.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Content.ExplicitRouting/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Content.ExplicitRouting/Entity.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Content.ExplicitRouting/EntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Content.ExplicitRouting/EntityTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Content.ExplicitRouting/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Content.ExplicitRouting/GlobalSuppressions.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.ContentExplicitStateExplicitRouting/AggregateRootEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.ContentExplicitStateExplicitRouting/AggregateRootEntity.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.ContentExplicitStateExplicitRouting/AggregateRootEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.ContentExplicitStateExplicitRouting/AggregateRootEntityTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.ContentExplicitStateExplicitRouting/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.ContentExplicitStateExplicitRouting/Entity.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.ContentExplicitStateExplicitRouting/EntityState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.ContentExplicitStateExplicitRouting/EntityState.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.ContentExplicitStateExplicitRouting/EntityStateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.ContentExplicitStateExplicitRouting/EntityStateTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.ContentExplicitStateExplicitRouting/EntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.ContentExplicitStateExplicitRouting/EntityTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/AggregateBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/AggregateBuilderTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/AggregateNotFoundExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/AggregateNotFoundExceptionTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/AggregateRootEntityStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/AggregateRootEntityStub.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/AggregateSource.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/AggregateSource.Tests.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/AggregateSourceExceptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/AggregateSourceExceptionTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/AggregateStubs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/AggregateStubs.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/AggregateTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/AggregateTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/ConcurrentUnitOfWorkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/ConcurrentUnitOfWorkTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/EventRecorderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/EventRecorderTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/FactTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/FactTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/GlobalSuppressions.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/InstanceEventRouterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/InstanceEventRouterTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/OptionalTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/OptionalTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/StaticEventRouterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/StaticEventRouterTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/TestFactBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/TestFactBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.Tests/UnitOfWorkTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.Tests/UnitOfWorkTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.sln -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource.sln.DotSettings -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/Aggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/Aggregate.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/AggregateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/AggregateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/AggregateNotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/AggregateNotFoundException.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/AggregateSource.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/AggregateSource.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/AggregateSourceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/AggregateSourceException.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/ConcurrentUnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/ConcurrentUnitOfWork.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/EventRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/EventRecorder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/Fact.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/Fact.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/GlobalSuppressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/GlobalSuppressions.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/IAggregateChangeTracker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/IAggregateChangeTracker.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/IAggregateInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/IAggregateInitializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/IAggregateRootEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/IAggregateRootEntity.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/IAsyncRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/IAsyncRepository.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/IConfigureInstanceEventRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/IConfigureInstanceEventRouter.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/IConfigureStaticEventRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/IConfigureStaticEventRouter.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/IInstanceEventRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/IInstanceEventRouter.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/IRepository.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/ISnapshotable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/ISnapshotable.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/IStaticEventRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/IStaticEventRouter.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/InstanceEventRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/InstanceEventRouter.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/Optional.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/Optional.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/StaticEventRouter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/StaticEventRouter.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Core/AggregateSource/UnitOfWork.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Core/AggregateSource/UnitOfWork.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/AggregateSource.EventStore.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/AggregateSource.EventStore.Tests.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Builders/EventReaderConfigurationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Builders/EventReaderConfigurationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Builders/SnapshotBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Builders/SnapshotBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Builders/SnapshotReaderConfigurationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Builders/SnapshotReaderConfigurationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/EventReaderConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/EventReaderConfigurationTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Resolvers/NoStreamUserCredentialsResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Resolvers/NoStreamUserCredentialsResolverTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Resolvers/PassThroughStreamNameResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Resolvers/PassThroughStreamNameResolverTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Snapshots/SnapshotReaderConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Snapshots/SnapshotReaderConfigurationTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Snapshots/SnapshotTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Snapshots/SnapshotTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Stubs/StubbedEventDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Stubs/StubbedEventDeserializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Stubs/StubbedSnapshotDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Stubs/StubbedSnapshotDeserializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Stubs/StubbedStreamNameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Stubs/StubbedStreamNameResolver.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Stubs/StubbedStreamUserCredentialsResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.Tests/Stubs/StubbedStreamUserCredentialsResolver.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.sln -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.sln.DotSettings -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.v3.ncrunchsolution: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore.v3.ncrunchsolution -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/AggregateSource.EventStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/AggregateSource.EventStore.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/AsyncRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/AsyncRepository.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/EventReaderConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/EventReaderConfiguration.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/IEventDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/IEventDeserializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/IStreamNameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/IStreamNameResolver.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/IStreamUserCredentialsResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/IStreamUserCredentialsResolver.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Repository.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Resolvers/FixedStreamUserCredentialsResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Resolvers/FixedStreamUserCredentialsResolver.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Resolvers/NoStreamUserCredentialsResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Resolvers/NoStreamUserCredentialsResolver.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Resolvers/PassThroughStreamNameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Resolvers/PassThroughStreamNameResolver.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Resources.Designer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Resources.resx -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/SliceSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/SliceSize.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/AsyncSnapshotReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/AsyncSnapshotReader.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/AsyncSnapshotableRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/AsyncSnapshotableRepository.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/IAsyncSnapshotReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/IAsyncSnapshotReader.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/ISnapshotDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/ISnapshotDeserializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/ISnapshotReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/ISnapshotReader.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/Snapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/Snapshot.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/SnapshotReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/SnapshotReader.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/SnapshotReaderConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/SnapshotReaderConfiguration.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/SnapshotableRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore.NetCore/AggregateSource.EventStore/Snapshots/SnapshotableRepository.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/AsyncRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/AsyncRepositoryTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/AggregateRootEntityStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/AggregateRootEntityStub.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/AssemblyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/AssemblyAttribute.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/Catch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/Catch.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/EmbeddedEventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/EmbeddedEventStore.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/EventDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/EventDeserializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/EventReaderConfigurationFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/EventReaderConfigurationFactory.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/EventStoreConnectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/EventStoreConnectionExtensions.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/EventStoreIntegrationAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/EventStoreIntegrationAttribute.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/EventStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/EventStub.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/IBinaryDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/IBinaryDeserializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/IBinarySerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/IBinarySerializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/RepositoryScenarioBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/RepositoryScenarioBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/Snapshots/SnapshotDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/Snapshots/SnapshotDeserializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/Snapshots/SnapshotReaderFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/Snapshots/SnapshotReaderFactory.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/Snapshots/SnapshotStateStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Framework/Snapshots/SnapshotStateStub.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Model.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/NLog.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/NLog.config -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/RepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/RepositoryTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Snapshots/AsyncSnapshotReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Snapshots/AsyncSnapshotReaderTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Snapshots/AsyncSnapshotableRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Snapshots/AsyncSnapshotableRepositoryTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Snapshots/SnapshotReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Snapshots/SnapshotReaderTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Snapshots/SnapshotableRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/Snapshots/SnapshotableRepositoryTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/app.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/app.config -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.IntegratedTests/packages.config -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/AggregateSource.EventStore.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/AggregateSource.EventStore.Tests.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Builders/EventReaderConfigurationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Builders/EventReaderConfigurationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Builders/SnapshotBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Builders/SnapshotBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Builders/SnapshotReaderConfigurationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Builders/SnapshotReaderConfigurationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/EventReaderConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/EventReaderConfigurationTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Resolvers/FixedStreamUserCredentialsResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Resolvers/FixedStreamUserCredentialsResolverTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Resolvers/NoStreamUserCredentialsResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Resolvers/NoStreamUserCredentialsResolverTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Resolvers/PassThroughStreamNameResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Resolvers/PassThroughStreamNameResolverTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Snapshots/SnapshotReaderConfigurationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Snapshots/SnapshotReaderConfigurationTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Snapshots/SnapshotTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Snapshots/SnapshotTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Stubs/StubbedEventDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Stubs/StubbedEventDeserializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Stubs/StubbedSnapshotDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Stubs/StubbedSnapshotDeserializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Stubs/StubbedStreamNameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Stubs/StubbedStreamNameResolver.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Stubs/StubbedStreamUserCredentialsResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/Stubs/StubbedStreamUserCredentialsResolver.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.Tests/packages.config -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.sln -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore.sln.DotSettings -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/AggregateSource.EventStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/AggregateSource.EventStore.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/AsyncRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/AsyncRepository.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/EventReaderConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/EventReaderConfiguration.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/IEventDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/IEventDeserializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/IStreamNameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/IStreamNameResolver.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/IStreamUserCredentialsResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/IStreamUserCredentialsResolver.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Properties/Resources.resx -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Repository.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Resolvers/FixedStreamUserCredentialsResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Resolvers/FixedStreamUserCredentialsResolver.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Resolvers/NoStreamUserCredentialsResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Resolvers/NoStreamUserCredentialsResolver.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Resolvers/PassThroughStreamNameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Resolvers/PassThroughStreamNameResolver.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/SliceSize.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/SliceSize.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/AsyncSnapshotReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/AsyncSnapshotReader.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/AsyncSnapshotableRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/AsyncSnapshotableRepository.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/IAsyncSnapshotReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/IAsyncSnapshotReader.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/ISnapshotDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/ISnapshotDeserializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/ISnapshotReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/ISnapshotReader.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/Snapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/Snapshot.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/SnapshotReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/SnapshotReader.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/SnapshotReaderConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/SnapshotReaderConfiguration.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/SnapshotableRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/Snapshots/SnapshotableRepository.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/EventStore/AggregateSource.EventStore/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/EventStore/AggregateSource.EventStore/packages.config -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/.nuget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/.nuget/packages.config -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/AggregateSource.NEventStore.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/AggregateSource.NEventStore.Tests.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Framework/AggregateRootEntityStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Framework/AggregateRootEntityStub.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Framework/Catch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Framework/Catch.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Framework/EventStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Framework/EventStub.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Framework/RepositoryScenarioBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Framework/RepositoryScenarioBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Framework/Snapshots/SnapshotStateStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Framework/Snapshots/SnapshotStateStub.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Model.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/RepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/RepositoryTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Snapshots/SnapshotableRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/Snapshots/SnapshotableRepositoryTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.Tests/packages.config -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.sln -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore.sln.DotSettings -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore/AggregateSource.NEventStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore/AggregateSource.NEventStore.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore/Repository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore/Repository.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore/Snapshots/SnapshotableRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore/Snapshots/SnapshotableRepository.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/NEventStore/AggregateSource.NEventStore/packages.config -------------------------------------------------------------------------------- /lib/AggregateSource/src/Reactive/AggregateSource.Reactive.Tests/AggregateSource.Reactive.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Reactive/AggregateSource.Reactive.Tests/AggregateSource.Reactive.Tests.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/Reactive/AggregateSource.Reactive.Tests/ObservableAggregateRootEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Reactive/AggregateSource.Reactive.Tests/ObservableAggregateRootEntityTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Reactive/AggregateSource.Reactive.Tests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Reactive/AggregateSource.Reactive.Tests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Reactive/AggregateSource.Reactive.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Reactive/AggregateSource.Reactive.Tests/packages.config -------------------------------------------------------------------------------- /lib/AggregateSource/src/Reactive/AggregateSource.Reactive.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Reactive/AggregateSource.Reactive.sln -------------------------------------------------------------------------------- /lib/AggregateSource/src/Reactive/AggregateSource.Reactive.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Reactive/AggregateSource.Reactive.sln.DotSettings -------------------------------------------------------------------------------- /lib/AggregateSource/src/Reactive/AggregateSource.Reactive/AggregateSource.Reactive.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Reactive/AggregateSource.Reactive/AggregateSource.Reactive.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/Reactive/AggregateSource.Reactive/IObservableAggregateRootEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Reactive/AggregateSource.Reactive/IObservableAggregateRootEntity.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Reactive/AggregateSource.Reactive/ObservableAggregateRootEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Reactive/AggregateSource.Reactive/ObservableAggregateRootEntity.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Reactive/AggregateSource.Reactive/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Reactive/AggregateSource.Reactive/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping.sln -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/AggregateRootEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/AggregateRootEntity.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/App.config -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Entity.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/EventStoreShopping.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/EventStoreShopping.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Commands/AddItemToCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Commands/AddItemToCart.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Commands/Checkout.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Commands/Checkout.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Commands/DecrementItemInCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Commands/DecrementItemInCart.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Commands/IncrementItemInCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Commands/IncrementItemInCart.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Commands/RemoveItemFromCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Commands/RemoveItemFromCart.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Commands/StartShopping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Commands/StartShopping.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Events/AddedItemToCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Events/AddedItemToCart.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Events/CheckedoutCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Events/CheckedoutCart.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Events/DecrementedItemCountInCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Events/DecrementedItemCountInCart.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Events/IncrementedItemCountInCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Events/IncrementedItemCountInCart.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Events/RemovedItemFromCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Events/RemovedItemFromCart.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Events/StartedShopping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Messaging/Events/StartedShopping.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Program.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Shopping/ItemId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Shopping/ItemId.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Shopping/ShoppingCart.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Shopping/ShoppingCart.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Shopping/ShoppingCartAlreadyCheckedOutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Shopping/ShoppingCartAlreadyCheckedOutException.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Shopping/ShoppingCartDoesNotContainItemException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Shopping/ShoppingCartDoesNotContainItemException.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Shopping/ShoppingCartId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/Shopping/ShoppingCartId.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Recipes/EventStoreShopping/EventStoreShopping/packages.config -------------------------------------------------------------------------------- /lib/AggregateSource/src/SampleSource/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SampleSource/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SampleSource/SampleSource.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SampleSource/SampleSource.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/SampleSource/SampleSource.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SampleSource/SampleSource.sln -------------------------------------------------------------------------------- /lib/AggregateSource/src/SampleSource/Testing/AggregateAsSystemUnderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SampleSource/Testing/AggregateAsSystemUnderTest.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SampleSource/Testing/UsingIdFromIEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SampleSource/Testing/UsingIdFromIEvent.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SampleSource/UsingDomainEvents.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SampleSource/UsingDomainEvents.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SampleSource/UsingEntities.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SampleSource/UsingEntities.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SampleSource/UsingObjectInheritance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SampleSource/UsingObjectInheritance.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SampleSource/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SampleSource/packages.config -------------------------------------------------------------------------------- /lib/AggregateSource/src/SharedAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SharedAssemblyInfo.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SharedVersionInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SharedVersionInfo.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/AggregateSource.SqlStreamStore.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/AggregateSource.SqlStreamStore.Tests.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/AggregateRootEntityStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/AggregateRootEntityStub.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/AsyncRepositoryTests.InMemoryStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/AsyncRepositoryTests.InMemoryStore.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/Catch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/Catch.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/EventDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/EventDeserializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/EventStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/EventStub.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/LoggingHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/LoggingHelper.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/Model.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/RepositoryScenarioBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/RepositoryScenarioBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/SqlStreamStoreAcceptanceTestFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/SqlStreamStoreAcceptanceTestFixture.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/Framework/TypeExtensions.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/SqlServer/AsyncRepositoryTests.SqlServer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.Tests/SqlServer/AsyncRepositoryTests.SqlServer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore.sln -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore/AggregateSource.SqlStreamStore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore/AggregateSource.SqlStreamStore.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore/AsyncRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore/AsyncRepository.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore/IEventDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/SqlStreamStore/AggregateSource.SqlStreamStore/IEventDeserializer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.NUnit/AggregateSource.Testing.NUnit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.NUnit/AggregateSource.Testing.NUnit.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.NUnit/ExtensionsForCommandScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.NUnit/ExtensionsForCommandScenario.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.NUnit/ExtensionsForConstructorScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.NUnit/ExtensionsForConstructorScenario.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.NUnit/ExtensionsForFactoryScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.NUnit/ExtensionsForFactoryScenario.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.NUnit/ExtensionsForQueryScenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.NUnit/ExtensionsForQueryScenario.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/AggregateRootEntityStub.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/AggregateRootEntityStub.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/AggregateSource.Testing.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/AggregateSource.Testing.Tests.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/CommandScenarioForTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/CommandScenarioForTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/Comparers/CompareNetObjectsBasedEventComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/Comparers/CompareNetObjectsBasedEventComparerTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/Comparers/CompareNetObjectsBasedExceptionComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/Comparers/CompareNetObjectsBasedExceptionComparerTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/Comparers/CompareNetObjectsBasedFactComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/Comparers/CompareNetObjectsBasedFactComparerTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/Comparers/CompareNetObjectsBasedResultComparerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/Comparers/CompareNetObjectsBasedResultComparerTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ConstructorScenarioForTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ConstructorScenarioForTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/EventCentricAggregateCommandTestRunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/EventCentricAggregateCommandTestRunnerTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/EventCentricAggregateCommandTestSpecificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/EventCentricAggregateCommandTestSpecificationTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/EventCentricAggregateConstructorTestRunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/EventCentricAggregateConstructorTestRunnerTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/EventCentricAggregateConstructorTestSpecificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/EventCentricAggregateConstructorTestSpecificationTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/EventCentricAggregateFactoryTestRunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/EventCentricAggregateFactoryTestRunnerTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/EventCentricAggregateFactoryTestSpecificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/EventCentricAggregateFactoryTestSpecificationTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/EventCentricTestSpecificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/EventCentricTestSpecificationTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateCommandTestRunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateCommandTestRunnerTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateCommandTestSpecificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateCommandTestSpecificationTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateConstructorTestRunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateConstructorTestRunnerTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateConstructorTestSpecificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateConstructorTestSpecificationTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateFactoryTestRunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateFactoryTestRunnerTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateFactoryTestSpecificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateFactoryTestSpecificationTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateQueryTestRunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateQueryTestRunnerTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateQueryTestSpecificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricAggregateQueryTestSpecificationTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricTestSpecificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ExceptionCentricTestSpecificationTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/FactoryScenarioForTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/FactoryScenarioForTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/FactsBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/FactsBuilderTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/Model.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/Model.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/NUnitExtensionsForCommandScenarioTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/NUnitExtensionsForCommandScenarioTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/NUnitExtensionsForConstructorScenarioTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/NUnitExtensionsForConstructorScenarioTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/NUnitExtensionsForFactoryScenarioTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/NUnitExtensionsForFactoryScenarioTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/NUnitExtensionsForQueryScenarioTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/NUnitExtensionsForQueryScenarioTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/QueryScenarioForTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/QueryScenarioForTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ResultCentricAggregateQueryTestRunnerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ResultCentricAggregateQueryTestRunnerTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ResultCentricAggregateQueryTestSpecificationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ResultCentricAggregateQueryTestSpecificationTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ScenarioGivenStateBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ScenarioGivenStateBuilderTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ScenarioTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ScenarioTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ScenarioThenStateBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ScenarioThenStateBuilderTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ScenarioThrowStateBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ScenarioThrowStateBuilderTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ScenarioWhenStateBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/ScenarioWhenStateBuilderTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/TestSpecificationDataPointFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/TestSpecificationDataPointFixture.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/TestSpecificationTextWriterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Tests/TestSpecificationTextWriterTests.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.Xunit/AggregateSource.Testing.Xunit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.Xunit/AggregateSource.Testing.Xunit.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.sln -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing.sln.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing.sln.DotSettings -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/AggregateSource.Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/AggregateSource.Testing.csproj -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Catch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Catch.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Command/AggregateCommandGivenNoneStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Command/AggregateCommandGivenNoneStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Command/AggregateCommandGivenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Command/AggregateCommandGivenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Command/AggregateCommandThenNoneStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Command/AggregateCommandThenNoneStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Command/AggregateCommandThenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Command/AggregateCommandThenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Command/AggregateCommandThrowStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Command/AggregateCommandThrowStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Command/AggregateCommandWhenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Command/AggregateCommandWhenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/CommandScenarioFor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/CommandScenarioFor.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Comparers/CompareNetObjectsBasedEventComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Comparers/CompareNetObjectsBasedEventComparer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Comparers/CompareNetObjectsBasedExceptionComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Comparers/CompareNetObjectsBasedExceptionComparer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Comparers/CompareNetObjectsBasedFactComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Comparers/CompareNetObjectsBasedFactComparer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Comparers/CompareNetObjectsBasedResultComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Comparers/CompareNetObjectsBasedResultComparer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Constructor/AggregateConstructorThenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Constructor/AggregateConstructorThenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Constructor/AggregateConstructorThrowStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Constructor/AggregateConstructorThrowStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ConstructorScenarioFor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ConstructorScenarioFor.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateCommandTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateCommandTestResult.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateCommandTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateCommandTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateCommandTestSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateCommandTestSpecification.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateConstructorTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateConstructorTestResult.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateConstructorTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateConstructorTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateConstructorTestSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateConstructorTestSpecification.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateFactoryTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateFactoryTestResult.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateFactoryTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateFactoryTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateFactoryTestSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateFactoryTestSpecification.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateQueryTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricAggregateQueryTestResult.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricTestResult.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricTestSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/EventCentricTestSpecification.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/EventComparisonDifference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/EventComparisonDifference.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateCommandTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateCommandTestResult.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateCommandTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateCommandTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateCommandTestSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateCommandTestSpecification.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateConstructorTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateConstructorTestResult.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateConstructorTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateConstructorTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateConstructorTestSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateConstructorTestSpecification.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateFactoryTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateFactoryTestResult.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateFactoryTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateFactoryTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateFactoryTestSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateFactoryTestSpecification.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateQueryTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateQueryTestResult.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateQueryTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateQueryTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateQueryTestSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricAggregateQueryTestSpecification.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricTestResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricTestResult.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricTestSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionCentricTestSpecification.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionComparisonDifference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ExceptionComparisonDifference.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/FactComparisonDifference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/FactComparisonDifference.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Factory/AggregateFactoryGivenNoneStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Factory/AggregateFactoryGivenNoneStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Factory/AggregateFactoryGivenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Factory/AggregateFactoryGivenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Factory/AggregateFactoryThenNoneStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Factory/AggregateFactoryThenNoneStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Factory/AggregateFactoryThenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Factory/AggregateFactoryThenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Factory/AggregateFactoryThrowStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Factory/AggregateFactoryThrowStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Factory/AggregateFactoryWhenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Factory/AggregateFactoryWhenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/FactoryScenarioFor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/FactoryScenarioFor.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/FactsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/FactsBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateCommandGivenNoneStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateCommandGivenNoneStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateCommandGivenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateCommandGivenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateCommandInitialStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateCommandInitialStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateCommandThenNoneStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateCommandThenNoneStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateCommandThenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateCommandThenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateCommandThrowStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateCommandThrowStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateCommandWhenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateCommandWhenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateConstructorThenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateConstructorThenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateConstructorThrowStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateConstructorThrowStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateConstructorWhenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateConstructorWhenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateFactoryGivenNoneStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateFactoryGivenNoneStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateFactoryGivenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateFactoryGivenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateFactoryInitialStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateFactoryInitialStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateFactoryThenNoneStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateFactoryThenNoneStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateFactoryThenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateFactoryThenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateFactoryThrowStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateFactoryThrowStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateFactoryWhenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateFactoryWhenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateQueryGivenNoneStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateQueryGivenNoneStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateQueryGivenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateQueryGivenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateQueryInitialStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateQueryInitialStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateQueryThenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateQueryThenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateQueryThrowStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateQueryThrowStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateQueryWhenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IAggregateQueryWhenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricAggregateCommandTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricAggregateCommandTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricAggregateCommandTestSpecificationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricAggregateCommandTestSpecificationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricAggregateConstructorTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricAggregateConstructorTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricAggregateConstructorTestSpecificationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricAggregateConstructorTestSpecificationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricAggregateFactoryTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricAggregateFactoryTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricAggregateFactoryTestSpecificationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricAggregateFactoryTestSpecificationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricTestSpecificationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricTestSpecificationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricTestSpecificationRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricTestSpecificationRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricTestSpecificationWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventCentricTestSpecificationWriter.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IEventComparer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateCommandTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateCommandTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateCommandTestSpecificationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateCommandTestSpecificationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateConstructorTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateConstructorTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateConstructorTestSpecificationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateConstructorTestSpecificationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateFactoryTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateFactoryTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateFactoryTestSpecificationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateFactoryTestSpecificationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateQueryTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateQueryTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateQueryTestSpecificationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricAggregateQueryTestSpecificationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricTestSpecificationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricTestSpecificationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricTestSpecificationRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricTestSpecificationRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricTestSpecificationWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionCentricTestSpecificationWriter.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IExceptionComparer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IFactComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IFactComparer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IResultCentricAggregateQueryTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IResultCentricAggregateQueryTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IResultCentricAggregateQueryTestSpecificationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IResultCentricAggregateQueryTestSpecificationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IResultComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IResultComparer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IScenarioGivenNoneStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IScenarioGivenNoneStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IScenarioGivenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IScenarioGivenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IScenarioInitialStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IScenarioInitialStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IScenarioThenNoneStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IScenarioThenNoneStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IScenarioThenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IScenarioThenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IScenarioThrowStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IScenarioThrowStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/IScenarioWhenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/IScenarioWhenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Query/AggregateQueryGivenNoneStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Query/AggregateQueryGivenNoneStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Query/AggregateQueryGivenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Query/AggregateQueryGivenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Query/AggregateQueryThenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Query/AggregateQueryThenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Query/AggregateQueryThrowStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Query/AggregateQueryThrowStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Query/AggregateQueryWhenStateBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Query/AggregateQueryWhenStateBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/QueryScenarioFor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/QueryScenarioFor.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ResultCentricAggregateQueryTestRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ResultCentricAggregateQueryTestRunner.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ResultCentricAggregateQueryTestSpecification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ResultCentricAggregateQueryTestSpecification.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/ResultComparisonDifference.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/ResultComparisonDifference.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/Scenario.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/Scenario.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/State.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/State.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/TestResultState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/TestResultState.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/TestSpecificationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/TestSpecificationBuilder.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/TestSpecificationBuilderContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/TestSpecificationBuilderContext.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/TestSpecificationTextWriter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/TestSpecificationTextWriter.cs -------------------------------------------------------------------------------- /lib/AggregateSource/src/Testing/AggregateSource.Testing/WrappedEventComparerEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/src/Testing/AggregateSource.Testing/WrappedEventComparerEqualityComparer.cs -------------------------------------------------------------------------------- /lib/AggregateSource/win_run_me_first.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/win_run_me_first.bat -------------------------------------------------------------------------------- /lib/AggregateSource/win_run_me_right_off_the.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/win_run_me_right_off_the.bat -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/TransformProjectToNET40.xslt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/TransformProjectToNET40.xslt -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/build.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/build.proj -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/ci.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/ci.proj -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/info.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/info.proj -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/master_version.txt: -------------------------------------------------------------------------------- 1 | 0.0.308.0 -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/nuget.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/nuget.proj -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/nuspec/AggregateSource.Content.ExplicitRouting.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/nuspec/AggregateSource.Content.ExplicitRouting.nuspec -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/nuspec/AggregateSource.Content.ExplicitStateExplicitRouting.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/nuspec/AggregateSource.Content.ExplicitStateExplicitRouting.nuspec -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/nuspec/AggregateSource.EventStore.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/nuspec/AggregateSource.EventStore.nuspec -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/nuspec/AggregateSource.NEventStore.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/nuspec/AggregateSource.NEventStore.nuspec -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/nuspec/AggregateSource.Testing.NUnit.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/nuspec/AggregateSource.Testing.NUnit.nuspec -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/nuspec/AggregateSource.Testing.Xunit.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/nuspec/AggregateSource.Testing.Xunit.nuspec -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/nuspec/AggregateSource.Testing.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/nuspec/AggregateSource.Testing.nuspec -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/nuspec/AggregateSource.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/nuspec/AggregateSource.nuspec -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/packages.config -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/run_build.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/run_build.bat -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/run_cibuild.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/run_cibuild.bat -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/run_me_first.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/run_me_first.proj -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/run_pack.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/run_pack.bat -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/run_push.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/run_push.bat -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/run_test.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/run_test.bat -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/test.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/test.proj -------------------------------------------------------------------------------- /lib/AggregateSource/winbuild/version.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/AggregateSource/winbuild/version.proj -------------------------------------------------------------------------------- /lib/Value/.build/Build.proj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/.build/Build.proj -------------------------------------------------------------------------------- /lib/Value/.build/Build.tasks: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/.build/Build.tasks -------------------------------------------------------------------------------- /lib/Value/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/.gitignore -------------------------------------------------------------------------------- /lib/Value/BackLog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/BackLog.md -------------------------------------------------------------------------------- /lib/Value/ImplementationDetails.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/ImplementationDetails.md -------------------------------------------------------------------------------- /lib/Value/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/LICENSE -------------------------------------------------------------------------------- /lib/Value/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Readme.md -------------------------------------------------------------------------------- /lib/Value/ReleaseNoteContentToBeInsertedWithinNuspecFile.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/ReleaseNoteContentToBeInsertedWithinNuspecFile.txt -------------------------------------------------------------------------------- /lib/Value/Value-icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value-icon.jpg -------------------------------------------------------------------------------- /lib/Value/Value-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value-small.jpg -------------------------------------------------------------------------------- /lib/Value/Value.Net40/Value.Net40.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Net40/Value.Net40.csproj -------------------------------------------------------------------------------- /lib/Value/Value.Net45/Value.Net45.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Net45/Value.Net45.csproj -------------------------------------------------------------------------------- /lib/Value/Value.Net45/Value.Net45.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Net45/Value.Net45.csproj.DotSettings -------------------------------------------------------------------------------- /lib/Value/Value.Standard/Value.Standard.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Standard/Value.Standard.csproj -------------------------------------------------------------------------------- /lib/Value/Value.Tests/AmountTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/AmountTests.cs -------------------------------------------------------------------------------- /lib/Value/Value.Tests/DictionaryByValueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/DictionaryByValueTests.cs -------------------------------------------------------------------------------- /lib/Value/Value.Tests/Domain.Helpers.Tests.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/Domain.Helpers.Tests.csproj.DotSettings -------------------------------------------------------------------------------- /lib/Value/Value.Tests/ListByValueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/ListByValueTests.cs -------------------------------------------------------------------------------- /lib/Value/Value.Tests/Samples/Amount.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/Samples/Amount.cs -------------------------------------------------------------------------------- /lib/Value/Value.Tests/Samples/Card.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/Samples/Card.cs -------------------------------------------------------------------------------- /lib/Value/Value.Tests/Samples/Currency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/Samples/Currency.cs -------------------------------------------------------------------------------- /lib/Value/Value.Tests/Samples/ItemPrice.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/Samples/ItemPrice.cs -------------------------------------------------------------------------------- /lib/Value/Value.Tests/Samples/ItemPriceWithBadImplementationForEqualityAndUnicity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/Samples/ItemPriceWithBadImplementationForEqualityAndUnicity.cs -------------------------------------------------------------------------------- /lib/Value/Value.Tests/Samples/Suit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/Samples/Suit.cs -------------------------------------------------------------------------------- /lib/Value/Value.Tests/Samples/ThreeCards.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/Samples/ThreeCards.cs -------------------------------------------------------------------------------- /lib/Value/Value.Tests/Samples/ThreeCardsBadlyImplementedAsValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/Samples/ThreeCardsBadlyImplementedAsValueType.cs -------------------------------------------------------------------------------- /lib/Value/Value.Tests/SetByValueTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/SetByValueTests.cs -------------------------------------------------------------------------------- /lib/Value/Value.Tests/Value.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/Value.Tests.csproj -------------------------------------------------------------------------------- /lib/Value/Value.Tests/Value.Tests.csproj.DotSettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/Value.Tests.csproj.DotSettings -------------------------------------------------------------------------------- /lib/Value/Value.Tests/ValueTypeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/ValueTypeTests.cs -------------------------------------------------------------------------------- /lib/Value/Value.Tests/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.Tests/packages.config -------------------------------------------------------------------------------- /lib/Value/Value.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.jpg -------------------------------------------------------------------------------- /lib/Value/Value.nuspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.nuspec -------------------------------------------------------------------------------- /lib/Value/Value.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value.sln -------------------------------------------------------------------------------- /lib/Value/Value/DictionaryByValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value/DictionaryByValue.cs -------------------------------------------------------------------------------- /lib/Value/Value/EquatableByValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value/EquatableByValue.cs -------------------------------------------------------------------------------- /lib/Value/Value/EquatableByValueWithoutOrder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value/EquatableByValueWithoutOrder.cs -------------------------------------------------------------------------------- /lib/Value/Value/ListByValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value/ListByValue.cs -------------------------------------------------------------------------------- /lib/Value/Value/SetByValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value/SetByValue.cs -------------------------------------------------------------------------------- /lib/Value/Value/Value.Shared.projitems: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value/Value.Shared.projitems -------------------------------------------------------------------------------- /lib/Value/Value/Value.shproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value/Value.shproj -------------------------------------------------------------------------------- /lib/Value/Value/ValueType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Value/ValueType.cs -------------------------------------------------------------------------------- /lib/Value/Version.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/Version.cs -------------------------------------------------------------------------------- /lib/Value/appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/appveyor.yml -------------------------------------------------------------------------------- /lib/Value/build.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/lib/Value/build.cmd -------------------------------------------------------------------------------- /misc/folder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/misc/folder.png -------------------------------------------------------------------------------- /misc/folder_structure.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/misc/folder_structure.png -------------------------------------------------------------------------------- /misc/model_eventstorming.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/misc/model_eventstorming.png -------------------------------------------------------------------------------- /src/ProductContext.Domain/Contracts/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Contracts/Commands.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Contracts/Enums.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Contracts/Enums.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Extensions/ProductSnapshotExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Extensions/ProductSnapshotExtensions.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/ProductContext.Domain.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/ProductContext.Domain.csproj -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/Events.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/Product.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/Product.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/ProductCommandHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/ProductCommandHandlers.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/ProductContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/ProductContent.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/ProductContentId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/ProductContentId.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/ProductContentVariantValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/ProductContentVariantValue.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/ProductId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/ProductId.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/ProductVariant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/ProductVariant.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/ProductVariantId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/ProductVariantId.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/ProductVariantTypeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/ProductVariantTypeValue.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/Snapshots/ProductContentSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/Snapshots/ProductContentSnapshot.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/Snapshots/ProductContentVariantValueSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/Snapshots/ProductContentVariantValueSnapshot.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/Snapshots/ProductSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/Snapshots/ProductSnapshot.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/Snapshots/ProductVariantSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/Snapshots/ProductVariantSnapshot.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/Snapshots/ProductVariantTypeValueSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/Snapshots/ProductVariantTypeValueSnapshot.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/VariantTypeValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/VariantTypeValue.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Products/VariantTypeValueId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Products/VariantTypeValueId.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Projections/ProductContentDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Projections/ProductContentDocument.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Projections/ProductDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Projections/ProductDocument.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Projections/ProductProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Projections/ProductProjection.cs -------------------------------------------------------------------------------- /src/ProductContext.Domain/Projections/ProductVariantDocument.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Domain/Projections/ProductVariantDocument.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/App_Packages/LibLog.4.2/LibLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/App_Packages/LibLog.4.2/LibLog.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/CouchbaseCheckpointStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/CouchbaseCheckpointStore.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/DefaultEventDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/DefaultEventDeserializer.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/DefaultSnapshotDeserializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/DefaultSnapshotDeserializer.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/Defaults.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/Defaults.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/Envelope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/Envelope.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/EventMetadata.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/EventMetadata.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/EventstoreSnapshotter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/EventstoreSnapshotter.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/GetSnapshotStreamName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/GetSnapshotStreamName.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/GetStreamName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/GetStreamName.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/ISnapshotableStreamNameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/ISnapshotableStreamNameResolver.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/ISnapshotter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/ISnapshotter.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/Now.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/Now.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/ProductContext.Framework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/ProductContext.Framework.csproj -------------------------------------------------------------------------------- /src/ProductContext.Framework/ProjectionManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/ProjectionManager.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/ProjectionManagerBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/ProjectionManagerBuilder.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/RepositoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/RepositoryExtensions.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/SetProjectionPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/SetProjectionPosition.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/TypeExtensions.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/TypedStreamNameResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/TypedStreamNameResolver.cs -------------------------------------------------------------------------------- /src/ProductContext.Framework/WrongExpectedStreamVersionException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.Framework/WrongExpectedStreamVersionException.cs -------------------------------------------------------------------------------- /src/ProductContext.WebApi/Controllers/ProductCommandsApi.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.WebApi/Controllers/ProductCommandsApi.cs -------------------------------------------------------------------------------- /src/ProductContext.WebApi/ProductContext.WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.WebApi/ProductContext.WebApi.csproj -------------------------------------------------------------------------------- /src/ProductContext.WebApi/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.WebApi/Program.cs -------------------------------------------------------------------------------- /src/ProductContext.WebApi/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.WebApi/Properties/launchSettings.json -------------------------------------------------------------------------------- /src/ProductContext.WebApi/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.WebApi/Startup.cs -------------------------------------------------------------------------------- /src/ProductContext.WebApi/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.WebApi/appsettings.Development.json -------------------------------------------------------------------------------- /src/ProductContext.WebApi/appsettings.Production.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.WebApi/appsettings.Production.json -------------------------------------------------------------------------------- /src/ProductContext.WebApi/appsettings.Stage.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.WebApi/appsettings.Stage.json -------------------------------------------------------------------------------- /src/ProductContext.WebApi/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/src/ProductContext.WebApi/appsettings.json -------------------------------------------------------------------------------- /test/ProductContext.Domain.Tests/ProductContext.Domain.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Domain.Tests/ProductContext.Domain.Tests.csproj -------------------------------------------------------------------------------- /test/ProductContext.Domain.Tests/Scenarios/ProductSpecs.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Domain.Tests/Scenarios/ProductSpecs.cs -------------------------------------------------------------------------------- /test/ProductContext.Domain.Tests/XunitAssertionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Domain.Tests/XunitAssertionExtensions.cs -------------------------------------------------------------------------------- /test/ProductContext.Framework.Tests/Helpers/CollectionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Framework.Tests/Helpers/CollectionsExtensions.cs -------------------------------------------------------------------------------- /test/ProductContext.Framework.Tests/ProductContext.Framework.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Framework.Tests/ProductContext.Framework.Tests.csproj -------------------------------------------------------------------------------- /test/ProductContext.Framework.Tests/TypeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Framework.Tests/TypeExtensionsTests.cs -------------------------------------------------------------------------------- /test/ProductContext.Framework.Tests/TypedStreamNameResolverTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Framework.Tests/TypedStreamNameResolverTests.cs -------------------------------------------------------------------------------- /test/ProductContext.Integration.Tests/App_Packages/LibLog.4.2/LibLog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Integration.Tests/App_Packages/LibLog.4.2/LibLog.cs -------------------------------------------------------------------------------- /test/ProductContext.Integration.Tests/CouchbaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Integration.Tests/CouchbaseFixture.cs -------------------------------------------------------------------------------- /test/ProductContext.Integration.Tests/DockerHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Integration.Tests/DockerHelper.cs -------------------------------------------------------------------------------- /test/ProductContext.Integration.Tests/EventStoreFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Integration.Tests/EventStoreFixture.cs -------------------------------------------------------------------------------- /test/ProductContext.Integration.Tests/ProductContext.Integration.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Integration.Tests/ProductContext.Integration.Tests.csproj -------------------------------------------------------------------------------- /test/ProductContext.Integration.Tests/ProductIntegrationTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Integration.Tests/ProductIntegrationTestBase.cs -------------------------------------------------------------------------------- /test/ProductContext.Integration.Tests/ProductIntegrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Integration.Tests/ProductIntegrationTests.cs -------------------------------------------------------------------------------- /test/ProductContext.Integration.Tests/couchbaseintegration/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Integration.Tests/couchbaseintegration/Dockerfile -------------------------------------------------------------------------------- /test/ProductContext.Integration.Tests/couchbaseintegration/configure-node.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/osoykan-archive/ProductContext-EventSourcing/HEAD/test/ProductContext.Integration.Tests/couchbaseintegration/configure-node.txt --------------------------------------------------------------------------------