├── .gitattributes ├── .gitignore ├── Build └── CommonAssemblyInfo.cs ├── DDD.sln ├── Doc ├── CommandComponents.png ├── CommandSide.png ├── DeploymentEvolution.png ├── EntityFrameworkMapping.png ├── NHibernateMapping.png ├── PrescriptionLifecycle.png ├── QueryComponents.png └── QuerySide.png ├── README.md ├── Src ├── DDD.Common.Messages │ ├── Application │ │ └── Sex.cs │ ├── DDD.Common.Messages.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── DDD.Common │ ├── DDD.Common.csproj │ ├── Domain │ │ ├── Alpha2CountryCode.cs │ │ ├── Alpha2LanguageCode.cs │ │ ├── ArbitraryIdentifier.cs │ │ ├── BelgianSex.cs │ │ ├── BelgianSocialSecurityNumber.cs │ │ ├── BinaryContent.cs │ │ ├── ContactInformation.cs │ │ ├── ContactInformationState.cs │ │ ├── CountryCode.cs │ │ ├── EmailAddress.cs │ │ ├── Enumeration.cs │ │ ├── FlagsEnumeration.cs │ │ ├── FullName.cs │ │ ├── FullNameState.cs │ │ ├── IdentificationCode.cs │ │ ├── IdentificationNumber.cs │ │ ├── LanguageCode.cs │ │ ├── PostalAddress.cs │ │ ├── PostalAddressState.cs │ │ ├── Sex.cs │ │ └── SocialSecurityNumber.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── DDD.Core.Abstractions │ ├── AnyArgExtensions.cs │ ├── CharExtensions.cs │ ├── Collections │ │ ├── ICollectionExtensions.cs │ │ ├── IDictionaryExtensions.cs │ │ ├── IEnumerableExtensions.cs │ │ ├── IStructuralComparableExtensions.cs │ │ ├── IStructuralEquatableExtensions.cs │ │ └── KeyEqualityComparer.cs │ ├── DDD.Core.Abstractions.csproj │ ├── Data │ │ ├── DbConnectionExtensions.cs │ │ └── DbConnectionHelper.cs │ ├── DateTimeExtensions.cs │ ├── DelegatingTimestampProvider.cs │ ├── EnumerableArgExtensions.cs │ ├── ExceptionExtensions.cs │ ├── FluentBuilder.cs │ ├── IObjectBuilder.cs │ ├── IServiceProviderExtensions.cs │ ├── ITimestampProvider.cs │ ├── Linq │ │ └── IEnumerableExtensions.cs │ ├── LocalTimestampProvider.cs │ ├── Mapping │ │ ├── CompositeTranslator.cs │ │ ├── DelegatingMapper.cs │ │ ├── DelegatingTranslator.cs │ │ ├── IMappingContext.cs │ │ ├── IMappingContextExtensions.cs │ │ ├── IMappingProcessor.cs │ │ ├── IMappingProcessorExtensions.cs │ │ ├── IObjectMapper.cs │ │ ├── IObjectMapperExtensions.cs │ │ ├── IObjectTranslator.cs │ │ ├── IObjectTranslatorExtensions.cs │ │ ├── IObjectTranslator`1.cs │ │ ├── MappingContext.cs │ │ ├── MappingContextInfo.cs │ │ ├── MappingException.cs │ │ ├── MappingProcessor.cs │ │ ├── MappingProcessorSettings.cs │ │ └── ObjectTranslator.cs │ ├── ParamExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── Serialization │ │ ├── IJsonSerializer.cs │ │ ├── ISerializer.cs │ │ ├── ISerializerExtensions.cs │ │ ├── ITextSerializer.cs │ │ ├── ITextSerializerExtensions.cs │ │ ├── IXmlSerializer.cs │ │ ├── JsonSerializationOptions.cs │ │ ├── SerializationException.cs │ │ ├── SerializationFormat.cs │ │ └── XmlSerializationOptions.cs │ ├── StringArgExtensions.cs │ ├── StringExtensions.cs │ ├── StringParamExtensions.cs │ ├── SystemTime.cs │ ├── Threading │ │ └── SynchronizationContextRemover.cs │ ├── TimestampedException.cs │ ├── TypeExtensions.cs │ ├── UniqueTimestampProvider.cs │ ├── UniversalTimestampProvider.cs │ └── Validation │ │ ├── DelegatingValidator.cs │ │ ├── FailureLevel.cs │ │ ├── IAsyncObjectValidator.cs │ │ ├── IAsyncObjectValidatorExtensions.cs │ │ ├── IObjectValidator.cs │ │ ├── ISyncObjectValidator.cs │ │ ├── ISyncObjectValidatorExtensions.cs │ │ ├── IValidationContext.cs │ │ ├── IValidationContextExtensions.cs │ │ ├── ValidationContext.cs │ │ ├── ValidationContextInfo.cs │ │ ├── ValidationFailure.cs │ │ └── ValidationResult.cs ├── DDD.Core.Cronos │ ├── CronosSchedule.cs │ ├── CronosScheduleFactory.cs │ ├── DDD.Core.Cronos.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── DDD.Core.Dapper.Oracle │ ├── DDD.Core.Dapper.Oracle.csproj │ ├── OracleGuidTypeHandler.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── DDD.Core.Dapper │ ├── DDD.Core.Dapper.csproj │ ├── EventStreamPositionUpdater.cs │ ├── EventStreamReader.cs │ ├── EventStreamSubcriber.cs │ ├── EventStreamsFinder.cs │ ├── FailedEventStreamExcluder.cs │ ├── FailedEventStreamIncluder.cs │ ├── FailedEventStreamPositionUpdater.cs │ ├── FailedEventStreamReader.cs │ ├── FailedEventStreamUpdater.cs │ ├── FailedEventStreamsFinder.cs │ ├── FailedRecurringCommandUpdater.cs │ ├── IDbConnectionExtensions.cs │ ├── IncrementalDelaysTypeMapper.cs │ ├── OracleScripts.Designer.cs │ ├── OracleScripts.resx │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RecurringCommandIdGenerator.cs │ ├── RecurringCommandRegister.cs │ ├── RecurringCommandsFinder.cs │ ├── Scripts │ │ ├── ExcludeFailedEventStream.sql │ │ ├── FindEventStreams.sql │ │ ├── FindFailedEventStreams.sql │ │ ├── FindRecurringCommandByType.sql │ │ ├── FindRecurringCommands.sql │ │ ├── IncludeFailedEventStream.sql │ │ ├── InsertRecurringCommand.sql │ │ ├── Oracle │ │ │ ├── ReadEventStream.sql │ │ │ └── ReadFailedEventStream.sql │ │ ├── ReadEventStream.sql │ │ ├── ReadFailedEventStream.sql │ │ ├── SubscribeToEventStream.sql │ │ ├── UpdateEventStreamPosition.sql │ │ ├── UpdateFailedEventStream.sql │ │ ├── UpdateFailedEventStreamPosition.sql │ │ ├── UpdateRecurringCommand.sql │ │ └── UpdateRecurringCommandStatus.sql │ ├── SqlScripts.Designer.cs │ ├── SqlScripts.resx │ └── SuccessfulRecurringCommandUpdater.cs ├── DDD.Core.EntityFramework │ ├── DDD.Core.EntityFramework.csproj │ ├── DbBoundedContext.cs │ ├── DbContextExtensions.cs │ ├── DelegatingDbContextFactory.cs │ ├── EFRepository.cs │ ├── EFRepositoryExceptionTranslator.cs │ ├── EventConfiguration.cs │ ├── IDbContextFactory.cs │ ├── IEnumerableExtensions.cs │ ├── ModelBuilderExtensions.cs │ ├── OracleEventConfiguration.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SqlServerEventConfiguration.cs ├── DDD.Core.FluentValidation │ ├── DDD.Core.FluentValidation.csproj │ ├── FluentValidatorAdapter.cs │ ├── FluentValidatorExtensions.cs │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── ValidationResultTranslator.cs │ └── Validators │ │ ├── AlphaNumericValidator.cs │ │ ├── AlphabeticValidator.cs │ │ ├── CountValidator.cs │ │ ├── ExactCountValidator.cs │ │ ├── MaximumCountValidator.cs │ │ ├── MinimumCountValidator.cs │ │ └── NumericValidator.cs ├── DDD.Core.Messages │ ├── Application │ │ ├── CommandExecutionStatus.cs │ │ ├── Event.cs │ │ ├── EventStream.cs │ │ ├── ExcludeFailedEventStream.cs │ │ ├── FailedEventStream.cs │ │ ├── FindEventStreams.cs │ │ ├── FindFailedEventStreams.cs │ │ ├── FindRecurringCommands.cs │ │ ├── GenerateRecurringCommandId.cs │ │ ├── ICommand.cs │ │ ├── IQuery.cs │ │ ├── IQuery`1.cs │ │ ├── IncludeFailedEventStream.cs │ │ ├── IncrementalDelay.cs │ │ ├── MarkRecurringCommandAsFailed.cs │ │ ├── MarkRecurringCommandAsSuccessful.cs │ │ ├── ReadEventStream.cs │ │ ├── ReadFailedEventStream.cs │ │ ├── RecurringCommand.cs │ │ ├── RecurringCommandDetail.cs │ │ ├── RegisterRecurringCommand.cs │ │ ├── SubscribeToEventStream.cs │ │ ├── UpdateEventStreamPosition.cs │ │ ├── UpdateFailedEventStream.cs │ │ └── UpdateFailedEventStreamPosition.cs │ ├── DDD.Core.Messages.csproj │ ├── Domain │ │ ├── BoundedContext.cs │ │ ├── IDomainEvent.cs │ │ ├── IEvent.cs │ │ └── IMessage.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── DDD.Core.NSubstitute │ ├── DDD.Core.NSubstitute.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ └── SubstituteExtensions.cs ├── DDD.Core.Newtonsoft │ ├── DDD.Core.Newtonsoft.csproj │ ├── JsonSerializerWrapper.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── DDD.Core.Polly │ ├── AsyncPollyCommandHandler.cs │ ├── AsyncPollyCommandHandler`1.cs │ ├── AsyncPollyQueryHandler.cs │ ├── AsyncPollyQueryHandler`1.cs │ ├── DDD.Core.Polly.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── SyncPollyCommandHandler.cs │ ├── SyncPollyCommandHandler`1.cs │ ├── SyncPollyQueryHandler.cs │ └── SyncPollyQueryHandler`1.cs ├── DDD.Core.SimpleInjector.EntityFramework │ ├── AppRegistrationOptionsBuilderExtensions.cs │ ├── DDD.Core.SimpleInjector.EntityFramework.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── DDD.Core.SimpleInjector.FluentValidation │ ├── AppRegistrationOptionsBuilderExtensions.cs │ ├── DDD.Core.SimpleInjector.FluentValidation.csproj │ └── Properties │ │ └── AssemblyInfo.cs ├── DDD.Core.SimpleInjector │ ├── AsyncScopedCommandHandler.cs │ ├── AsyncScopedCommandHandler`1.cs │ ├── AsyncScopedQueryHandler.cs │ ├── AsyncScopedQueryHandler`1.cs │ ├── ContainerExtensions.cs │ ├── DDD.Core.SimpleInjector.csproj │ ├── Properties │ │ └── AssemblyInfo.cs │ ├── RegisteredType.cs │ ├── ThreadScopedCommandHandler.cs │ ├── ThreadScopedCommandHandler`1.cs │ ├── ThreadScopedQueryHandler.cs │ └── ThreadScopedQueryHandler`1.cs ├── DDD.Core.Xunit │ ├── CustomMemberDataAttribute.cs │ ├── DDD.Core.Xunit.csproj │ ├── DbFixture.cs │ ├── IDbFixture.cs │ ├── IDbFixtureExtensions.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── DDD.Core │ ├── Application │ │ ├── ApplicationException.cs │ │ ├── AsyncCommandHandlerWithLogging.cs │ │ ├── AsyncCommandHandlerWithLogging`1.cs │ │ ├── AsyncEventHandler.cs │ │ ├── AsyncEventHandlerWithLogging.cs │ │ ├── AsyncQueryHandlerWithLogging.cs │ │ ├── AsyncQueryHandlerWithLogging`1.cs │ │ ├── CommandConflictException.cs │ │ ├── CommandException.cs │ │ ├── CommandInvalidException.cs │ │ ├── CommandProcessor.cs │ │ ├── CommandProcessorSettings.cs │ │ ├── CommandTimeoutException.cs │ │ ├── CommandUnauthorizedException.cs │ │ ├── CommandUnavailableException.cs │ │ ├── CompositeTranslatorExtensions.cs │ │ ├── ContextualCommandProcessor.cs │ │ ├── ContextualQueryProcessor.cs │ │ ├── DomainToCommandExceptionTranslator.cs │ │ ├── EventConsumer.cs │ │ ├── EventConsumerSettings.cs │ │ ├── EventPublisher.cs │ │ ├── EventTranslator.cs │ │ ├── FailedEventStreamSummaryExtensions.cs │ │ ├── IAsyncCommandHandler.cs │ │ ├── IAsyncCommandHandlerExtensions.cs │ │ ├── IAsyncCommandHandler`1.cs │ │ ├── IAsyncEventHandler.cs │ │ ├── IAsyncEventHandler`1.cs │ │ ├── IAsyncQueryHandler.cs │ │ ├── IAsyncQueryHandlerExtensions.cs │ │ ├── IAsyncQueryHandler`1.cs │ │ ├── ICommandHandler.cs │ │ ├── ICommandHandler`1.cs │ │ ├── ICommandProcessor.cs │ │ ├── ICommandProcessorExtensions.cs │ │ ├── IContextualCommandProcessor.cs │ │ ├── IContextualCommandProcessorExtensions.cs │ │ ├── IContextualCommandProcessor`1.cs │ │ ├── IContextualQueryProcessor.cs │ │ ├── IContextualQueryProcessorExtensions.cs │ │ ├── IContextualQueryProcessor`1.cs │ │ ├── IEventConsumer.cs │ │ ├── IEventConsumer`1.cs │ │ ├── IEventPublisher.cs │ │ ├── IEventPublisherExtensions.cs │ │ ├── IEventPublisher`1.cs │ │ ├── IMessageContext.cs │ │ ├── IMessageContextExtensions.cs │ │ ├── IQueryHandler.cs │ │ ├── IQueryHandler`1.cs │ │ ├── IQueryProcessor.cs │ │ ├── IQueryProcessorExtensions.cs │ │ ├── IRecurringCommandManager.cs │ │ ├── IRecurringCommandManager`1.cs │ │ ├── IRecurringSchedule.cs │ │ ├── IRecurringScheduleFactory.cs │ │ ├── ISyncCommandHandler.cs │ │ ├── ISyncCommandHandlerExtensions.cs │ │ ├── ISyncCommandHandler`1.cs │ │ ├── ISyncEventHandler.cs │ │ ├── ISyncEventHandler`1.cs │ │ ├── ISyncQueryHandler.cs │ │ ├── ISyncQueryHandlerExtensions.cs │ │ ├── ISyncQueryHandler`1.cs │ │ ├── MessageContext.cs │ │ ├── MessageContextInfo.cs │ │ ├── QueryConflictException.cs │ │ ├── QueryException.cs │ │ ├── QueryInvalidException.cs │ │ ├── QueryProcessor.cs │ │ ├── QueryProcessorSettings.cs │ │ ├── QueryTimeoutException.cs │ │ ├── QueryUnauthorizedException.cs │ │ ├── QueryUnavailableException.cs │ │ ├── RecurringCommandManager.cs │ │ ├── RecurringCommandManagerSettings.cs │ │ ├── RecurringExpressionFormat.cs │ │ ├── SyncCommandHandlerWithLogging.cs │ │ ├── SyncCommandHandlerWithLogging`1.cs │ │ ├── SyncEventHandler.cs │ │ ├── SyncEventHandlerWithLogging.cs │ │ ├── SyncQueryHandlerWithLogging.cs │ │ └── SyncQueryHandlerWithLogging`1.cs │ ├── DDD.Core.csproj │ ├── Domain │ │ ├── ComparableValueObject.cs │ │ ├── CompositeTranslatorExtensions.cs │ │ ├── DomainEntity.cs │ │ ├── DomainException.cs │ │ ├── DomainServiceConflictException.cs │ │ ├── DomainServiceException.cs │ │ ├── DomainServiceInvalidException.cs │ │ ├── DomainServiceTimeoutException.cs │ │ ├── DomainServiceUnauthorizedException.cs │ │ ├── DomainServiceUnavailableException.cs │ │ ├── EntityState.cs │ │ ├── IAsyncRepository.cs │ │ ├── IEnumerableExtensions.cs │ │ ├── IRepository.cs │ │ ├── IStateEntity.cs │ │ ├── IStateObjectConvertible.cs │ │ ├── ISyncRepository.cs │ │ ├── RepositoryConflictException.cs │ │ ├── RepositoryException.cs │ │ ├── RepositoryTimeoutException.cs │ │ ├── RepositoryUnauthorizedException.cs │ │ ├── RepositoryUnavailableException.cs │ │ └── ValueObject.cs │ ├── Infrastructure │ │ ├── Data │ │ │ ├── DbConnectionSettings.cs │ │ │ ├── DbScriptSplitter.cs │ │ │ ├── DbStandardExpressions.cs │ │ │ ├── DbToCommandExceptionTranslator.cs │ │ │ ├── DbToQueryExceptionTranslator.cs │ │ │ ├── DbToRepositoryExceptionTranslator.cs │ │ │ ├── GuidGenerator.cs │ │ │ ├── IDbConnectionExtensions.cs │ │ │ ├── IDbConnectionProvider.cs │ │ │ ├── IDbConnectionProviderExtensions.cs │ │ │ ├── IDbConnectionProvider`1.cs │ │ │ ├── IDbStandardExpressions.cs │ │ │ ├── IValueGenerator.cs │ │ │ ├── LazyDbConnectionProvider.cs │ │ │ ├── Oracle11Expressions.cs │ │ │ ├── OracleErrorHelper.cs │ │ │ ├── OracleToCommandExceptionTranslator.cs │ │ │ ├── OracleToQueryExceptionTranslator.cs │ │ │ ├── OracleToRepositoryExceptionTranslator.cs │ │ │ ├── RandomGuidGenerator.cs │ │ │ ├── SequentialBinaryGuidGenerator.cs │ │ │ ├── SequentialSqlServerGuidGenerator.cs │ │ │ ├── SequentialStringGuidGenerator.cs │ │ │ ├── SqlServer2012Expressions.cs │ │ │ ├── SqlServerErrorHelper.cs │ │ │ ├── SqlServerToCommandExceptionTranslator.cs │ │ │ ├── SqlServerToQueryExceptionTranslator.cs │ │ │ └── SqlServerToRepositoryExceptionTranslator.cs │ │ ├── DependencyInjection │ │ │ ├── AppRegistrationOptions.cs │ │ │ ├── CommandsRegistrationOptions.cs │ │ │ ├── DbConnectionOptions.cs │ │ │ ├── EventConsumerOptions.cs │ │ │ ├── EventsRegistrationOptions.cs │ │ │ ├── ExtendableRegistrationOptionsBuilder.cs │ │ │ ├── IExtendableRegistrationOptionsBuilder.cs │ │ │ ├── MappingRegistrationOptions.cs │ │ │ ├── QueriesRegistrationOptions.cs │ │ │ └── RecurringCommandManagerOptions.cs │ │ └── Serialization │ │ │ ├── DataContractSerializerWrapper.cs │ │ │ └── XmlSerializerWrapper.cs │ └── Properties │ │ └── AssemblyInfo.cs ├── DDD.HealthcareDelivery.Messages │ ├── Application │ │ ├── Practitioners │ │ │ └── HealthcarePractitionerType.cs │ │ └── Prescriptions │ │ │ ├── CreatePharmaceuticalPrescription.cs │ │ │ ├── FindPharmaceuticalPrescriptionsByPatient.cs │ │ │ ├── FindPrescribedMedicationsByPrescription.cs │ │ │ ├── GeneratePrescriptionIdentifier.cs │ │ │ ├── PharmaceuticalPrescriptionSummary.cs │ │ │ ├── PrescribedMedicationDescriptor.cs │ │ │ ├── PrescribedMedicationDetails.cs │ │ │ ├── PrescribedMedicationType.cs │ │ │ ├── PrescriptionStatus.cs │ │ │ └── RevokePharmaceuticalPrescription.cs │ ├── DDD.HealthcareDelivery.Messages.csproj │ ├── Domain │ │ ├── HealthcareDeliveryContext.cs │ │ └── Prescriptions │ │ │ ├── PharmaceuticalPrescriptionCreated.cs │ │ │ └── PharmaceuticalPrescriptionRevoked.cs │ └── Properties │ │ └── AssemblyInfo.cs └── DDD.HealthcareDelivery │ ├── Application │ └── Prescriptions │ │ ├── BelgianPharmaceuticalPrescriptionTranslator.cs │ │ ├── PharmaceuticalPrescriptionCreator.cs │ │ └── PharmaceuticalPrescriptionRevoker.cs │ ├── DDD.HealthcareDelivery.csproj │ ├── Domain │ ├── Encounters │ │ └── EncounterIdentifier.cs │ ├── Patients │ │ ├── BelgianPatientTranslator.cs │ │ ├── Patient.cs │ │ └── PatientState.cs │ ├── Practitioners │ │ ├── BelgianHealthcarePractitionerLicenseNumber.cs │ │ ├── BelgianHealthcarePractitionerTranslator.cs │ │ ├── HealthcarePractitioner.cs │ │ ├── HealthcarePractitionerLicenseNumber.cs │ │ ├── HealthcarePractitionerState.cs │ │ └── Physician.cs │ └── Prescriptions │ │ ├── BelgianMedicationCode.cs │ │ ├── BelgianPharmaceuticalPrescriptionTranslator.cs │ │ ├── BelgianPrescribedMedicationTranslator.cs │ │ ├── MedicationCode.cs │ │ ├── PharmaceuticalPrescription.cs │ │ ├── PharmaceuticalPrescriptionState.cs │ │ ├── PrescribedMedication.cs │ │ ├── PrescribedMedicationState.cs │ │ ├── PrescribedPharmaceuticalCompounding.cs │ │ ├── PrescribedPharmaceuticalProduct.cs │ │ ├── PrescribedPharmaceuticalSubstance.cs │ │ ├── Prescription.cs │ │ ├── PrescriptionIdentifier.cs │ │ ├── PrescriptionState.cs │ │ └── PrescriptionStatus.cs │ ├── Infrastructure │ ├── DbHealthcareDeliveryContext.cs │ ├── OracleHealthcareDeliveryContext.cs │ ├── Prescriptions │ │ ├── BelgianCreatePharmaceuticalPrescriptionValidator.cs │ │ ├── BelgianPrescribedMedicationDescriptorValidator.cs │ │ ├── OraclePrescribedMedicationStateConfiguration.cs │ │ ├── OraclePrescriptionStateConfiguration.cs │ │ ├── PharmaceuticalPrescriptionRepository.cs │ │ ├── PharmaceuticalPrescriptionStateConfiguration.cs │ │ ├── PharmaceuticalPrescriptionsByPatientFinder.cs │ │ ├── PrescribedMedicationStateConfiguration.cs │ │ ├── PrescribedMedicationsByPrescriptionFinder.cs │ │ ├── PrescriptionIdentifierGenerator.cs │ │ ├── PrescriptionStateConfiguration.cs │ │ ├── SqlServerPrescribedMedicationStateConfiguration.cs │ │ └── SqlServerPrescriptionStateConfiguration.cs │ ├── Scripts │ │ ├── FindPharmaceuticalPrescriptionsByPatient.sql │ │ └── FindPrescribedMedicationsByPrescription.sql │ ├── SqlScripts.Designer.cs │ ├── SqlScripts.resx │ └── SqlServerHealthcareDeliveryContext.cs │ └── Properties │ └── AssemblyInfo.cs └── Test ├── DDD.Common.UnitTests ├── DDD.Common.UnitTests.csproj ├── Domain │ ├── BelgianSocialSecurityNumberTests.cs │ ├── EnumerationTests.cs │ ├── FakeEnumeration.cs │ ├── FakeFlagsEnumeration.cs │ ├── FlagsEnumerationTests.cs │ └── FullNameTests.cs └── Properties │ └── AssemblyInfo.cs ├── DDD.Core.Abstractions.UnitTests ├── AnyArgExtensionsTests.cs ├── DDD.Core.Abstractions.UnitTests.csproj ├── DateTimeExtensionsTests.cs ├── EnumerableArgExtensionsTests.cs ├── Linq │ └── IEnumerableExtensionsTests.cs ├── Mapping │ ├── FakeObject1.cs │ ├── FakeObject2.cs │ ├── FakeObject3.cs │ ├── IMappingProcessorExtensionsTests.cs │ └── MappingProcessorTests.cs ├── ParamExtensionsTests.cs ├── Properties │ └── AssemblyInfo.cs ├── StringArgExtensionsTests.cs ├── StringExtensionsTests.cs ├── StringParamExtensionsTests.cs └── runtimeconfig.template.json ├── DDD.Core.Dapper.IntegrationTests ├── App.config ├── DDD.Core.Dapper.IntegrationTests.csproj ├── Domain │ └── TestContext.cs ├── Infrastructure │ └── Data │ │ ├── EventStreamPositionUpdaterTests.cs │ │ ├── EventStreamReaderTests.cs │ │ ├── EventStreamSubscriberTests.cs │ │ ├── EventStreamsFinderTests.cs │ │ ├── FailedEventStreamExcluderTests.cs │ │ ├── FailedEventStreamIncluderTests.cs │ │ ├── FailedEventStreamPositionUpdaterTests.cs │ │ ├── FailedEventStreamReaderTests.cs │ │ ├── FailedEventStreamUpdaterTests.cs │ │ ├── FailedEventStreamsFinderTests.cs │ │ ├── FailedRecurringCommandUpdaterTests.cs │ │ ├── IDbConnectionExtensionsTests.cs │ │ ├── IPersistenceFixture.cs │ │ ├── OracleCollection.cs │ │ ├── OracleEventStreamPositionUpdaterTests.cs │ │ ├── OracleEventStreamReaderTests.cs │ │ ├── OracleEventStreamSubscriberTests.cs │ │ ├── OracleEventStreamsFinderTests.cs │ │ ├── OracleFailedEventStreamExcluderTests.cs │ │ ├── OracleFailedEventStreamIncluderTests.cs │ │ ├── OracleFailedEventStreamPositionUpdaterTests.cs │ │ ├── OracleFailedEventStreamReaderTests.cs │ │ ├── OracleFailedEventStreamUpdaterTests.cs │ │ ├── OracleFailedEventStreamsFinderTests.cs │ │ ├── OracleFailedRecurringCommandUpdaterTests.cs │ │ ├── OracleFixture.cs │ │ ├── OracleIDbConnectionExtensionsTests.cs │ │ ├── OracleRecurringCommandRegisterTests.cs │ │ ├── OracleRecurringCommandsFinderTests.cs │ │ ├── OracleScripts.Designer.cs │ │ ├── OracleScripts.resx │ │ ├── OracleSuccessfulRecurringCommandUpdaterTests.cs │ │ ├── RecurringCommandRegisterTests.cs │ │ ├── RecurringCommandsFinderTests.cs │ │ ├── Scripts │ │ ├── Oracle │ │ │ ├── CreateSchema.sql │ │ │ ├── ExcludeFailedEventStream.sql │ │ │ ├── FillSchema.sql │ │ │ ├── FindEventStreams.sql │ │ │ ├── FindFailedEventStreams.sql │ │ │ ├── FindRecurringCommands.sql │ │ │ ├── IncludeFailedEventStream.sql │ │ │ ├── MarkRecurringCommandAsFailed.sql │ │ │ ├── MarkRecurringCommandAsSuccessful.sql │ │ │ ├── NextId_ExistingRows.sql │ │ │ ├── NextId_NoRow.sql │ │ │ ├── ReadEventStream.sql │ │ │ ├── ReadFailedEventStream.sql │ │ │ ├── RegisterRecurringCommand.sql │ │ │ ├── SubscribeToEventStream.sql │ │ │ ├── UpdateEventStreamPosition.sql │ │ │ ├── UpdateFailedEventStream.sql │ │ │ └── UpdateFailedEventStreamPosition.sql │ │ └── SqlServer │ │ │ ├── CreateDatabase.sql │ │ │ ├── ExcludeFailedEventStream.sql │ │ │ ├── FindEventStreams.sql │ │ │ ├── FindFailedEventStreams.sql │ │ │ ├── FindRecurringCommands.sql │ │ │ ├── IncludeFailedEventStream.sql │ │ │ ├── MarkRecurringCommandAsFailed.sql │ │ │ ├── MarkRecurringCommandAsSuccessful.sql │ │ │ ├── NextId_ExistingRows.sql │ │ │ ├── NextId_NoRow.sql │ │ │ ├── ReadEventStream.sql │ │ │ ├── ReadFailedEventStream.sql │ │ │ ├── RegisterRecurringCommand.sql │ │ │ ├── SubscribeToEventStream.sql │ │ │ ├── UpdateEventStreamPosition.sql │ │ │ ├── UpdateFailedEventStream.sql │ │ │ └── UpdateFailedEventStreamPosition.sql │ │ ├── SqlServerCollection.cs │ │ ├── SqlServerEventStreamPositionUpdaterTests.cs │ │ ├── SqlServerEventStreamReaderTests.cs │ │ ├── SqlServerEventStreamSubscriberTests.cs │ │ ├── SqlServerEventStreamsFinderTests.cs │ │ ├── SqlServerFailedEventStreamExcluderTests.cs │ │ ├── SqlServerFailedEventStreamIncluderTests.cs │ │ ├── SqlServerFailedEventStreamPositionUpdaterTests.cs │ │ ├── SqlServerFailedEventStreamReaderTests.cs │ │ ├── SqlServerFailedEventStreamUpdaterTests.cs │ │ ├── SqlServerFailedEventStreamsFinderTests.cs │ │ ├── SqlServerFailedRecurringCommandUpdaterTests.cs │ │ ├── SqlServerFixture.cs │ │ ├── SqlServerIDbConnectionExtensionsTests.cs │ │ ├── SqlServerRecurringCommandRegisterTests.cs │ │ ├── SqlServerRecurringCommandsFinderTests.cs │ │ ├── SqlServerScripts.Designer.cs │ │ ├── SqlServerScripts.resx │ │ ├── SqlServerSuccessfulRecurringCommandUpdaterTests.cs │ │ └── SuccessfulRecurringCommandUpdaterTests.cs ├── Properties │ └── AssemblyInfo.cs └── testhost.dll.config ├── DDD.Core.Newtonsoft.UnitTests ├── DDD.Core.Newtonsoft.UnitTests.csproj ├── FakePerson.cs └── JsonSerializerWrapperTests.cs ├── DDD.Core.SimpleInjector.EntityFramework.UnitTests ├── DDD.Core.SimpleInjector.EntityFramework.UnitTests.csproj ├── Domain │ └── FakeContext.cs └── Infrastructure │ ├── Data │ └── FakeDbContext.cs │ └── DependencyInjection │ └── ContainerExtensionsTests.cs ├── DDD.Core.SimpleInjector.FluentValidation.UnitTests ├── ContainerExtensionsTests.cs ├── DDD.Core.SimpleInjector.FluentValidation.UnitTests.csproj ├── FakeObject.cs └── FakeObjectValidator.cs ├── DDD.Core.SimpleInjector.UnitTests ├── Application │ ├── FakeCommand.cs │ ├── FakeCommandHandler.cs │ ├── FakeEventHandler.cs │ ├── FakeMapper.cs │ ├── FakeQuery.cs │ ├── FakeQueryHandler.cs │ └── FakeTranslator.cs ├── DDD.Core.SimpleInjector.UnitTests.csproj ├── Domain │ ├── DummyContext.cs │ ├── FakeContext.cs │ └── FakeEvent.cs └── Infrastructure │ └── DependencyInjection │ ├── ContainerExtensionsTests.cs │ ├── Decorated.cs │ ├── FirstDecorator.cs │ ├── FirstDelegatingDecorator.cs │ ├── IDoSomething.cs │ ├── SecondDecorator.cs │ └── SecondDelegatingDecorator.cs ├── DDD.Core.UnitTests ├── Application │ ├── CommandProcessorTests.cs │ ├── EventConsumerTests.cs │ ├── EventPublisherTests.cs │ ├── FakeCommand1.cs │ ├── FakeCommand2.cs │ ├── FakeQuery1.cs │ ├── FakeQuery2.cs │ ├── FakeResult.cs │ ├── QueryProcessorTests.cs │ └── RecurringCommandManagerTests.cs ├── DDD.Core.UnitTests.csproj ├── Domain │ ├── ComparableValueObjectTests.cs │ ├── DomainEntityTests.cs │ ├── FakeComplexValueObject1.cs │ ├── FakeComplexValueObject2.cs │ ├── FakeContext.cs │ ├── FakeEntity1.cs │ ├── FakeEntity2.cs │ ├── FakeEntity3.cs │ ├── FakeEntity4.cs │ ├── FakeEvent1.cs │ ├── FakeEvent2.cs │ ├── FakeEvent3.cs │ ├── FakeSimpleValueObject1.cs │ ├── FakeSimpleValueObject2.cs │ ├── FakeSourceContext.cs │ └── ValueObjectTests.cs ├── Infrastructure │ ├── Data │ │ ├── DbScriptSplitterTests.cs │ │ ├── DbStandardExpressionsTests.cs │ │ ├── FakeDbStandardExpressions.cs │ │ ├── FakeQuery.cs │ │ ├── Oracle11ExpressionsTests.cs │ │ ├── SequentialBinaryGuidGeneratorTests.cs │ │ ├── SequentialSqlServerGuidGeneratorTests.cs │ │ ├── SequentialStringGuidGeneratorTests.cs │ │ └── Sql2012ExpressionsTests.cs │ └── Serialization │ │ ├── DataContractSerializerWrapperTests.cs │ │ ├── FakePerson.cs │ │ └── XmlSerializerWrapperTests.cs └── Properties │ └── AssemblyInfo.cs ├── DDD.HealthcareDelivery.IntegrationTests ├── App.config ├── Application │ └── Prescriptions │ │ ├── OraclePharmaceuticalPrescriptionCreatorTests.cs │ │ ├── OraclePharmaceuticalPrescriptionRevokerTests.cs │ │ ├── PharmaceuticalPrescriptionCreatorTests.cs │ │ ├── PharmaceuticalPrescriptionRevokerTests.cs │ │ ├── SqlServerPharmaceuticalPrescriptionCreatorTests.cs │ │ └── SqlServerPharmaceuticalPrescriptionRevokerTests.cs ├── DDD.HealthcareDelivery.IntegrationTests.csproj ├── Infrastructure │ ├── DbHealthcareDeliveryContextTests.cs │ ├── IPersistenceFixture.cs │ ├── OracleCollection.cs │ ├── OracleFixture.cs │ ├── OracleHealthcareDeliveryContextTests.cs │ ├── Prescriptions │ │ ├── OraclePharmaceuticalPrescriptionsByPatientFinderTests.cs │ │ ├── OraclePrescribedMedicationsByPrescriptionFinderTests.cs │ │ ├── PharmaceuticalPrescriptionsByPatientFinderTests.cs │ │ ├── PrescribedMedicationsByPrescriptionFinderTests.cs │ │ ├── SqlServerPharmaceuticalPrescriptionsByPatientFinderTests.cs │ │ └── SqlServerPrescribedMedicationsByPrescriptionFinderTests.cs │ ├── SqlServerCollection.cs │ ├── SqlServerFixture.cs │ └── SqlServerHealthcareDeliveryContextTests.cs ├── OracleScripts.Designer.cs ├── OracleScripts.resx ├── Properties │ └── AssemblyInfo.cs ├── Scripts │ ├── Oracle │ │ ├── CreatePharmaceuticalPrescription.sql │ │ ├── CreateSchema.sql │ │ ├── FillSchema.sql │ │ ├── FindPharmaceuticalPrescriptionsByPatient.sql │ │ ├── FindPrescribedMedicationsByPrescription.sql │ │ └── RevokePharmaceuticalPrescription.sql │ └── SqlServer │ │ ├── CreateDatabase.sql │ │ ├── CreatePharmaceuticalPrescription.sql │ │ ├── FindPharmaceuticalPrescriptionsByPatient.sql │ │ ├── FindPrescribedMedicationsByPrescription.sql │ │ └── RevokePharmaceuticalPrescription.sql ├── SqlServerScripts.Designer.cs ├── SqlServerScripts.resx └── testhost.dll.config └── DDD.HealthcareDelivery.UnitTests ├── DDD.HealthcareDelivery.UnitTests.csproj ├── Domain ├── Practitioners │ └── BelgianHealthcarePractitionerLicenseNumberTests.cs └── Prescriptions │ ├── BelgianMedicationCodeTests.cs │ ├── PharmaceuticalPrescriptionTests.cs │ └── PrescriptionTests.cs ├── Infrastructure └── Prescriptions │ └── BelgianCreatePharmaceuticalPrescriptionValidatorTests.cs └── Properties └── AssemblyInfo.cs /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/.gitignore -------------------------------------------------------------------------------- /Build/CommonAssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Build/CommonAssemblyInfo.cs -------------------------------------------------------------------------------- /DDD.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/DDD.sln -------------------------------------------------------------------------------- /Doc/CommandComponents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Doc/CommandComponents.png -------------------------------------------------------------------------------- /Doc/CommandSide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Doc/CommandSide.png -------------------------------------------------------------------------------- /Doc/DeploymentEvolution.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Doc/DeploymentEvolution.png -------------------------------------------------------------------------------- /Doc/EntityFrameworkMapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Doc/EntityFrameworkMapping.png -------------------------------------------------------------------------------- /Doc/NHibernateMapping.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Doc/NHibernateMapping.png -------------------------------------------------------------------------------- /Doc/PrescriptionLifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Doc/PrescriptionLifecycle.png -------------------------------------------------------------------------------- /Doc/QueryComponents.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Doc/QueryComponents.png -------------------------------------------------------------------------------- /Doc/QuerySide.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Doc/QuerySide.png -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/README.md -------------------------------------------------------------------------------- /Src/DDD.Common.Messages/Application/Sex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common.Messages/Application/Sex.cs -------------------------------------------------------------------------------- /Src/DDD.Common.Messages/DDD.Common.Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common.Messages/DDD.Common.Messages.csproj -------------------------------------------------------------------------------- /Src/DDD.Common.Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common.Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Common/DDD.Common.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/DDD.Common.csproj -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/Alpha2CountryCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/Alpha2CountryCode.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/Alpha2LanguageCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/Alpha2LanguageCode.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/ArbitraryIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/ArbitraryIdentifier.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/BelgianSex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/BelgianSex.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/BelgianSocialSecurityNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/BelgianSocialSecurityNumber.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/BinaryContent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/BinaryContent.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/ContactInformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/ContactInformation.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/ContactInformationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/ContactInformationState.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/CountryCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/CountryCode.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/EmailAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/EmailAddress.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/Enumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/Enumeration.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/FlagsEnumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/FlagsEnumeration.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/FullName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/FullName.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/FullNameState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/FullNameState.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/IdentificationCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/IdentificationCode.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/IdentificationNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/IdentificationNumber.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/LanguageCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/LanguageCode.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/PostalAddress.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/PostalAddress.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/PostalAddressState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/PostalAddressState.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/Sex.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/Sex.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Domain/SocialSecurityNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Domain/SocialSecurityNumber.cs -------------------------------------------------------------------------------- /Src/DDD.Common/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Common/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/AnyArgExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/AnyArgExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/CharExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/CharExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Collections/ICollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Collections/ICollectionExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Collections/IDictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Collections/IDictionaryExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Collections/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Collections/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Collections/IStructuralComparableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Collections/IStructuralComparableExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Collections/IStructuralEquatableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Collections/IStructuralEquatableExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Collections/KeyEqualityComparer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Collections/KeyEqualityComparer.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/DDD.Core.Abstractions.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/DDD.Core.Abstractions.csproj -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Data/DbConnectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Data/DbConnectionExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Data/DbConnectionHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Data/DbConnectionHelper.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/DateTimeExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/DelegatingTimestampProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/DelegatingTimestampProvider.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/EnumerableArgExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/EnumerableArgExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/ExceptionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/ExceptionExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/FluentBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/FluentBuilder.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/IObjectBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/IObjectBuilder.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/IServiceProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/IServiceProviderExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/ITimestampProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/ITimestampProvider.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Linq/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Linq/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/LocalTimestampProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/LocalTimestampProvider.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/CompositeTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/CompositeTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/DelegatingMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/DelegatingMapper.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/DelegatingTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/DelegatingTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/IMappingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/IMappingContext.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/IMappingContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/IMappingContextExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/IMappingProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/IMappingProcessor.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/IMappingProcessorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/IMappingProcessorExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/IObjectMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/IObjectMapper.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/IObjectMapperExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/IObjectMapperExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/IObjectTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/IObjectTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/IObjectTranslatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/IObjectTranslatorExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/IObjectTranslator`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/IObjectTranslator`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/MappingContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/MappingContext.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/MappingContextInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/MappingContextInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/MappingException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/MappingException.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/MappingProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/MappingProcessor.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/MappingProcessorSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/MappingProcessorSettings.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Mapping/ObjectTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Mapping/ObjectTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/ParamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/ParamExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Serialization/IJsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Serialization/IJsonSerializer.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Serialization/ISerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Serialization/ISerializer.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Serialization/ISerializerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Serialization/ISerializerExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Serialization/ITextSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Serialization/ITextSerializer.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Serialization/ITextSerializerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Serialization/ITextSerializerExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Serialization/IXmlSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Serialization/IXmlSerializer.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Serialization/JsonSerializationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Serialization/JsonSerializationOptions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Serialization/SerializationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Serialization/SerializationException.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Serialization/SerializationFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Serialization/SerializationFormat.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Serialization/XmlSerializationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Serialization/XmlSerializationOptions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/StringArgExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/StringArgExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/StringExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/StringParamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/StringParamExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/SystemTime.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/SystemTime.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Threading/SynchronizationContextRemover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Threading/SynchronizationContextRemover.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/TimestampedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/TimestampedException.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/TypeExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/UniqueTimestampProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/UniqueTimestampProvider.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/UniversalTimestampProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/UniversalTimestampProvider.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Validation/DelegatingValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Validation/DelegatingValidator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Validation/FailureLevel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Validation/FailureLevel.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Validation/IAsyncObjectValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Validation/IAsyncObjectValidator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Validation/IAsyncObjectValidatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Validation/IAsyncObjectValidatorExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Validation/IObjectValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Validation/IObjectValidator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Validation/ISyncObjectValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Validation/ISyncObjectValidator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Validation/ISyncObjectValidatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Validation/ISyncObjectValidatorExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Validation/IValidationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Validation/IValidationContext.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Validation/IValidationContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Validation/IValidationContextExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Validation/ValidationContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Validation/ValidationContext.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Validation/ValidationContextInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Validation/ValidationContextInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Validation/ValidationFailure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Validation/ValidationFailure.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Abstractions/Validation/ValidationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Abstractions/Validation/ValidationResult.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Cronos/CronosSchedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Cronos/CronosSchedule.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Cronos/CronosScheduleFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Cronos/CronosScheduleFactory.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Cronos/DDD.Core.Cronos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Cronos/DDD.Core.Cronos.csproj -------------------------------------------------------------------------------- /Src/DDD.Core.Cronos/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Cronos/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper.Oracle/DDD.Core.Dapper.Oracle.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper.Oracle/DDD.Core.Dapper.Oracle.csproj -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper.Oracle/OracleGuidTypeHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper.Oracle/OracleGuidTypeHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper.Oracle/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper.Oracle/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/DDD.Core.Dapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/DDD.Core.Dapper.csproj -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/EventStreamPositionUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/EventStreamPositionUpdater.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/EventStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/EventStreamReader.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/EventStreamSubcriber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/EventStreamSubcriber.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/EventStreamsFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/EventStreamsFinder.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/FailedEventStreamExcluder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/FailedEventStreamExcluder.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/FailedEventStreamIncluder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/FailedEventStreamIncluder.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/FailedEventStreamPositionUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/FailedEventStreamPositionUpdater.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/FailedEventStreamReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/FailedEventStreamReader.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/FailedEventStreamUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/FailedEventStreamUpdater.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/FailedEventStreamsFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/FailedEventStreamsFinder.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/FailedRecurringCommandUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/FailedRecurringCommandUpdater.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/IDbConnectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/IDbConnectionExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/IncrementalDelaysTypeMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/IncrementalDelaysTypeMapper.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/OracleScripts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/OracleScripts.Designer.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/OracleScripts.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/OracleScripts.resx -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/RecurringCommandIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/RecurringCommandIdGenerator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/RecurringCommandRegister.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/RecurringCommandRegister.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/RecurringCommandsFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/RecurringCommandsFinder.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/ExcludeFailedEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/ExcludeFailedEventStream.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/FindEventStreams.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/FindEventStreams.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/FindFailedEventStreams.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/FindFailedEventStreams.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/FindRecurringCommandByType.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/FindRecurringCommandByType.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/FindRecurringCommands.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/FindRecurringCommands.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/IncludeFailedEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/IncludeFailedEventStream.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/InsertRecurringCommand.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/InsertRecurringCommand.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/Oracle/ReadEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/Oracle/ReadEventStream.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/Oracle/ReadFailedEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/Oracle/ReadFailedEventStream.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/ReadEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/ReadEventStream.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/ReadFailedEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/ReadFailedEventStream.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/SubscribeToEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/SubscribeToEventStream.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/UpdateEventStreamPosition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/UpdateEventStreamPosition.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/UpdateFailedEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/UpdateFailedEventStream.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/UpdateFailedEventStreamPosition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/UpdateFailedEventStreamPosition.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/UpdateRecurringCommand.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/UpdateRecurringCommand.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/Scripts/UpdateRecurringCommandStatus.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/Scripts/UpdateRecurringCommandStatus.sql -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/SqlScripts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/SqlScripts.Designer.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/SqlScripts.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/SqlScripts.resx -------------------------------------------------------------------------------- /Src/DDD.Core.Dapper/SuccessfulRecurringCommandUpdater.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Dapper/SuccessfulRecurringCommandUpdater.cs -------------------------------------------------------------------------------- /Src/DDD.Core.EntityFramework/DDD.Core.EntityFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.EntityFramework/DDD.Core.EntityFramework.csproj -------------------------------------------------------------------------------- /Src/DDD.Core.EntityFramework/DbBoundedContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.EntityFramework/DbBoundedContext.cs -------------------------------------------------------------------------------- /Src/DDD.Core.EntityFramework/DbContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.EntityFramework/DbContextExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.EntityFramework/DelegatingDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.EntityFramework/DelegatingDbContextFactory.cs -------------------------------------------------------------------------------- /Src/DDD.Core.EntityFramework/EFRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.EntityFramework/EFRepository.cs -------------------------------------------------------------------------------- /Src/DDD.Core.EntityFramework/EFRepositoryExceptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.EntityFramework/EFRepositoryExceptionTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.EntityFramework/EventConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.EntityFramework/EventConfiguration.cs -------------------------------------------------------------------------------- /Src/DDD.Core.EntityFramework/IDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.EntityFramework/IDbContextFactory.cs -------------------------------------------------------------------------------- /Src/DDD.Core.EntityFramework/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.EntityFramework/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.EntityFramework/ModelBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.EntityFramework/ModelBuilderExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.EntityFramework/OracleEventConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.EntityFramework/OracleEventConfiguration.cs -------------------------------------------------------------------------------- /Src/DDD.Core.EntityFramework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.EntityFramework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.EntityFramework/SqlServerEventConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.EntityFramework/SqlServerEventConfiguration.cs -------------------------------------------------------------------------------- /Src/DDD.Core.FluentValidation/DDD.Core.FluentValidation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.FluentValidation/DDD.Core.FluentValidation.csproj -------------------------------------------------------------------------------- /Src/DDD.Core.FluentValidation/FluentValidatorAdapter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.FluentValidation/FluentValidatorAdapter.cs -------------------------------------------------------------------------------- /Src/DDD.Core.FluentValidation/FluentValidatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.FluentValidation/FluentValidatorExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.FluentValidation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.FluentValidation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.FluentValidation/ValidationResultTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.FluentValidation/ValidationResultTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.FluentValidation/Validators/AlphaNumericValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.FluentValidation/Validators/AlphaNumericValidator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.FluentValidation/Validators/AlphabeticValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.FluentValidation/Validators/AlphabeticValidator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.FluentValidation/Validators/CountValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.FluentValidation/Validators/CountValidator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.FluentValidation/Validators/ExactCountValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.FluentValidation/Validators/ExactCountValidator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.FluentValidation/Validators/MaximumCountValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.FluentValidation/Validators/MaximumCountValidator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.FluentValidation/Validators/MinimumCountValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.FluentValidation/Validators/MinimumCountValidator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.FluentValidation/Validators/NumericValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.FluentValidation/Validators/NumericValidator.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/CommandExecutionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/CommandExecutionStatus.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/Event.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/Event.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/EventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/EventStream.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/ExcludeFailedEventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/ExcludeFailedEventStream.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/FailedEventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/FailedEventStream.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/FindEventStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/FindEventStreams.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/FindFailedEventStreams.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/FindFailedEventStreams.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/FindRecurringCommands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/FindRecurringCommands.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/GenerateRecurringCommandId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/GenerateRecurringCommandId.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/ICommand.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/IQuery.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/IQuery`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/IQuery`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/IncludeFailedEventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/IncludeFailedEventStream.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/IncrementalDelay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/IncrementalDelay.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/MarkRecurringCommandAsFailed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/MarkRecurringCommandAsFailed.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/MarkRecurringCommandAsSuccessful.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/MarkRecurringCommandAsSuccessful.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/ReadEventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/ReadEventStream.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/ReadFailedEventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/ReadFailedEventStream.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/RecurringCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/RecurringCommand.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/RecurringCommandDetail.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/RecurringCommandDetail.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/RegisterRecurringCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/RegisterRecurringCommand.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/SubscribeToEventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/SubscribeToEventStream.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/UpdateEventStreamPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/UpdateEventStreamPosition.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/UpdateFailedEventStream.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/UpdateFailedEventStream.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Application/UpdateFailedEventStreamPosition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Application/UpdateFailedEventStreamPosition.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/DDD.Core.Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/DDD.Core.Messages.csproj -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Domain/BoundedContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Domain/BoundedContext.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Domain/IDomainEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Domain/IDomainEvent.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Domain/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Domain/IEvent.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Domain/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Domain/IMessage.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.NSubstitute/DDD.Core.NSubstitute.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.NSubstitute/DDD.Core.NSubstitute.csproj -------------------------------------------------------------------------------- /Src/DDD.Core.NSubstitute/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.NSubstitute/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.NSubstitute/SubstituteExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.NSubstitute/SubstituteExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Newtonsoft/DDD.Core.Newtonsoft.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Newtonsoft/DDD.Core.Newtonsoft.csproj -------------------------------------------------------------------------------- /Src/DDD.Core.Newtonsoft/JsonSerializerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Newtonsoft/JsonSerializerWrapper.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Newtonsoft/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Newtonsoft/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Polly/AsyncPollyCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Polly/AsyncPollyCommandHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Polly/AsyncPollyCommandHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Polly/AsyncPollyCommandHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Polly/AsyncPollyQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Polly/AsyncPollyQueryHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Polly/AsyncPollyQueryHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Polly/AsyncPollyQueryHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Polly/DDD.Core.Polly.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Polly/DDD.Core.Polly.csproj -------------------------------------------------------------------------------- /Src/DDD.Core.Polly/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Polly/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Polly/SyncPollyCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Polly/SyncPollyCommandHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Polly/SyncPollyCommandHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Polly/SyncPollyCommandHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Polly/SyncPollyQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Polly/SyncPollyQueryHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Polly/SyncPollyQueryHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Polly/SyncPollyQueryHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector.EntityFramework/AppRegistrationOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector.EntityFramework/AppRegistrationOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector.EntityFramework/DDD.Core.SimpleInjector.EntityFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector.EntityFramework/DDD.Core.SimpleInjector.EntityFramework.csproj -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector.EntityFramework/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector.EntityFramework/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector.FluentValidation/AppRegistrationOptionsBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector.FluentValidation/AppRegistrationOptionsBuilderExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector.FluentValidation/DDD.Core.SimpleInjector.FluentValidation.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector.FluentValidation/DDD.Core.SimpleInjector.FluentValidation.csproj -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector.FluentValidation/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector.FluentValidation/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector/AsyncScopedCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector/AsyncScopedCommandHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector/AsyncScopedCommandHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector/AsyncScopedCommandHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector/AsyncScopedQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector/AsyncScopedQueryHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector/AsyncScopedQueryHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector/AsyncScopedQueryHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector/ContainerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector/ContainerExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector/DDD.Core.SimpleInjector.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector/DDD.Core.SimpleInjector.csproj -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector/RegisteredType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector/RegisteredType.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector/ThreadScopedCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector/ThreadScopedCommandHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector/ThreadScopedCommandHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector/ThreadScopedCommandHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector/ThreadScopedQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector/ThreadScopedQueryHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core.SimpleInjector/ThreadScopedQueryHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.SimpleInjector/ThreadScopedQueryHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Xunit/CustomMemberDataAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Xunit/CustomMemberDataAttribute.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Xunit/DDD.Core.Xunit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Xunit/DDD.Core.Xunit.csproj -------------------------------------------------------------------------------- /Src/DDD.Core.Xunit/DbFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Xunit/DbFixture.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Xunit/IDbFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Xunit/IDbFixture.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Xunit/IDbFixtureExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Xunit/IDbFixtureExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core.Xunit/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core.Xunit/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ApplicationException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ApplicationException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/AsyncCommandHandlerWithLogging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/AsyncCommandHandlerWithLogging.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/AsyncCommandHandlerWithLogging`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/AsyncCommandHandlerWithLogging`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/AsyncEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/AsyncEventHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/AsyncEventHandlerWithLogging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/AsyncEventHandlerWithLogging.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/AsyncQueryHandlerWithLogging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/AsyncQueryHandlerWithLogging.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/AsyncQueryHandlerWithLogging`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/AsyncQueryHandlerWithLogging`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/CommandConflictException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/CommandConflictException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/CommandException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/CommandException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/CommandInvalidException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/CommandInvalidException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/CommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/CommandProcessor.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/CommandProcessorSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/CommandProcessorSettings.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/CommandTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/CommandTimeoutException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/CommandUnauthorizedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/CommandUnauthorizedException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/CommandUnavailableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/CommandUnavailableException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/CompositeTranslatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/CompositeTranslatorExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ContextualCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ContextualCommandProcessor.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ContextualQueryProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ContextualQueryProcessor.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/DomainToCommandExceptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/DomainToCommandExceptionTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/EventConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/EventConsumer.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/EventConsumerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/EventConsumerSettings.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/EventPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/EventPublisher.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/EventTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/EventTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/FailedEventStreamSummaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/FailedEventStreamSummaryExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IAsyncCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IAsyncCommandHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IAsyncCommandHandlerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IAsyncCommandHandlerExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IAsyncCommandHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IAsyncCommandHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IAsyncEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IAsyncEventHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IAsyncEventHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IAsyncEventHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IAsyncQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IAsyncQueryHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IAsyncQueryHandlerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IAsyncQueryHandlerExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IAsyncQueryHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IAsyncQueryHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ICommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ICommandHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ICommandHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ICommandHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ICommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ICommandProcessor.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ICommandProcessorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ICommandProcessorExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IContextualCommandProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IContextualCommandProcessor.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IContextualCommandProcessorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IContextualCommandProcessorExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IContextualCommandProcessor`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IContextualCommandProcessor`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IContextualQueryProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IContextualQueryProcessor.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IContextualQueryProcessorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IContextualQueryProcessorExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IContextualQueryProcessor`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IContextualQueryProcessor`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IEventConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IEventConsumer.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IEventConsumer`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IEventConsumer`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IEventPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IEventPublisher.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IEventPublisherExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IEventPublisherExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IEventPublisher`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IEventPublisher`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IMessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IMessageContext.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IMessageContextExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IMessageContextExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IQueryHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IQueryHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IQueryHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IQueryProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IQueryProcessor.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IQueryProcessorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IQueryProcessorExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IRecurringCommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IRecurringCommandManager.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IRecurringCommandManager`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IRecurringCommandManager`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IRecurringSchedule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IRecurringSchedule.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/IRecurringScheduleFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/IRecurringScheduleFactory.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ISyncCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ISyncCommandHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ISyncCommandHandlerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ISyncCommandHandlerExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ISyncCommandHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ISyncCommandHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ISyncEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ISyncEventHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ISyncEventHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ISyncEventHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ISyncQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ISyncQueryHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ISyncQueryHandlerExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ISyncQueryHandlerExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/ISyncQueryHandler`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/ISyncQueryHandler`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/MessageContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/MessageContext.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/MessageContextInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/MessageContextInfo.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/QueryConflictException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/QueryConflictException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/QueryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/QueryException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/QueryInvalidException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/QueryInvalidException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/QueryProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/QueryProcessor.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/QueryProcessorSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/QueryProcessorSettings.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/QueryTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/QueryTimeoutException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/QueryUnauthorizedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/QueryUnauthorizedException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/QueryUnavailableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/QueryUnavailableException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/RecurringCommandManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/RecurringCommandManager.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/RecurringCommandManagerSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/RecurringCommandManagerSettings.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/RecurringExpressionFormat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/RecurringExpressionFormat.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/SyncCommandHandlerWithLogging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/SyncCommandHandlerWithLogging.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/SyncCommandHandlerWithLogging`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/SyncCommandHandlerWithLogging`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/SyncEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/SyncEventHandler.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/SyncEventHandlerWithLogging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/SyncEventHandlerWithLogging.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/SyncQueryHandlerWithLogging.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/SyncQueryHandlerWithLogging.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Application/SyncQueryHandlerWithLogging`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Application/SyncQueryHandlerWithLogging`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/DDD.Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/DDD.Core.csproj -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/ComparableValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/ComparableValueObject.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/CompositeTranslatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/CompositeTranslatorExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/DomainEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/DomainEntity.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/DomainException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/DomainException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/DomainServiceConflictException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/DomainServiceConflictException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/DomainServiceException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/DomainServiceException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/DomainServiceInvalidException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/DomainServiceInvalidException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/DomainServiceTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/DomainServiceTimeoutException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/DomainServiceUnauthorizedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/DomainServiceUnauthorizedException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/DomainServiceUnavailableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/DomainServiceUnavailableException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/EntityState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/EntityState.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/IAsyncRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/IAsyncRepository.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/IEnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/IEnumerableExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/IRepository.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/IStateEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/IStateEntity.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/IStateObjectConvertible.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/IStateObjectConvertible.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/ISyncRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/ISyncRepository.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/RepositoryConflictException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/RepositoryConflictException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/RepositoryException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/RepositoryException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/RepositoryTimeoutException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/RepositoryTimeoutException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/RepositoryUnauthorizedException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/RepositoryUnauthorizedException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/RepositoryUnavailableException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/RepositoryUnavailableException.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Domain/ValueObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Domain/ValueObject.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/DbConnectionSettings.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/DbConnectionSettings.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/DbScriptSplitter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/DbScriptSplitter.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/DbStandardExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/DbStandardExpressions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/DbToCommandExceptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/DbToCommandExceptionTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/DbToQueryExceptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/DbToQueryExceptionTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/DbToRepositoryExceptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/DbToRepositoryExceptionTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/GuidGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/GuidGenerator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/IDbConnectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/IDbConnectionExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/IDbConnectionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/IDbConnectionProvider.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/IDbConnectionProviderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/IDbConnectionProviderExtensions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/IDbConnectionProvider`1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/IDbConnectionProvider`1.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/IDbStandardExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/IDbStandardExpressions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/IValueGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/IValueGenerator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/LazyDbConnectionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/LazyDbConnectionProvider.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/Oracle11Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/Oracle11Expressions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/OracleErrorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/OracleErrorHelper.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/OracleToCommandExceptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/OracleToCommandExceptionTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/OracleToQueryExceptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/OracleToQueryExceptionTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/OracleToRepositoryExceptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/OracleToRepositoryExceptionTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/RandomGuidGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/RandomGuidGenerator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/SequentialBinaryGuidGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/SequentialBinaryGuidGenerator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/SequentialSqlServerGuidGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/SequentialSqlServerGuidGenerator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/SequentialStringGuidGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/SequentialStringGuidGenerator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/SqlServer2012Expressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/SqlServer2012Expressions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/SqlServerErrorHelper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/SqlServerErrorHelper.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/SqlServerToCommandExceptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/SqlServerToCommandExceptionTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/SqlServerToQueryExceptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/SqlServerToQueryExceptionTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Data/SqlServerToRepositoryExceptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Data/SqlServerToRepositoryExceptionTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/DependencyInjection/AppRegistrationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/DependencyInjection/AppRegistrationOptions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/DependencyInjection/CommandsRegistrationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/DependencyInjection/CommandsRegistrationOptions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/DependencyInjection/DbConnectionOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/DependencyInjection/DbConnectionOptions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/DependencyInjection/EventConsumerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/DependencyInjection/EventConsumerOptions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/DependencyInjection/EventsRegistrationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/DependencyInjection/EventsRegistrationOptions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/DependencyInjection/ExtendableRegistrationOptionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/DependencyInjection/ExtendableRegistrationOptionsBuilder.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/DependencyInjection/IExtendableRegistrationOptionsBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/DependencyInjection/IExtendableRegistrationOptionsBuilder.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/DependencyInjection/MappingRegistrationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/DependencyInjection/MappingRegistrationOptions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/DependencyInjection/QueriesRegistrationOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/DependencyInjection/QueriesRegistrationOptions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/DependencyInjection/RecurringCommandManagerOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/DependencyInjection/RecurringCommandManagerOptions.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Serialization/DataContractSerializerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Serialization/DataContractSerializerWrapper.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Infrastructure/Serialization/XmlSerializerWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Infrastructure/Serialization/XmlSerializerWrapper.cs -------------------------------------------------------------------------------- /Src/DDD.Core/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.Core/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Application/Practitioners/HealthcarePractitionerType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Application/Practitioners/HealthcarePractitionerType.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/CreatePharmaceuticalPrescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/CreatePharmaceuticalPrescription.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/FindPharmaceuticalPrescriptionsByPatient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/FindPharmaceuticalPrescriptionsByPatient.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/FindPrescribedMedicationsByPrescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/FindPrescribedMedicationsByPrescription.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/GeneratePrescriptionIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/GeneratePrescriptionIdentifier.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/PharmaceuticalPrescriptionSummary.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/PharmaceuticalPrescriptionSummary.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/PrescribedMedicationDescriptor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/PrescribedMedicationDescriptor.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/PrescribedMedicationDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/PrescribedMedicationDetails.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/PrescribedMedicationType.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/PrescribedMedicationType.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/PrescriptionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/PrescriptionStatus.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/RevokePharmaceuticalPrescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Application/Prescriptions/RevokePharmaceuticalPrescription.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/DDD.HealthcareDelivery.Messages.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/DDD.HealthcareDelivery.Messages.csproj -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Domain/HealthcareDeliveryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Domain/HealthcareDeliveryContext.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Domain/Prescriptions/PharmaceuticalPrescriptionCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Domain/Prescriptions/PharmaceuticalPrescriptionCreated.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Domain/Prescriptions/PharmaceuticalPrescriptionRevoked.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Domain/Prescriptions/PharmaceuticalPrescriptionRevoked.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery.Messages/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery.Messages/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Application/Prescriptions/BelgianPharmaceuticalPrescriptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Application/Prescriptions/BelgianPharmaceuticalPrescriptionTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Application/Prescriptions/PharmaceuticalPrescriptionCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Application/Prescriptions/PharmaceuticalPrescriptionCreator.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Application/Prescriptions/PharmaceuticalPrescriptionRevoker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Application/Prescriptions/PharmaceuticalPrescriptionRevoker.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/DDD.HealthcareDelivery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/DDD.HealthcareDelivery.csproj -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Encounters/EncounterIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Encounters/EncounterIdentifier.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Patients/BelgianPatientTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Patients/BelgianPatientTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Patients/Patient.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Patients/Patient.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Patients/PatientState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Patients/PatientState.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Practitioners/BelgianHealthcarePractitionerLicenseNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Practitioners/BelgianHealthcarePractitionerLicenseNumber.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Practitioners/BelgianHealthcarePractitionerTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Practitioners/BelgianHealthcarePractitionerTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Practitioners/HealthcarePractitioner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Practitioners/HealthcarePractitioner.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Practitioners/HealthcarePractitionerLicenseNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Practitioners/HealthcarePractitionerLicenseNumber.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Practitioners/HealthcarePractitionerState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Practitioners/HealthcarePractitionerState.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Practitioners/Physician.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Practitioners/Physician.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/BelgianMedicationCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/BelgianMedicationCode.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/BelgianPharmaceuticalPrescriptionTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/BelgianPharmaceuticalPrescriptionTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/BelgianPrescribedMedicationTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/BelgianPrescribedMedicationTranslator.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/MedicationCode.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/MedicationCode.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/PharmaceuticalPrescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/PharmaceuticalPrescription.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/PharmaceuticalPrescriptionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/PharmaceuticalPrescriptionState.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescribedMedication.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescribedMedication.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescribedMedicationState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescribedMedicationState.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescribedPharmaceuticalCompounding.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescribedPharmaceuticalCompounding.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescribedPharmaceuticalProduct.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescribedPharmaceuticalProduct.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescribedPharmaceuticalSubstance.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescribedPharmaceuticalSubstance.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/Prescription.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/Prescription.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescriptionIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescriptionIdentifier.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescriptionState.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescriptionState.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescriptionStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Domain/Prescriptions/PrescriptionStatus.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/DbHealthcareDeliveryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/DbHealthcareDeliveryContext.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/OracleHealthcareDeliveryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/OracleHealthcareDeliveryContext.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/BelgianCreatePharmaceuticalPrescriptionValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/BelgianCreatePharmaceuticalPrescriptionValidator.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/BelgianPrescribedMedicationDescriptorValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/BelgianPrescribedMedicationDescriptorValidator.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/OraclePrescribedMedicationStateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/OraclePrescribedMedicationStateConfiguration.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/OraclePrescriptionStateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/OraclePrescriptionStateConfiguration.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/PharmaceuticalPrescriptionRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/PharmaceuticalPrescriptionRepository.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/PharmaceuticalPrescriptionStateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/PharmaceuticalPrescriptionStateConfiguration.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/PharmaceuticalPrescriptionsByPatientFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/PharmaceuticalPrescriptionsByPatientFinder.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/PrescribedMedicationStateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/PrescribedMedicationStateConfiguration.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/PrescribedMedicationsByPrescriptionFinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/PrescribedMedicationsByPrescriptionFinder.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/PrescriptionIdentifierGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/PrescriptionIdentifierGenerator.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/PrescriptionStateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/PrescriptionStateConfiguration.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/SqlServerPrescribedMedicationStateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/SqlServerPrescribedMedicationStateConfiguration.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/SqlServerPrescriptionStateConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Prescriptions/SqlServerPrescriptionStateConfiguration.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Scripts/FindPharmaceuticalPrescriptionsByPatient.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Scripts/FindPharmaceuticalPrescriptionsByPatient.sql -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/Scripts/FindPrescribedMedicationsByPrescription.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/Scripts/FindPrescribedMedicationsByPrescription.sql -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/SqlScripts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/SqlScripts.Designer.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/SqlScripts.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/SqlScripts.resx -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Infrastructure/SqlServerHealthcareDeliveryContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Infrastructure/SqlServerHealthcareDeliveryContext.cs -------------------------------------------------------------------------------- /Src/DDD.HealthcareDelivery/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Src/DDD.HealthcareDelivery/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Test/DDD.Common.UnitTests/DDD.Common.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Common.UnitTests/DDD.Common.UnitTests.csproj -------------------------------------------------------------------------------- /Test/DDD.Common.UnitTests/Domain/BelgianSocialSecurityNumberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Common.UnitTests/Domain/BelgianSocialSecurityNumberTests.cs -------------------------------------------------------------------------------- /Test/DDD.Common.UnitTests/Domain/EnumerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Common.UnitTests/Domain/EnumerationTests.cs -------------------------------------------------------------------------------- /Test/DDD.Common.UnitTests/Domain/FakeEnumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Common.UnitTests/Domain/FakeEnumeration.cs -------------------------------------------------------------------------------- /Test/DDD.Common.UnitTests/Domain/FakeFlagsEnumeration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Common.UnitTests/Domain/FakeFlagsEnumeration.cs -------------------------------------------------------------------------------- /Test/DDD.Common.UnitTests/Domain/FlagsEnumerationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Common.UnitTests/Domain/FlagsEnumerationTests.cs -------------------------------------------------------------------------------- /Test/DDD.Common.UnitTests/Domain/FullNameTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Common.UnitTests/Domain/FullNameTests.cs -------------------------------------------------------------------------------- /Test/DDD.Common.UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Common.UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/AnyArgExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/AnyArgExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/DDD.Core.Abstractions.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/DDD.Core.Abstractions.UnitTests.csproj -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/DateTimeExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/DateTimeExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/EnumerableArgExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/EnumerableArgExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/Linq/IEnumerableExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/Linq/IEnumerableExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/Mapping/FakeObject1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/Mapping/FakeObject1.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/Mapping/FakeObject2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/Mapping/FakeObject2.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/Mapping/FakeObject3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/Mapping/FakeObject3.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/Mapping/IMappingProcessorExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/Mapping/IMappingProcessorExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/Mapping/MappingProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/Mapping/MappingProcessorTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/ParamExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/ParamExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/StringArgExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/StringArgExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/StringExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/StringExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/StringParamExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/StringParamExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Abstractions.UnitTests/runtimeconfig.template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Abstractions.UnitTests/runtimeconfig.template.json -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/App.config -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/DDD.Core.Dapper.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/DDD.Core.Dapper.IntegrationTests.csproj -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Domain/TestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Domain/TestContext.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/EventStreamPositionUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/EventStreamPositionUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/EventStreamReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/EventStreamReaderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/EventStreamSubscriberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/EventStreamSubscriberTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/EventStreamsFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/EventStreamsFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/FailedEventStreamExcluderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/FailedEventStreamExcluderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/FailedEventStreamIncluderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/FailedEventStreamIncluderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/FailedEventStreamPositionUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/FailedEventStreamPositionUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/FailedEventStreamReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/FailedEventStreamReaderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/FailedEventStreamUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/FailedEventStreamUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/FailedEventStreamsFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/FailedEventStreamsFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/FailedRecurringCommandUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/FailedRecurringCommandUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/IDbConnectionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/IDbConnectionExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/IPersistenceFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/IPersistenceFixture.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleCollection.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleEventStreamPositionUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleEventStreamPositionUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleEventStreamReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleEventStreamReaderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleEventStreamSubscriberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleEventStreamSubscriberTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleEventStreamsFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleEventStreamsFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFailedEventStreamExcluderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFailedEventStreamExcluderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFailedEventStreamIncluderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFailedEventStreamIncluderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFailedEventStreamPositionUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFailedEventStreamPositionUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFailedEventStreamReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFailedEventStreamReaderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFailedEventStreamUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFailedEventStreamUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFailedEventStreamsFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFailedEventStreamsFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFailedRecurringCommandUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFailedRecurringCommandUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleFixture.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleIDbConnectionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleIDbConnectionExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleRecurringCommandRegisterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleRecurringCommandRegisterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleRecurringCommandsFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleRecurringCommandsFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleScripts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleScripts.Designer.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleScripts.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleScripts.resx -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleSuccessfulRecurringCommandUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/OracleSuccessfulRecurringCommandUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/RecurringCommandRegisterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/RecurringCommandRegisterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/RecurringCommandsFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/RecurringCommandsFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/CreateSchema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/CreateSchema.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/ExcludeFailedEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/ExcludeFailedEventStream.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/FillSchema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/FillSchema.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/FindEventStreams.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/FindEventStreams.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/FindFailedEventStreams.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/FindFailedEventStreams.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/FindRecurringCommands.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/FindRecurringCommands.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/IncludeFailedEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/IncludeFailedEventStream.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/MarkRecurringCommandAsFailed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/MarkRecurringCommandAsFailed.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/MarkRecurringCommandAsSuccessful.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/MarkRecurringCommandAsSuccessful.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/NextId_ExistingRows.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/NextId_ExistingRows.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/NextId_NoRow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/NextId_NoRow.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/ReadEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/ReadEventStream.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/ReadFailedEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/ReadFailedEventStream.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/RegisterRecurringCommand.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/RegisterRecurringCommand.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/SubscribeToEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/SubscribeToEventStream.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/UpdateEventStreamPosition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/UpdateEventStreamPosition.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/UpdateFailedEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/UpdateFailedEventStream.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/UpdateFailedEventStreamPosition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/Oracle/UpdateFailedEventStreamPosition.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/CreateDatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/CreateDatabase.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/ExcludeFailedEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/ExcludeFailedEventStream.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/FindEventStreams.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/FindEventStreams.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/FindFailedEventStreams.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/FindFailedEventStreams.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/FindRecurringCommands.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/FindRecurringCommands.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/IncludeFailedEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/IncludeFailedEventStream.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/MarkRecurringCommandAsFailed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/MarkRecurringCommandAsFailed.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/MarkRecurringCommandAsSuccessful.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/MarkRecurringCommandAsSuccessful.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/NextId_ExistingRows.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/NextId_ExistingRows.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/NextId_NoRow.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/NextId_NoRow.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/ReadEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/ReadEventStream.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/ReadFailedEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/ReadFailedEventStream.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/RegisterRecurringCommand.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/RegisterRecurringCommand.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/SubscribeToEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/SubscribeToEventStream.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/UpdateEventStreamPosition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/UpdateEventStreamPosition.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/UpdateFailedEventStream.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/UpdateFailedEventStream.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/UpdateFailedEventStreamPosition.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/Scripts/SqlServer/UpdateFailedEventStreamPosition.sql -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerCollection.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerEventStreamPositionUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerEventStreamPositionUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerEventStreamReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerEventStreamReaderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerEventStreamSubscriberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerEventStreamSubscriberTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerEventStreamsFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerEventStreamsFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFailedEventStreamExcluderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFailedEventStreamExcluderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFailedEventStreamIncluderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFailedEventStreamIncluderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFailedEventStreamPositionUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFailedEventStreamPositionUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFailedEventStreamReaderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFailedEventStreamReaderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFailedEventStreamUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFailedEventStreamUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFailedEventStreamsFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFailedEventStreamsFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFailedRecurringCommandUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFailedRecurringCommandUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerFixture.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerIDbConnectionExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerIDbConnectionExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerRecurringCommandRegisterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerRecurringCommandRegisterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerRecurringCommandsFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerRecurringCommandsFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerScripts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerScripts.Designer.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerScripts.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerScripts.resx -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerSuccessfulRecurringCommandUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SqlServerSuccessfulRecurringCommandUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SuccessfulRecurringCommandUpdaterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Infrastructure/Data/SuccessfulRecurringCommandUpdaterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Dapper.IntegrationTests/testhost.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Dapper.IntegrationTests/testhost.dll.config -------------------------------------------------------------------------------- /Test/DDD.Core.Newtonsoft.UnitTests/DDD.Core.Newtonsoft.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Newtonsoft.UnitTests/DDD.Core.Newtonsoft.UnitTests.csproj -------------------------------------------------------------------------------- /Test/DDD.Core.Newtonsoft.UnitTests/FakePerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Newtonsoft.UnitTests/FakePerson.cs -------------------------------------------------------------------------------- /Test/DDD.Core.Newtonsoft.UnitTests/JsonSerializerWrapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.Newtonsoft.UnitTests/JsonSerializerWrapperTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.EntityFramework.UnitTests/DDD.Core.SimpleInjector.EntityFramework.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.EntityFramework.UnitTests/DDD.Core.SimpleInjector.EntityFramework.UnitTests.csproj -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.EntityFramework.UnitTests/Domain/FakeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.EntityFramework.UnitTests/Domain/FakeContext.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.EntityFramework.UnitTests/Infrastructure/Data/FakeDbContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.EntityFramework.UnitTests/Infrastructure/Data/FakeDbContext.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.EntityFramework.UnitTests/Infrastructure/DependencyInjection/ContainerExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.EntityFramework.UnitTests/Infrastructure/DependencyInjection/ContainerExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.FluentValidation.UnitTests/ContainerExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.FluentValidation.UnitTests/ContainerExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.FluentValidation.UnitTests/DDD.Core.SimpleInjector.FluentValidation.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.FluentValidation.UnitTests/DDD.Core.SimpleInjector.FluentValidation.UnitTests.csproj -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.FluentValidation.UnitTests/FakeObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.FluentValidation.UnitTests/FakeObject.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.FluentValidation.UnitTests/FakeObjectValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.FluentValidation.UnitTests/FakeObjectValidator.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Application/FakeCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Application/FakeCommand.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Application/FakeCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Application/FakeCommandHandler.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Application/FakeEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Application/FakeEventHandler.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Application/FakeMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Application/FakeMapper.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Application/FakeQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Application/FakeQuery.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Application/FakeQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Application/FakeQueryHandler.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Application/FakeTranslator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Application/FakeTranslator.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/DDD.Core.SimpleInjector.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/DDD.Core.SimpleInjector.UnitTests.csproj -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Domain/DummyContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Domain/DummyContext.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Domain/FakeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Domain/FakeContext.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Domain/FakeEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Domain/FakeEvent.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Infrastructure/DependencyInjection/ContainerExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Infrastructure/DependencyInjection/ContainerExtensionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Infrastructure/DependencyInjection/Decorated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Infrastructure/DependencyInjection/Decorated.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Infrastructure/DependencyInjection/FirstDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Infrastructure/DependencyInjection/FirstDecorator.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Infrastructure/DependencyInjection/FirstDelegatingDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Infrastructure/DependencyInjection/FirstDelegatingDecorator.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Infrastructure/DependencyInjection/IDoSomething.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Infrastructure/DependencyInjection/IDoSomething.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Infrastructure/DependencyInjection/SecondDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Infrastructure/DependencyInjection/SecondDecorator.cs -------------------------------------------------------------------------------- /Test/DDD.Core.SimpleInjector.UnitTests/Infrastructure/DependencyInjection/SecondDelegatingDecorator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.SimpleInjector.UnitTests/Infrastructure/DependencyInjection/SecondDelegatingDecorator.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Application/CommandProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Application/CommandProcessorTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Application/EventConsumerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Application/EventConsumerTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Application/EventPublisherTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Application/EventPublisherTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Application/FakeCommand1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Application/FakeCommand1.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Application/FakeCommand2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Application/FakeCommand2.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Application/FakeQuery1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Application/FakeQuery1.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Application/FakeQuery2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Application/FakeQuery2.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Application/FakeResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Application/FakeResult.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Application/QueryProcessorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Application/QueryProcessorTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Application/RecurringCommandManagerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Application/RecurringCommandManagerTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/DDD.Core.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/DDD.Core.UnitTests.csproj -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/ComparableValueObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/ComparableValueObjectTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/DomainEntityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/DomainEntityTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/FakeComplexValueObject1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/FakeComplexValueObject1.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/FakeComplexValueObject2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/FakeComplexValueObject2.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/FakeContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/FakeContext.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/FakeEntity1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/FakeEntity1.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/FakeEntity2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/FakeEntity2.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/FakeEntity3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/FakeEntity3.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/FakeEntity4.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/FakeEntity4.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/FakeEvent1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/FakeEvent1.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/FakeEvent2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/FakeEvent2.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/FakeEvent3.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/FakeEvent3.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/FakeSimpleValueObject1.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/FakeSimpleValueObject1.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/FakeSimpleValueObject2.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/FakeSimpleValueObject2.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/FakeSourceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/FakeSourceContext.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Domain/ValueObjectTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Domain/ValueObjectTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Infrastructure/Data/DbScriptSplitterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Infrastructure/Data/DbScriptSplitterTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Infrastructure/Data/DbStandardExpressionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Infrastructure/Data/DbStandardExpressionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Infrastructure/Data/FakeDbStandardExpressions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Infrastructure/Data/FakeDbStandardExpressions.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Infrastructure/Data/FakeQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Infrastructure/Data/FakeQuery.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Infrastructure/Data/Oracle11ExpressionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Infrastructure/Data/Oracle11ExpressionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Infrastructure/Data/SequentialBinaryGuidGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Infrastructure/Data/SequentialBinaryGuidGeneratorTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Infrastructure/Data/SequentialSqlServerGuidGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Infrastructure/Data/SequentialSqlServerGuidGeneratorTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Infrastructure/Data/SequentialStringGuidGeneratorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Infrastructure/Data/SequentialStringGuidGeneratorTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Infrastructure/Data/Sql2012ExpressionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Infrastructure/Data/Sql2012ExpressionsTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Infrastructure/Serialization/DataContractSerializerWrapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Infrastructure/Serialization/DataContractSerializerWrapperTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Infrastructure/Serialization/FakePerson.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Infrastructure/Serialization/FakePerson.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Infrastructure/Serialization/XmlSerializerWrapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Infrastructure/Serialization/XmlSerializerWrapperTests.cs -------------------------------------------------------------------------------- /Test/DDD.Core.UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.Core.UnitTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/App.config -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Application/Prescriptions/OraclePharmaceuticalPrescriptionCreatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Application/Prescriptions/OraclePharmaceuticalPrescriptionCreatorTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Application/Prescriptions/OraclePharmaceuticalPrescriptionRevokerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Application/Prescriptions/OraclePharmaceuticalPrescriptionRevokerTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Application/Prescriptions/PharmaceuticalPrescriptionCreatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Application/Prescriptions/PharmaceuticalPrescriptionCreatorTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Application/Prescriptions/PharmaceuticalPrescriptionRevokerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Application/Prescriptions/PharmaceuticalPrescriptionRevokerTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Application/Prescriptions/SqlServerPharmaceuticalPrescriptionCreatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Application/Prescriptions/SqlServerPharmaceuticalPrescriptionCreatorTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Application/Prescriptions/SqlServerPharmaceuticalPrescriptionRevokerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Application/Prescriptions/SqlServerPharmaceuticalPrescriptionRevokerTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/DDD.HealthcareDelivery.IntegrationTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/DDD.HealthcareDelivery.IntegrationTests.csproj -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/DbHealthcareDeliveryContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/DbHealthcareDeliveryContextTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/IPersistenceFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/IPersistenceFixture.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/OracleCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/OracleCollection.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/OracleFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/OracleFixture.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/OracleHealthcareDeliveryContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/OracleHealthcareDeliveryContextTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/Prescriptions/OraclePharmaceuticalPrescriptionsByPatientFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/Prescriptions/OraclePharmaceuticalPrescriptionsByPatientFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/Prescriptions/OraclePrescribedMedicationsByPrescriptionFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/Prescriptions/OraclePrescribedMedicationsByPrescriptionFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/Prescriptions/PharmaceuticalPrescriptionsByPatientFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/Prescriptions/PharmaceuticalPrescriptionsByPatientFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/Prescriptions/PrescribedMedicationsByPrescriptionFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/Prescriptions/PrescribedMedicationsByPrescriptionFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/Prescriptions/SqlServerPharmaceuticalPrescriptionsByPatientFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/Prescriptions/SqlServerPharmaceuticalPrescriptionsByPatientFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/Prescriptions/SqlServerPrescribedMedicationsByPrescriptionFinderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/Prescriptions/SqlServerPrescribedMedicationsByPrescriptionFinderTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/SqlServerCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/SqlServerCollection.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/SqlServerFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/SqlServerFixture.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/SqlServerHealthcareDeliveryContextTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Infrastructure/SqlServerHealthcareDeliveryContextTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/OracleScripts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/OracleScripts.Designer.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/OracleScripts.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/OracleScripts.resx -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/Oracle/CreatePharmaceuticalPrescription.sql: -------------------------------------------------------------------------------- 1 | BEGIN 2 | SPCLEARSCHEMA(); 3 | END; 4 | / -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/Oracle/CreateSchema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/Oracle/CreateSchema.sql -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/Oracle/FillSchema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/Oracle/FillSchema.sql -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/Oracle/FindPharmaceuticalPrescriptionsByPatient.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/Oracle/FindPharmaceuticalPrescriptionsByPatient.sql -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/Oracle/FindPrescribedMedicationsByPrescription.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/Oracle/FindPrescribedMedicationsByPrescription.sql -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/Oracle/RevokePharmaceuticalPrescription.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/Oracle/RevokePharmaceuticalPrescription.sql -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/SqlServer/CreateDatabase.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/SqlServer/CreateDatabase.sql -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/SqlServer/CreatePharmaceuticalPrescription.sql: -------------------------------------------------------------------------------- 1 | USE [Test] 2 | GO 3 | EXEC spClearDatabase 4 | GO -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/SqlServer/FindPharmaceuticalPrescriptionsByPatient.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/SqlServer/FindPharmaceuticalPrescriptionsByPatient.sql -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/SqlServer/FindPrescribedMedicationsByPrescription.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/SqlServer/FindPrescribedMedicationsByPrescription.sql -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/SqlServer/RevokePharmaceuticalPrescription.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/Scripts/SqlServer/RevokePharmaceuticalPrescription.sql -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/SqlServerScripts.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/SqlServerScripts.Designer.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/SqlServerScripts.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/SqlServerScripts.resx -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.IntegrationTests/testhost.dll.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.IntegrationTests/testhost.dll.config -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.UnitTests/DDD.HealthcareDelivery.UnitTests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.UnitTests/DDD.HealthcareDelivery.UnitTests.csproj -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.UnitTests/Domain/Practitioners/BelgianHealthcarePractitionerLicenseNumberTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.UnitTests/Domain/Practitioners/BelgianHealthcarePractitionerLicenseNumberTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.UnitTests/Domain/Prescriptions/BelgianMedicationCodeTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.UnitTests/Domain/Prescriptions/BelgianMedicationCodeTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.UnitTests/Domain/Prescriptions/PharmaceuticalPrescriptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.UnitTests/Domain/Prescriptions/PharmaceuticalPrescriptionTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.UnitTests/Domain/Prescriptions/PrescriptionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.UnitTests/Domain/Prescriptions/PrescriptionTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.UnitTests/Infrastructure/Prescriptions/BelgianCreatePharmaceuticalPrescriptionValidatorTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.UnitTests/Infrastructure/Prescriptions/BelgianCreatePharmaceuticalPrescriptionValidatorTests.cs -------------------------------------------------------------------------------- /Test/DDD.HealthcareDelivery.UnitTests/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/draphyz/DDD/HEAD/Test/DDD.HealthcareDelivery.UnitTests/Properties/AssemblyInfo.cs --------------------------------------------------------------------------------