├── .gitattributes ├── .github ├── FUNDING.yml └── workflows │ └── build.dotnet.yml ├── .gitignore ├── LICENSE.txt ├── README.md ├── assets ├── GoldenEye.png └── GoldenEyeLogo.png ├── docker-compose.ci.yml ├── docker-compose.pg.yml ├── docker-compose.yml ├── docker ├── docker-compose.yml ├── mssql │ └── variables.env └── postgres │ └── variables.env ├── samples ├── DDD │ └── Tickets │ │ ├── README.md │ │ ├── Tickets.Api.Tests │ │ ├── Config │ │ │ └── TestConfiguration.cs │ │ ├── Reservations │ │ │ └── CreatingTentativeReservation │ │ │ │ └── CreateTentativeReservationTests.cs │ │ └── Tickets.Api.Tests.csproj │ │ ├── Tickets.Api │ │ ├── Controllers │ │ │ ├── ConcertsController.cs │ │ │ ├── MaintenanceController.cs │ │ │ ├── ReservationsController.cs │ │ │ ├── SeatsController.cs │ │ │ └── TicketsController.cs │ │ ├── Program.cs │ │ ├── Properties │ │ │ └── launchSettings.json │ │ ├── Requests │ │ │ ├── ChangeSeatRequest.cs │ │ │ ├── CreateTentativeReservationRequest.cs │ │ │ ├── GetReservationDetailsAtVersion.cs │ │ │ └── RebuildProjectionRequest.cs │ │ ├── Responses │ │ │ └── PagedListResponse.cs │ │ ├── Startup.cs │ │ ├── Tickets.Api.csproj │ │ ├── appsettings.Development.json │ │ └── appsettings.json │ │ ├── Tickets.Tests │ │ ├── Builders │ │ │ └── ReservationBuilder.cs │ │ ├── Extensions │ │ │ ├── AggregateExtensions.cs │ │ │ └── Reservations │ │ │ │ └── ReservationExtensions.cs │ │ ├── Reservations │ │ │ ├── CancellingReservation │ │ │ │ └── CancelReservationTests.cs │ │ │ ├── ChangingReservationSeat │ │ │ │ └── ChangeSeatTests.cs │ │ │ ├── ConfirmingReservation │ │ │ │ └── ConfirmReservationTests.cs │ │ │ └── CreatingTentativeReservation │ │ │ │ ├── CreateTentativeReservationCommandHandlerTests.cs │ │ │ │ └── CreateTentativeReservationTests.cs │ │ ├── Stubs │ │ │ ├── Ids │ │ │ │ └── FakeIdGenerator.cs │ │ │ ├── Reservations │ │ │ │ └── FakeReservationNumberGenerator.cs │ │ │ └── Storage │ │ │ │ └── FakeRepository.cs │ │ └── Tickets.Tests.csproj │ │ ├── Tickets.sln │ │ └── Tickets │ │ ├── Concerts │ │ └── Concert.cs │ │ ├── Config.cs │ │ ├── Maintenance │ │ ├── Commands │ │ │ └── RebuildProjection.cs │ │ ├── Config.cs │ │ └── MaintenanceCommandHandler.cs │ │ ├── Reservations │ │ ├── CancellingReservation │ │ │ ├── CancelReservation.cs │ │ │ └── ReservationCancelled.cs │ │ ├── ChangingReservationSeat │ │ │ ├── ChangeReservationSeat.cs │ │ │ └── ReservationSeatChanged.cs │ │ ├── ConfirmingReservation │ │ │ ├── ConfirmReservation.cs │ │ │ └── ReservationConfirmed.cs │ │ ├── CreatingTentativeReservation │ │ │ ├── CreateTentativeReservation.cs │ │ │ └── TentativeReservationCreated.cs │ │ ├── GettingReservationAtVersion │ │ │ └── GetReservationAtVersion.cs │ │ ├── GettingReservationById │ │ │ ├── GetReservationById.cs │ │ │ └── ReservationDetails.cs │ │ ├── GettingReservationHistory │ │ │ ├── GetReservationHistory.cs │ │ │ └── ReservationHistoryTransformation.cs │ │ ├── GettingReservations │ │ │ ├── GetReservations.cs │ │ │ └── ReservationShortInfo.cs │ │ ├── NumberGeneration │ │ │ └── ReservationNumberGenerator.cs │ │ ├── Reservation.cs │ │ ├── ReservationStatus.cs │ │ └── ReservationsConfig.cs │ │ ├── Seats │ │ └── Seat.cs │ │ ├── Tickets.csproj │ │ └── Tickets │ │ └── Ticket.cs └── GoldenEye.WebApi.Sample │ ├── Controllers │ └── ValuesController.cs │ ├── GoldenEye.WebApi.Sample.csproj │ ├── Program.cs │ ├── Properties │ └── launchSettings.json │ ├── Startup.cs │ ├── appsettings.Development.json │ └── appsettings.json └── src ├── .editorconfig ├── .idea ├── .gitignore └── .idea.GoldenEye │ └── .idea │ ├── .gitignore │ ├── .name │ ├── codeStyles │ └── codeStyleConfig.xml │ ├── indexLayout.xml │ ├── projectSettingsUpdater.xml │ └── vcs.xml ├── Core ├── Core.Tests.External │ ├── Contracts │ │ ├── Commands.cs │ │ ├── Events.cs │ │ └── Queries.cs │ ├── Core.Tests.External.csproj │ └── Handlers │ │ ├── CommandHandlers.cs │ │ ├── EventHandlers.cs │ │ └── QueryHandlers.cs ├── Core.Tests │ ├── Core.Tests.csproj │ ├── Events │ │ └── Store │ │ │ ├── EventStore.cs │ │ │ └── EventStorePipelineTests.cs │ ├── Extensions │ │ └── Functions │ │ │ └── Memoize │ │ │ ├── RecursionWithFunctionTests.cs │ │ │ └── RecursionWithLocalFunctionTests.cs │ ├── Modules │ │ └── Registration.cs │ ├── Registration │ │ ├── AllHandlersRegistrationTests.cs │ │ ├── CommandHandlerRegistrationTests.cs │ │ ├── EventHandlerRegistrationTests.cs │ │ ├── QueryHandlerRegistrationTests.cs │ │ └── RegistrationTests.cs │ └── Validation │ │ └── ValidationPipelineTests.cs └── Core │ ├── Aggregates │ ├── Aggregate.cs │ └── IAggregate.cs │ ├── Changelog.md │ ├── Commands │ ├── CommandBus.cs │ ├── ICommand.cs │ ├── ICommandBus.cs │ ├── ICommandHandler.cs │ ├── IExternalCommandBus.cs │ └── Readme.md │ ├── Configuration │ └── Registration.cs │ ├── Context │ └── SaveChangesHandlers │ │ ├── AuditInfoSaveChangesHandler.cs │ │ ├── Base │ │ └── ISaveChangesHandler.cs │ │ ├── ISaveChangesProcessor.cs │ │ └── SaveChangesProcessor.cs │ ├── Core.csproj │ ├── Entities │ ├── AuditableEntity.cs │ ├── Entity.cs │ ├── EntityEntry.cs │ ├── IAuditableEntity.cs │ ├── IEntity.cs │ └── IProvidesAuditInfo.cs │ ├── Events │ ├── Aggregate │ │ ├── AggregateEventsPublisher.cs │ │ ├── IAggregateEventsPublisher.cs │ │ └── NulloAggregateEventsPublisher.cs │ ├── EventBus.cs │ ├── External │ │ ├── ExternalEventConsumerBackgroundWorker.cs │ │ ├── IExternaEventProducer.cs │ │ ├── IExternalEventConsumer.cs │ │ └── NulloExternalEventProducer.cs │ ├── IEvent.cs │ ├── IEventBus.cs │ ├── IEventHandler.cs │ ├── IExternalEvent.cs │ └── Store │ │ ├── EventStorePipeline.cs │ │ ├── IEventStore.cs │ │ └── IEventStoreExtensions.cs │ ├── Exceptions │ ├── HttpExceptionWrapper.cs │ ├── NotFoundException.cs │ └── OptimisticConcurrencyException.cs │ ├── Extensions │ ├── Basic │ │ ├── CompareExtensions.cs │ │ ├── DateRangeExtensions.cs │ │ ├── DateTimeExtensions.cs │ │ ├── ObjectExtensions.cs │ │ ├── StringBuilderExtensions.cs │ │ └── StringExtensions.cs │ ├── Collections │ │ ├── ArrayExtensions.cs │ │ ├── CollectionExtensions.cs │ │ ├── DictionaryExtensions.cs │ │ ├── EnumerableExtensions.cs │ │ ├── ListExtensions.cs │ │ ├── QueryableExtensions.cs │ │ └── QueueExtensions.cs │ ├── DependencyInjection │ │ ├── AssemblySelector.cs │ │ └── RegistrationExtensions.cs │ ├── Dynamic │ │ └── DynamicExtensions.cs │ ├── Enums │ │ └── EnumExtensions.cs │ ├── Functions │ │ └── Memoizer.cs │ ├── Lambda │ │ ├── ExpressionExtensions.cs │ │ └── ParameterRebinder.cs │ ├── Naming │ │ └── ConventionNamesExtensions.cs │ ├── Reflection │ │ ├── AttributeExtensions.cs │ │ └── ReflectionExtensions.cs │ ├── Serialization │ │ └── SerializationExtensions.cs │ ├── Streams │ │ └── StreamExtensions.cs │ └── Threading │ │ └── ThreadExtensions.cs │ ├── IdsGenerator │ ├── IIdGenerator.cs │ └── NulloIdGenerator.cs │ ├── Mappings │ ├── IMappingDefinition.cs │ └── Registration.cs │ ├── Modules │ ├── Attributes │ │ ├── InternalModuleAttribute.cs │ │ └── ProjectAssemblyAttribute.cs │ ├── IModule.cs │ ├── Module.cs │ └── Registration.cs │ ├── Objects │ ├── Audit │ │ └── IAuditable.cs │ ├── Dates │ │ ├── DateRange.cs │ │ └── IDateRange.cs │ ├── General │ │ ├── IHasName.cs │ │ ├── IHasParent.cs │ │ ├── IHaveId.cs │ │ └── ObjectWithIdBase.cs │ ├── Order │ │ └── IOrderable.cs │ ├── Requests │ │ ├── EmptyRequest.cs │ │ ├── IEmptyRequest.cs │ │ ├── IListRequest.cs │ │ ├── IRequest.cs │ │ ├── ISingleRequest.cs │ │ ├── ListRequest.cs │ │ └── SingleRequest.cs │ ├── Responses │ │ ├── EmptyResponse.cs │ │ ├── IEmptyResponse.cs │ │ ├── IListResponse.cs │ │ ├── IResponse.cs │ │ ├── ISingleResponse.cs │ │ ├── ListResponse.cs │ │ ├── PagedResponse.cs │ │ └── SingleResponse.cs │ └── Versioning │ │ └── IHaveVersion.cs │ ├── Queries │ ├── IListQuery.cs │ ├── IQuery.cs │ ├── IQueryBus.cs │ ├── IQueryHandler.cs │ ├── IView.cs │ └── QueryBus.cs │ ├── Readme.md │ ├── Registration │ ├── Readme.md │ └── Registration.cs │ ├── Repositories │ ├── IReadonlyRepository.cs │ ├── IRepository.cs │ ├── InMemoryReadonlyRepository.cs │ ├── InMemoryRepository.cs │ ├── ReadonlyRepositoryExtensions.cs │ └── RepositoryExtensions.cs │ ├── Security │ ├── IUserInfo.cs │ ├── IUserInfoProvider.cs │ └── UserInfoProvider.cs │ ├── Services │ ├── CRUDService.cs │ ├── ICRUDService.cs │ ├── IReadonlyService.cs │ ├── IService.cs │ └── ReadonlyService.cs │ ├── Utils │ ├── Assemblies │ │ ├── AssembliesProvider.cs │ │ └── TypeProvider.cs │ ├── Coding │ │ └── Switch.cs │ ├── Collections │ │ └── CollectionToCSVConverter.cs │ ├── Exceptions │ │ ├── Guard.cs │ │ ├── IExceptionHandler.cs │ │ └── IExceptionProvider.cs │ ├── MessageBus │ │ ├── IMessage.cs │ │ ├── IMessageBus.cs │ │ ├── IMessageHandler.cs │ │ └── MessageBus.cs │ ├── Serialization │ │ ├── DateTimeJsonConverter.cs │ │ └── JsonSerializer.cs │ └── Threading │ │ └── NoSynchronizationContextScope.cs │ └── Validation │ └── ValidationPipeline.cs ├── Dapper ├── Dapper.Integration.Tests │ ├── Changelog.md │ ├── Dapper.Integration.Tests.csproj │ ├── Infrastructure │ │ └── DapperTest.cs │ ├── Repositories │ │ └── DapperRepositoryTests.cs │ └── TestData │ │ └── Structure.cs ├── Dapper.Tests │ ├── Changelog.md │ ├── Dapper.Tests.csproj │ └── Mappings │ │ └── RegistrationTests.cs └── Dapper │ ├── Changelog.md │ ├── Dapper.csproj │ ├── Generators │ ├── IDapperSqlGenerator.cs │ └── MappingsSqlGenerator.cs │ ├── Mappings │ ├── IDapperMapping.cs │ └── Registration.cs │ ├── Readme.md │ └── Repositories │ └── DapperRepository.cs ├── Directory.build.props ├── ElasticSearch ├── ElasticSearch.Integration.Tests │ └── ElasticSearch.Integration.Tests.csproj ├── ElasticSearch.Tests │ └── ElasticSearch.Tests.csproj └── ElasticSearch │ ├── Changelog.md │ ├── ElasticSearch.csproj │ ├── Readme.md │ └── Repositories │ └── ElasticSearchRepository.cs ├── EntityFramework ├── EntityFramework.Integration.Tests │ ├── EntityFramework.Integration.Tests.csproj │ ├── Infrastructure │ │ └── EntityFrameworkTest.cs │ ├── Migrations │ │ ├── 20200503181242_InitialCreate.Designer.cs │ │ ├── 20200503181242_InitialCreate.cs │ │ └── UsersDbContextModelSnapshot.cs │ ├── Repositories │ │ └── EntityFrameworkRepositoryTests.cs │ ├── TestData │ │ └── Structure.cs │ └── appsettings.json └── EntityFramework │ ├── Changelog.md │ ├── EntityFramework.csproj │ ├── Migrations │ ├── EntityFrameworkDbContextMigrationRunner.cs │ ├── EntityFrameworkMigrationsRunner.cs │ ├── IEntityFrameworkDbContextMigrationRunner.cs │ └── IEntityFrameworkMigrationsRunner.cs │ ├── Readme.md │ ├── Registration │ └── Registration.cs │ └── Repositories │ ├── DesignTypeDbContextFactory.cs │ └── EntityFrameworkRepository.cs ├── GoldenEye.sln ├── Kafka ├── Kafka.Integration.Tests │ └── Kafka.Integration.Tests.csproj ├── Kafka.Tests │ └── Kafka.Tests.csproj └── Kafka │ ├── Changelog.md │ ├── Consumers │ ├── KafkaConsumer.cs │ └── KafkaConsumerConfig.cs │ ├── Kafka.csproj │ ├── Producers │ ├── KafkaProducer.cs │ └── KafkaProducerConfig.cs │ ├── Readme.md │ └── Registrations │ └── Registration.cs ├── Marten ├── Marten.Integration.Tests │ ├── Changelog.md │ ├── Events │ │ └── Storage │ │ │ └── MartenEventStoreTests.cs │ ├── Infrastructure │ │ └── MartenTest.cs │ ├── Marten.Integration.Tests.csproj │ └── Readme.md └── Marten │ ├── Changelog.md │ ├── Events │ └── Storage │ │ └── MartenEventStore.cs │ ├── Marten.csproj │ ├── Readme.md │ ├── Registration │ ├── MartenConfig.cs │ └── Registration.cs │ └── Repositories │ ├── MartenDocumentRepository.cs │ └── MartenEventSourcedRepository.cs ├── Testing └── Testing │ ├── AggregateExtensions.cs │ ├── ApiFixture.cs │ ├── DummyExternalCommandBus.cs │ ├── DummyExternalEventConsumer.cs │ ├── DummyExternalEventPublisher.cs │ ├── EventListener.cs │ ├── FakeRepository.cs │ ├── ResponseExtensions.cs │ ├── SerializationExtensions.cs │ ├── TestContext.cs │ └── Testing.csproj └── WebApi ├── WebApi.Tests ├── Changelog.md ├── Exceptions │ ├── ExceptionHandlingMiddlewareTests.cs │ └── ExceptionToHttpStatusMapperTests.cs ├── Readme.md └── WebApi.Tests.csproj └── WebApi ├── Changelog.md ├── Controllers ├── ReadonlyControllerBase.cs └── RestControllerBase.cs ├── Exceptions ├── ExceptionHandlingMiddleware.cs └── ExceptionToHttpStatusMapper.cs ├── Modules ├── IWebApiModule.cs ├── Registration.cs └── WebApiModule.cs ├── Readme.md ├── Registration └── Registration.cs └── WebApi.csproj /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/workflows/build.dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/.github/workflows/build.dotnet.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/README.md -------------------------------------------------------------------------------- /assets/GoldenEye.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/assets/GoldenEye.png -------------------------------------------------------------------------------- /assets/GoldenEyeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/assets/GoldenEyeLogo.png -------------------------------------------------------------------------------- /docker-compose.ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/docker-compose.ci.yml -------------------------------------------------------------------------------- /docker-compose.pg.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/docker-compose.pg.yml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/docker/docker-compose.yml -------------------------------------------------------------------------------- /docker/mssql/variables.env: -------------------------------------------------------------------------------- 1 | ACCEPT_EULA=Y 2 | SA_PASSWORD=Password12! 3 | -------------------------------------------------------------------------------- /docker/postgres/variables.env: -------------------------------------------------------------------------------- 1 | POSTGRES_PASSWORD:Password12! -------------------------------------------------------------------------------- /samples/DDD/Tickets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/README.md -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api.Tests/Config/TestConfiguration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api.Tests/Config/TestConfiguration.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api.Tests/Reservations/CreatingTentativeReservation/CreateTentativeReservationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api.Tests/Reservations/CreatingTentativeReservation/CreateTentativeReservationTests.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api.Tests/Tickets.Api.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api.Tests/Tickets.Api.Tests.csproj -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/Controllers/ConcertsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/Controllers/ConcertsController.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/Controllers/MaintenanceController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/Controllers/MaintenanceController.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/Controllers/ReservationsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/Controllers/ReservationsController.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/Controllers/SeatsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/Controllers/SeatsController.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/Controllers/TicketsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/Controllers/TicketsController.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/Program.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/Requests/ChangeSeatRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/Requests/ChangeSeatRequest.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/Requests/CreateTentativeReservationRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/Requests/CreateTentativeReservationRequest.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/Requests/GetReservationDetailsAtVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/Requests/GetReservationDetailsAtVersion.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/Requests/RebuildProjectionRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/Requests/RebuildProjectionRequest.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/Responses/PagedListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/Responses/PagedListResponse.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/Startup.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/Tickets.Api.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/Tickets.Api.csproj -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/appsettings.Development.json -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Api/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Api/appsettings.json -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Tests/Builders/ReservationBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Tests/Builders/ReservationBuilder.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Tests/Extensions/AggregateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Tests/Extensions/AggregateExtensions.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Tests/Extensions/Reservations/ReservationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Tests/Extensions/Reservations/ReservationExtensions.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Tests/Reservations/CancellingReservation/CancelReservationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Tests/Reservations/CancellingReservation/CancelReservationTests.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Tests/Reservations/ChangingReservationSeat/ChangeSeatTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Tests/Reservations/ChangingReservationSeat/ChangeSeatTests.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Tests/Reservations/ConfirmingReservation/ConfirmReservationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Tests/Reservations/ConfirmingReservation/ConfirmReservationTests.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Tests/Reservations/CreatingTentativeReservation/CreateTentativeReservationCommandHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Tests/Reservations/CreatingTentativeReservation/CreateTentativeReservationCommandHandlerTests.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Tests/Reservations/CreatingTentativeReservation/CreateTentativeReservationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Tests/Reservations/CreatingTentativeReservation/CreateTentativeReservationTests.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Tests/Stubs/Ids/FakeIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Tests/Stubs/Ids/FakeIdGenerator.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Tests/Stubs/Reservations/FakeReservationNumberGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Tests/Stubs/Reservations/FakeReservationNumberGenerator.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Tests/Stubs/Storage/FakeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Tests/Stubs/Storage/FakeRepository.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.Tests/Tickets.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.Tests/Tickets.Tests.csproj -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets.sln -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Concerts/Concert.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Concerts/Concert.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Config.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Maintenance/Commands/RebuildProjection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Maintenance/Commands/RebuildProjection.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Maintenance/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Maintenance/Config.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Maintenance/MaintenanceCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Maintenance/MaintenanceCommandHandler.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/CancellingReservation/CancelReservation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/CancellingReservation/CancelReservation.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/CancellingReservation/ReservationCancelled.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/CancellingReservation/ReservationCancelled.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/ChangingReservationSeat/ChangeReservationSeat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/ChangingReservationSeat/ChangeReservationSeat.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/ChangingReservationSeat/ReservationSeatChanged.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/ChangingReservationSeat/ReservationSeatChanged.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/ConfirmingReservation/ConfirmReservation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/ConfirmingReservation/ConfirmReservation.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/ConfirmingReservation/ReservationConfirmed.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/ConfirmingReservation/ReservationConfirmed.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/CreatingTentativeReservation/CreateTentativeReservation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/CreatingTentativeReservation/CreateTentativeReservation.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/CreatingTentativeReservation/TentativeReservationCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/CreatingTentativeReservation/TentativeReservationCreated.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/GettingReservationAtVersion/GetReservationAtVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/GettingReservationAtVersion/GetReservationAtVersion.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/GettingReservationById/GetReservationById.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/GettingReservationById/GetReservationById.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/GettingReservationById/ReservationDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/GettingReservationById/ReservationDetails.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/GettingReservationHistory/GetReservationHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/GettingReservationHistory/GetReservationHistory.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/GettingReservationHistory/ReservationHistoryTransformation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/GettingReservationHistory/ReservationHistoryTransformation.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/GettingReservations/GetReservations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/GettingReservations/GetReservations.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/GettingReservations/ReservationShortInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/GettingReservations/ReservationShortInfo.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/NumberGeneration/ReservationNumberGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/NumberGeneration/ReservationNumberGenerator.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/Reservation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/Reservation.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/ReservationStatus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/ReservationStatus.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Reservations/ReservationsConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Reservations/ReservationsConfig.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Seats/Seat.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Seats/Seat.cs -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Tickets.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Tickets.csproj -------------------------------------------------------------------------------- /samples/DDD/Tickets/Tickets/Tickets/Ticket.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/DDD/Tickets/Tickets/Tickets/Ticket.cs -------------------------------------------------------------------------------- /samples/GoldenEye.WebApi.Sample/Controllers/ValuesController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/GoldenEye.WebApi.Sample/Controllers/ValuesController.cs -------------------------------------------------------------------------------- /samples/GoldenEye.WebApi.Sample/GoldenEye.WebApi.Sample.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/GoldenEye.WebApi.Sample/GoldenEye.WebApi.Sample.csproj -------------------------------------------------------------------------------- /samples/GoldenEye.WebApi.Sample/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/GoldenEye.WebApi.Sample/Program.cs -------------------------------------------------------------------------------- /samples/GoldenEye.WebApi.Sample/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/GoldenEye.WebApi.Sample/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/GoldenEye.WebApi.Sample/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/GoldenEye.WebApi.Sample/Startup.cs -------------------------------------------------------------------------------- /samples/GoldenEye.WebApi.Sample/appsettings.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/GoldenEye.WebApi.Sample/appsettings.Development.json -------------------------------------------------------------------------------- /samples/GoldenEye.WebApi.Sample/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/samples/GoldenEye.WebApi.Sample/appsettings.json -------------------------------------------------------------------------------- /src/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/.editorconfig -------------------------------------------------------------------------------- /src/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/.idea/.idea.GoldenEye/.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /workspace.xml -------------------------------------------------------------------------------- /src/.idea/.idea.GoldenEye/.idea/.name: -------------------------------------------------------------------------------- 1 | GoldenEye -------------------------------------------------------------------------------- /src/.idea/.idea.GoldenEye/.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/.idea/.idea.GoldenEye/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /src/.idea/.idea.GoldenEye/.idea/indexLayout.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/.idea/.idea.GoldenEye/.idea/indexLayout.xml -------------------------------------------------------------------------------- /src/.idea/.idea.GoldenEye/.idea/projectSettingsUpdater.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/.idea/.idea.GoldenEye/.idea/projectSettingsUpdater.xml -------------------------------------------------------------------------------- /src/.idea/.idea.GoldenEye/.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/.idea/.idea.GoldenEye/.idea/vcs.xml -------------------------------------------------------------------------------- /src/Core/Core.Tests.External/Contracts/Commands.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests.External/Contracts/Commands.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests.External/Contracts/Events.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests.External/Contracts/Events.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests.External/Contracts/Queries.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests.External/Contracts/Queries.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests.External/Core.Tests.External.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests.External/Core.Tests.External.csproj -------------------------------------------------------------------------------- /src/Core/Core.Tests.External/Handlers/CommandHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests.External/Handlers/CommandHandlers.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests.External/Handlers/EventHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests.External/Handlers/EventHandlers.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests.External/Handlers/QueryHandlers.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests.External/Handlers/QueryHandlers.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests/Core.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests/Core.Tests.csproj -------------------------------------------------------------------------------- /src/Core/Core.Tests/Events/Store/EventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests/Events/Store/EventStore.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests/Events/Store/EventStorePipelineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests/Events/Store/EventStorePipelineTests.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests/Extensions/Functions/Memoize/RecursionWithFunctionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests/Extensions/Functions/Memoize/RecursionWithFunctionTests.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests/Extensions/Functions/Memoize/RecursionWithLocalFunctionTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests/Extensions/Functions/Memoize/RecursionWithLocalFunctionTests.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests/Modules/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests/Modules/Registration.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests/Registration/AllHandlersRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests/Registration/AllHandlersRegistrationTests.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests/Registration/CommandHandlerRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests/Registration/CommandHandlerRegistrationTests.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests/Registration/EventHandlerRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests/Registration/EventHandlerRegistrationTests.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests/Registration/QueryHandlerRegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests/Registration/QueryHandlerRegistrationTests.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests/Registration/RegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests/Registration/RegistrationTests.cs -------------------------------------------------------------------------------- /src/Core/Core.Tests/Validation/ValidationPipelineTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core.Tests/Validation/ValidationPipelineTests.cs -------------------------------------------------------------------------------- /src/Core/Core/Aggregates/Aggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Aggregates/Aggregate.cs -------------------------------------------------------------------------------- /src/Core/Core/Aggregates/IAggregate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Aggregates/IAggregate.cs -------------------------------------------------------------------------------- /src/Core/Core/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Changelog.md -------------------------------------------------------------------------------- /src/Core/Core/Commands/CommandBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Commands/CommandBus.cs -------------------------------------------------------------------------------- /src/Core/Core/Commands/ICommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Commands/ICommand.cs -------------------------------------------------------------------------------- /src/Core/Core/Commands/ICommandBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Commands/ICommandBus.cs -------------------------------------------------------------------------------- /src/Core/Core/Commands/ICommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Commands/ICommandHandler.cs -------------------------------------------------------------------------------- /src/Core/Core/Commands/IExternalCommandBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Commands/IExternalCommandBus.cs -------------------------------------------------------------------------------- /src/Core/Core/Commands/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Core/Core/Configuration/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Configuration/Registration.cs -------------------------------------------------------------------------------- /src/Core/Core/Context/SaveChangesHandlers/AuditInfoSaveChangesHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Context/SaveChangesHandlers/AuditInfoSaveChangesHandler.cs -------------------------------------------------------------------------------- /src/Core/Core/Context/SaveChangesHandlers/Base/ISaveChangesHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Context/SaveChangesHandlers/Base/ISaveChangesHandler.cs -------------------------------------------------------------------------------- /src/Core/Core/Context/SaveChangesHandlers/ISaveChangesProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Context/SaveChangesHandlers/ISaveChangesProcessor.cs -------------------------------------------------------------------------------- /src/Core/Core/Context/SaveChangesHandlers/SaveChangesProcessor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Context/SaveChangesHandlers/SaveChangesProcessor.cs -------------------------------------------------------------------------------- /src/Core/Core/Core.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Core.csproj -------------------------------------------------------------------------------- /src/Core/Core/Entities/AuditableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Entities/AuditableEntity.cs -------------------------------------------------------------------------------- /src/Core/Core/Entities/Entity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Entities/Entity.cs -------------------------------------------------------------------------------- /src/Core/Core/Entities/EntityEntry.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Entities/EntityEntry.cs -------------------------------------------------------------------------------- /src/Core/Core/Entities/IAuditableEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Entities/IAuditableEntity.cs -------------------------------------------------------------------------------- /src/Core/Core/Entities/IEntity.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Entities/IEntity.cs -------------------------------------------------------------------------------- /src/Core/Core/Entities/IProvidesAuditInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Entities/IProvidesAuditInfo.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/Aggregate/AggregateEventsPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/Aggregate/AggregateEventsPublisher.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/Aggregate/IAggregateEventsPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/Aggregate/IAggregateEventsPublisher.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/Aggregate/NulloAggregateEventsPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/Aggregate/NulloAggregateEventsPublisher.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/EventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/EventBus.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/External/ExternalEventConsumerBackgroundWorker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/External/ExternalEventConsumerBackgroundWorker.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/External/IExternaEventProducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/External/IExternaEventProducer.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/External/IExternalEventConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/External/IExternalEventConsumer.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/External/NulloExternalEventProducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/External/NulloExternalEventProducer.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/IEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/IEvent.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/IEventBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/IEventBus.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/IEventHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/IEventHandler.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/IExternalEvent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/IExternalEvent.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/Store/EventStorePipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/Store/EventStorePipeline.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/Store/IEventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/Store/IEventStore.cs -------------------------------------------------------------------------------- /src/Core/Core/Events/Store/IEventStoreExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Events/Store/IEventStoreExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Exceptions/HttpExceptionWrapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Exceptions/HttpExceptionWrapper.cs -------------------------------------------------------------------------------- /src/Core/Core/Exceptions/NotFoundException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Exceptions/NotFoundException.cs -------------------------------------------------------------------------------- /src/Core/Core/Exceptions/OptimisticConcurrencyException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Exceptions/OptimisticConcurrencyException.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Basic/CompareExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Basic/CompareExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Basic/DateRangeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Basic/DateRangeExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Basic/DateTimeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Basic/DateTimeExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Basic/ObjectExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Basic/ObjectExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Basic/StringBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Basic/StringBuilderExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Basic/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Basic/StringExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Collections/ArrayExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Collections/ArrayExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Collections/CollectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Collections/CollectionExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Collections/DictionaryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Collections/DictionaryExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Collections/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Collections/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Collections/ListExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Collections/ListExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Collections/QueryableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Collections/QueryableExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Collections/QueueExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Collections/QueueExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/DependencyInjection/AssemblySelector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/DependencyInjection/AssemblySelector.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/DependencyInjection/RegistrationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/DependencyInjection/RegistrationExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Dynamic/DynamicExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Dynamic/DynamicExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Enums/EnumExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Enums/EnumExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Functions/Memoizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Functions/Memoizer.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Lambda/ExpressionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Lambda/ExpressionExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Lambda/ParameterRebinder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Lambda/ParameterRebinder.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Naming/ConventionNamesExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Naming/ConventionNamesExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Reflection/AttributeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Reflection/AttributeExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Reflection/ReflectionExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Reflection/ReflectionExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Serialization/SerializationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Serialization/SerializationExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Streams/StreamExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Streams/StreamExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Extensions/Threading/ThreadExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Extensions/Threading/ThreadExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/IdsGenerator/IIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/IdsGenerator/IIdGenerator.cs -------------------------------------------------------------------------------- /src/Core/Core/IdsGenerator/NulloIdGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/IdsGenerator/NulloIdGenerator.cs -------------------------------------------------------------------------------- /src/Core/Core/Mappings/IMappingDefinition.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Mappings/IMappingDefinition.cs -------------------------------------------------------------------------------- /src/Core/Core/Mappings/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Mappings/Registration.cs -------------------------------------------------------------------------------- /src/Core/Core/Modules/Attributes/InternalModuleAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Modules/Attributes/InternalModuleAttribute.cs -------------------------------------------------------------------------------- /src/Core/Core/Modules/Attributes/ProjectAssemblyAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Modules/Attributes/ProjectAssemblyAttribute.cs -------------------------------------------------------------------------------- /src/Core/Core/Modules/IModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Modules/IModule.cs -------------------------------------------------------------------------------- /src/Core/Core/Modules/Module.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Modules/Module.cs -------------------------------------------------------------------------------- /src/Core/Core/Modules/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Modules/Registration.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Audit/IAuditable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Audit/IAuditable.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Dates/DateRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Dates/DateRange.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Dates/IDateRange.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Dates/IDateRange.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/General/IHasName.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/General/IHasName.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/General/IHasParent.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/General/IHasParent.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/General/IHaveId.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/General/IHaveId.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/General/ObjectWithIdBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/General/ObjectWithIdBase.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Order/IOrderable.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Order/IOrderable.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Requests/EmptyRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Requests/EmptyRequest.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Requests/IEmptyRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Requests/IEmptyRequest.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Requests/IListRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Requests/IListRequest.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Requests/IRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Requests/IRequest.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Requests/ISingleRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Requests/ISingleRequest.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Requests/ListRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Requests/ListRequest.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Requests/SingleRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Requests/SingleRequest.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Responses/EmptyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Responses/EmptyResponse.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Responses/IEmptyResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Responses/IEmptyResponse.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Responses/IListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Responses/IListResponse.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Responses/IResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Responses/IResponse.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Responses/ISingleResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Responses/ISingleResponse.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Responses/ListResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Responses/ListResponse.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Responses/PagedResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Responses/PagedResponse.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Responses/SingleResponse.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Responses/SingleResponse.cs -------------------------------------------------------------------------------- /src/Core/Core/Objects/Versioning/IHaveVersion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Objects/Versioning/IHaveVersion.cs -------------------------------------------------------------------------------- /src/Core/Core/Queries/IListQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Queries/IListQuery.cs -------------------------------------------------------------------------------- /src/Core/Core/Queries/IQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Queries/IQuery.cs -------------------------------------------------------------------------------- /src/Core/Core/Queries/IQueryBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Queries/IQueryBus.cs -------------------------------------------------------------------------------- /src/Core/Core/Queries/IQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Queries/IQueryHandler.cs -------------------------------------------------------------------------------- /src/Core/Core/Queries/IView.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Queries/IView.cs -------------------------------------------------------------------------------- /src/Core/Core/Queries/QueryBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Queries/QueryBus.cs -------------------------------------------------------------------------------- /src/Core/Core/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Readme.md -------------------------------------------------------------------------------- /src/Core/Core/Registration/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Registration/Readme.md -------------------------------------------------------------------------------- /src/Core/Core/Registration/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Registration/Registration.cs -------------------------------------------------------------------------------- /src/Core/Core/Repositories/IReadonlyRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Repositories/IReadonlyRepository.cs -------------------------------------------------------------------------------- /src/Core/Core/Repositories/IRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Repositories/IRepository.cs -------------------------------------------------------------------------------- /src/Core/Core/Repositories/InMemoryReadonlyRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Repositories/InMemoryReadonlyRepository.cs -------------------------------------------------------------------------------- /src/Core/Core/Repositories/InMemoryRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Repositories/InMemoryRepository.cs -------------------------------------------------------------------------------- /src/Core/Core/Repositories/ReadonlyRepositoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Repositories/ReadonlyRepositoryExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Repositories/RepositoryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Repositories/RepositoryExtensions.cs -------------------------------------------------------------------------------- /src/Core/Core/Security/IUserInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Security/IUserInfo.cs -------------------------------------------------------------------------------- /src/Core/Core/Security/IUserInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Security/IUserInfoProvider.cs -------------------------------------------------------------------------------- /src/Core/Core/Security/UserInfoProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Security/UserInfoProvider.cs -------------------------------------------------------------------------------- /src/Core/Core/Services/CRUDService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Services/CRUDService.cs -------------------------------------------------------------------------------- /src/Core/Core/Services/ICRUDService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Services/ICRUDService.cs -------------------------------------------------------------------------------- /src/Core/Core/Services/IReadonlyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Services/IReadonlyService.cs -------------------------------------------------------------------------------- /src/Core/Core/Services/IService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Services/IService.cs -------------------------------------------------------------------------------- /src/Core/Core/Services/ReadonlyService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Services/ReadonlyService.cs -------------------------------------------------------------------------------- /src/Core/Core/Utils/Assemblies/AssembliesProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Utils/Assemblies/AssembliesProvider.cs -------------------------------------------------------------------------------- /src/Core/Core/Utils/Assemblies/TypeProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Utils/Assemblies/TypeProvider.cs -------------------------------------------------------------------------------- /src/Core/Core/Utils/Coding/Switch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Utils/Coding/Switch.cs -------------------------------------------------------------------------------- /src/Core/Core/Utils/Collections/CollectionToCSVConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Utils/Collections/CollectionToCSVConverter.cs -------------------------------------------------------------------------------- /src/Core/Core/Utils/Exceptions/Guard.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Utils/Exceptions/Guard.cs -------------------------------------------------------------------------------- /src/Core/Core/Utils/Exceptions/IExceptionHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Utils/Exceptions/IExceptionHandler.cs -------------------------------------------------------------------------------- /src/Core/Core/Utils/Exceptions/IExceptionProvider.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Utils/Exceptions/IExceptionProvider.cs -------------------------------------------------------------------------------- /src/Core/Core/Utils/MessageBus/IMessage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Utils/MessageBus/IMessage.cs -------------------------------------------------------------------------------- /src/Core/Core/Utils/MessageBus/IMessageBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Utils/MessageBus/IMessageBus.cs -------------------------------------------------------------------------------- /src/Core/Core/Utils/MessageBus/IMessageHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Utils/MessageBus/IMessageHandler.cs -------------------------------------------------------------------------------- /src/Core/Core/Utils/MessageBus/MessageBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Utils/MessageBus/MessageBus.cs -------------------------------------------------------------------------------- /src/Core/Core/Utils/Serialization/DateTimeJsonConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Utils/Serialization/DateTimeJsonConverter.cs -------------------------------------------------------------------------------- /src/Core/Core/Utils/Serialization/JsonSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Utils/Serialization/JsonSerializer.cs -------------------------------------------------------------------------------- /src/Core/Core/Utils/Threading/NoSynchronizationContextScope.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Utils/Threading/NoSynchronizationContextScope.cs -------------------------------------------------------------------------------- /src/Core/Core/Validation/ValidationPipeline.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Core/Core/Validation/ValidationPipeline.cs -------------------------------------------------------------------------------- /src/Dapper/Dapper.Integration.Tests/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper.Integration.Tests/Changelog.md -------------------------------------------------------------------------------- /src/Dapper/Dapper.Integration.Tests/Dapper.Integration.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper.Integration.Tests/Dapper.Integration.Tests.csproj -------------------------------------------------------------------------------- /src/Dapper/Dapper.Integration.Tests/Infrastructure/DapperTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper.Integration.Tests/Infrastructure/DapperTest.cs -------------------------------------------------------------------------------- /src/Dapper/Dapper.Integration.Tests/Repositories/DapperRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper.Integration.Tests/Repositories/DapperRepositoryTests.cs -------------------------------------------------------------------------------- /src/Dapper/Dapper.Integration.Tests/TestData/Structure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper.Integration.Tests/TestData/Structure.cs -------------------------------------------------------------------------------- /src/Dapper/Dapper.Tests/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper.Tests/Changelog.md -------------------------------------------------------------------------------- /src/Dapper/Dapper.Tests/Dapper.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper.Tests/Dapper.Tests.csproj -------------------------------------------------------------------------------- /src/Dapper/Dapper.Tests/Mappings/RegistrationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper.Tests/Mappings/RegistrationTests.cs -------------------------------------------------------------------------------- /src/Dapper/Dapper/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper/Changelog.md -------------------------------------------------------------------------------- /src/Dapper/Dapper/Dapper.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper/Dapper.csproj -------------------------------------------------------------------------------- /src/Dapper/Dapper/Generators/IDapperSqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper/Generators/IDapperSqlGenerator.cs -------------------------------------------------------------------------------- /src/Dapper/Dapper/Generators/MappingsSqlGenerator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper/Generators/MappingsSqlGenerator.cs -------------------------------------------------------------------------------- /src/Dapper/Dapper/Mappings/IDapperMapping.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper/Mappings/IDapperMapping.cs -------------------------------------------------------------------------------- /src/Dapper/Dapper/Mappings/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper/Mappings/Registration.cs -------------------------------------------------------------------------------- /src/Dapper/Dapper/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper/Readme.md -------------------------------------------------------------------------------- /src/Dapper/Dapper/Repositories/DapperRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Dapper/Dapper/Repositories/DapperRepository.cs -------------------------------------------------------------------------------- /src/Directory.build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Directory.build.props -------------------------------------------------------------------------------- /src/ElasticSearch/ElasticSearch.Integration.Tests/ElasticSearch.Integration.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/ElasticSearch/ElasticSearch.Integration.Tests/ElasticSearch.Integration.Tests.csproj -------------------------------------------------------------------------------- /src/ElasticSearch/ElasticSearch.Tests/ElasticSearch.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/ElasticSearch/ElasticSearch.Tests/ElasticSearch.Tests.csproj -------------------------------------------------------------------------------- /src/ElasticSearch/ElasticSearch/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/ElasticSearch/ElasticSearch/Changelog.md -------------------------------------------------------------------------------- /src/ElasticSearch/ElasticSearch/ElasticSearch.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/ElasticSearch/ElasticSearch/ElasticSearch.csproj -------------------------------------------------------------------------------- /src/ElasticSearch/ElasticSearch/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/ElasticSearch/ElasticSearch/Readme.md -------------------------------------------------------------------------------- /src/ElasticSearch/ElasticSearch/Repositories/ElasticSearchRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/ElasticSearch/ElasticSearch/Repositories/ElasticSearchRepository.cs -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework.Integration.Tests/EntityFramework.Integration.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework.Integration.Tests/EntityFramework.Integration.Tests.csproj -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework.Integration.Tests/Infrastructure/EntityFrameworkTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework.Integration.Tests/Infrastructure/EntityFrameworkTest.cs -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework.Integration.Tests/Migrations/20200503181242_InitialCreate.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework.Integration.Tests/Migrations/20200503181242_InitialCreate.Designer.cs -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework.Integration.Tests/Migrations/20200503181242_InitialCreate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework.Integration.Tests/Migrations/20200503181242_InitialCreate.cs -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework.Integration.Tests/Migrations/UsersDbContextModelSnapshot.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework.Integration.Tests/Migrations/UsersDbContextModelSnapshot.cs -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework.Integration.Tests/Repositories/EntityFrameworkRepositoryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework.Integration.Tests/Repositories/EntityFrameworkRepositoryTests.cs -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework.Integration.Tests/TestData/Structure.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework.Integration.Tests/TestData/Structure.cs -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework.Integration.Tests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework.Integration.Tests/appsettings.json -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework/Changelog.md -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework/EntityFramework.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework/EntityFramework.csproj -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework/Migrations/EntityFrameworkDbContextMigrationRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework/Migrations/EntityFrameworkDbContextMigrationRunner.cs -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework/Migrations/EntityFrameworkMigrationsRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework/Migrations/EntityFrameworkMigrationsRunner.cs -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework/Migrations/IEntityFrameworkDbContextMigrationRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework/Migrations/IEntityFrameworkDbContextMigrationRunner.cs -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework/Migrations/IEntityFrameworkMigrationsRunner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework/Migrations/IEntityFrameworkMigrationsRunner.cs -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework/Readme.md -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework/Registration/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework/Registration/Registration.cs -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework/Repositories/DesignTypeDbContextFactory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework/Repositories/DesignTypeDbContextFactory.cs -------------------------------------------------------------------------------- /src/EntityFramework/EntityFramework/Repositories/EntityFrameworkRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/EntityFramework/EntityFramework/Repositories/EntityFrameworkRepository.cs -------------------------------------------------------------------------------- /src/GoldenEye.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/GoldenEye.sln -------------------------------------------------------------------------------- /src/Kafka/Kafka.Integration.Tests/Kafka.Integration.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Kafka/Kafka.Integration.Tests/Kafka.Integration.Tests.csproj -------------------------------------------------------------------------------- /src/Kafka/Kafka.Tests/Kafka.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Kafka/Kafka.Tests/Kafka.Tests.csproj -------------------------------------------------------------------------------- /src/Kafka/Kafka/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Kafka/Kafka/Changelog.md -------------------------------------------------------------------------------- /src/Kafka/Kafka/Consumers/KafkaConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Kafka/Kafka/Consumers/KafkaConsumer.cs -------------------------------------------------------------------------------- /src/Kafka/Kafka/Consumers/KafkaConsumerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Kafka/Kafka/Consumers/KafkaConsumerConfig.cs -------------------------------------------------------------------------------- /src/Kafka/Kafka/Kafka.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Kafka/Kafka/Kafka.csproj -------------------------------------------------------------------------------- /src/Kafka/Kafka/Producers/KafkaProducer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Kafka/Kafka/Producers/KafkaProducer.cs -------------------------------------------------------------------------------- /src/Kafka/Kafka/Producers/KafkaProducerConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Kafka/Kafka/Producers/KafkaProducerConfig.cs -------------------------------------------------------------------------------- /src/Kafka/Kafka/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Kafka/Kafka/Readme.md -------------------------------------------------------------------------------- /src/Kafka/Kafka/Registrations/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Kafka/Kafka/Registrations/Registration.cs -------------------------------------------------------------------------------- /src/Marten/Marten.Integration.Tests/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Marten/Marten.Integration.Tests/Changelog.md -------------------------------------------------------------------------------- /src/Marten/Marten.Integration.Tests/Events/Storage/MartenEventStoreTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Marten/Marten.Integration.Tests/Events/Storage/MartenEventStoreTests.cs -------------------------------------------------------------------------------- /src/Marten/Marten.Integration.Tests/Infrastructure/MartenTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Marten/Marten.Integration.Tests/Infrastructure/MartenTest.cs -------------------------------------------------------------------------------- /src/Marten/Marten.Integration.Tests/Marten.Integration.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Marten/Marten.Integration.Tests/Marten.Integration.Tests.csproj -------------------------------------------------------------------------------- /src/Marten/Marten.Integration.Tests/Readme.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Marten/Marten/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Marten/Marten/Changelog.md -------------------------------------------------------------------------------- /src/Marten/Marten/Events/Storage/MartenEventStore.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Marten/Marten/Events/Storage/MartenEventStore.cs -------------------------------------------------------------------------------- /src/Marten/Marten/Marten.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Marten/Marten/Marten.csproj -------------------------------------------------------------------------------- /src/Marten/Marten/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Marten/Marten/Readme.md -------------------------------------------------------------------------------- /src/Marten/Marten/Registration/MartenConfig.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Marten/Marten/Registration/MartenConfig.cs -------------------------------------------------------------------------------- /src/Marten/Marten/Registration/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Marten/Marten/Registration/Registration.cs -------------------------------------------------------------------------------- /src/Marten/Marten/Repositories/MartenDocumentRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Marten/Marten/Repositories/MartenDocumentRepository.cs -------------------------------------------------------------------------------- /src/Marten/Marten/Repositories/MartenEventSourcedRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Marten/Marten/Repositories/MartenEventSourcedRepository.cs -------------------------------------------------------------------------------- /src/Testing/Testing/AggregateExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Testing/Testing/AggregateExtensions.cs -------------------------------------------------------------------------------- /src/Testing/Testing/ApiFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Testing/Testing/ApiFixture.cs -------------------------------------------------------------------------------- /src/Testing/Testing/DummyExternalCommandBus.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Testing/Testing/DummyExternalCommandBus.cs -------------------------------------------------------------------------------- /src/Testing/Testing/DummyExternalEventConsumer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Testing/Testing/DummyExternalEventConsumer.cs -------------------------------------------------------------------------------- /src/Testing/Testing/DummyExternalEventPublisher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Testing/Testing/DummyExternalEventPublisher.cs -------------------------------------------------------------------------------- /src/Testing/Testing/EventListener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Testing/Testing/EventListener.cs -------------------------------------------------------------------------------- /src/Testing/Testing/FakeRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Testing/Testing/FakeRepository.cs -------------------------------------------------------------------------------- /src/Testing/Testing/ResponseExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Testing/Testing/ResponseExtensions.cs -------------------------------------------------------------------------------- /src/Testing/Testing/SerializationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Testing/Testing/SerializationExtensions.cs -------------------------------------------------------------------------------- /src/Testing/Testing/TestContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Testing/Testing/TestContext.cs -------------------------------------------------------------------------------- /src/Testing/Testing/Testing.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/Testing/Testing/Testing.csproj -------------------------------------------------------------------------------- /src/WebApi/WebApi.Tests/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi.Tests/Changelog.md -------------------------------------------------------------------------------- /src/WebApi/WebApi.Tests/Exceptions/ExceptionHandlingMiddlewareTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi.Tests/Exceptions/ExceptionHandlingMiddlewareTests.cs -------------------------------------------------------------------------------- /src/WebApi/WebApi.Tests/Exceptions/ExceptionToHttpStatusMapperTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi.Tests/Exceptions/ExceptionToHttpStatusMapperTests.cs -------------------------------------------------------------------------------- /src/WebApi/WebApi.Tests/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi.Tests/Readme.md -------------------------------------------------------------------------------- /src/WebApi/WebApi.Tests/WebApi.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi.Tests/WebApi.Tests.csproj -------------------------------------------------------------------------------- /src/WebApi/WebApi/Changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi/Changelog.md -------------------------------------------------------------------------------- /src/WebApi/WebApi/Controllers/ReadonlyControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi/Controllers/ReadonlyControllerBase.cs -------------------------------------------------------------------------------- /src/WebApi/WebApi/Controllers/RestControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi/Controllers/RestControllerBase.cs -------------------------------------------------------------------------------- /src/WebApi/WebApi/Exceptions/ExceptionHandlingMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi/Exceptions/ExceptionHandlingMiddleware.cs -------------------------------------------------------------------------------- /src/WebApi/WebApi/Exceptions/ExceptionToHttpStatusMapper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi/Exceptions/ExceptionToHttpStatusMapper.cs -------------------------------------------------------------------------------- /src/WebApi/WebApi/Modules/IWebApiModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi/Modules/IWebApiModule.cs -------------------------------------------------------------------------------- /src/WebApi/WebApi/Modules/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi/Modules/Registration.cs -------------------------------------------------------------------------------- /src/WebApi/WebApi/Modules/WebApiModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi/Modules/WebApiModule.cs -------------------------------------------------------------------------------- /src/WebApi/WebApi/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi/Readme.md -------------------------------------------------------------------------------- /src/WebApi/WebApi/Registration/Registration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi/Registration/Registration.cs -------------------------------------------------------------------------------- /src/WebApi/WebApi/WebApi.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oskardudycz/GoldenEye/HEAD/src/WebApi/WebApi/WebApi.csproj --------------------------------------------------------------------------------