├── .editorconfig ├── .gitattributes ├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── dotnet.yml │ └── merge.yml ├── .gitignore ├── LICENSE ├── MediatR.CommandQuery.sln ├── README.md ├── coverlet.runsettings ├── docs ├── assets │ └── logo.png ├── docfx.json ├── guide │ ├── behaviors │ │ ├── abstracts.md │ │ ├── audit.md │ │ ├── caching.md │ │ ├── delete.md │ │ ├── tenant.md │ │ └── validation.md │ ├── commands │ │ ├── abstracts.md │ │ ├── create.md │ │ ├── delete.md │ │ ├── patch.md │ │ ├── update.md │ │ └── upsert.md │ ├── handlers │ │ ├── cosmos.md │ │ ├── entityFramework.md │ │ └── mongo.md │ ├── index.md │ ├── queries │ │ ├── abstracts.md │ │ ├── caching.md │ │ ├── filters.md │ │ ├── identifier.md │ │ ├── identifiers.md │ │ ├── list.md │ │ └── paged.md │ ├── quickStart.md │ ├── scripts.md │ └── toc.yml ├── index.md ├── reference │ ├── .gitignore │ └── index.md ├── template │ └── public │ │ └── main.css └── toc.yml ├── logo.png ├── mkdocs.yml ├── samples ├── Tracker.WebService.EntityFrameworkCore │ ├── Data │ │ ├── DataServiceRegistration.cs │ │ ├── Entities │ │ │ ├── Audit.cs │ │ │ ├── Priority.cs │ │ │ ├── Role.cs │ │ │ ├── Status.cs │ │ │ ├── Task.cs │ │ │ ├── User.cs │ │ │ ├── UserLogin.cs │ │ │ └── UserRole.cs │ │ ├── Mapping │ │ │ ├── AuditMap.cs │ │ │ ├── PriorityMap.cs │ │ │ ├── RoleMap.cs │ │ │ ├── StatusMap.cs │ │ │ ├── TaskMap.cs │ │ │ ├── UserLoginMap.cs │ │ │ ├── UserMap.cs │ │ │ └── UserRoleMap.cs │ │ └── TrackerServiceContext.cs │ ├── Domain │ │ ├── Audit │ │ │ ├── AuditServiceRegistration.cs │ │ │ ├── Mapping │ │ │ │ └── AuditProfile.cs │ │ │ ├── Models │ │ │ │ ├── AuditCreateModel.cs │ │ │ │ ├── AuditReadModel.cs │ │ │ │ └── AuditUpdateModel.cs │ │ │ └── Validation │ │ │ │ ├── AuditCreateModelValidator.cs │ │ │ │ └── AuditUpdateModelValidator.cs │ │ ├── DomainJsonContext.cs │ │ ├── DomainServiceRegistration.cs │ │ ├── EntityCreateModel.cs │ │ ├── EntityReadModel.cs │ │ ├── EntityUpdateModel.cs │ │ ├── Jobs │ │ │ ├── Commands │ │ │ │ └── BackgroundUpdateCommand.cs │ │ │ ├── Handlers │ │ │ │ └── BackgroundUpdateHandler.cs │ │ │ └── JobServiceRegistration.cs │ │ ├── Priority │ │ │ ├── Mapping │ │ │ │ └── PriorityProfile.cs │ │ │ ├── Models │ │ │ │ ├── PriorityCreateModel.cs │ │ │ │ ├── PriorityReadModel.cs │ │ │ │ └── PriorityUpdateModel.cs │ │ │ ├── PriorityServiceRegistration.cs │ │ │ └── Validation │ │ │ │ ├── PriorityCreateModelValidator.cs │ │ │ │ └── PriorityUpdateModelValidator.cs │ │ ├── Role │ │ │ ├── Mapping │ │ │ │ └── RoleProfile.cs │ │ │ ├── Models │ │ │ │ ├── RoleCreateModel.cs │ │ │ │ ├── RoleReadModel.cs │ │ │ │ └── RoleUpdateModel.cs │ │ │ ├── RoleServiceRegistration.cs │ │ │ └── Validation │ │ │ │ ├── RoleCreateModelValidator.cs │ │ │ │ └── RoleUpdateModelValidator.cs │ │ ├── Status │ │ │ ├── Mapping │ │ │ │ └── StatusProfile.cs │ │ │ ├── Models │ │ │ │ ├── StatusCreateModel.cs │ │ │ │ ├── StatusReadModel.cs │ │ │ │ └── StatusUpdateModel.cs │ │ │ ├── StatusServiceRegistration.cs │ │ │ └── Validation │ │ │ │ ├── StatusCreateModelValidator.cs │ │ │ │ └── StatusUpdateModelValidator.cs │ │ ├── Task │ │ │ ├── Mapping │ │ │ │ └── TaskProfile.cs │ │ │ ├── Models │ │ │ │ ├── TaskCreateModel.cs │ │ │ │ ├── TaskReadModel.cs │ │ │ │ └── TaskUpdateModel.cs │ │ │ ├── TaskServiceRegistration.cs │ │ │ └── Validation │ │ │ │ ├── TaskCreateModelValidator.cs │ │ │ │ └── TaskUpdateModelValidator.cs │ │ ├── User │ │ │ ├── Mapping │ │ │ │ └── UserProfile.cs │ │ │ ├── Models │ │ │ │ ├── UserCreateModel.cs │ │ │ │ ├── UserReadModel.cs │ │ │ │ └── UserUpdateModel.cs │ │ │ ├── UserServiceRegistration.cs │ │ │ └── Validation │ │ │ │ ├── UserCreateModelValidator.cs │ │ │ │ └── UserUpdateModelValidator.cs │ │ └── UserLogin │ │ │ ├── Mapping │ │ │ └── UserLoginProfile.cs │ │ │ ├── Models │ │ │ ├── UserLoginCreateModel.cs │ │ │ ├── UserLoginReadModel.cs │ │ │ └── UserLoginUpdateModel.cs │ │ │ ├── UserLoginServiceRegistration.cs │ │ │ └── Validation │ │ │ ├── UserLoginCreateModelValidator.cs │ │ │ └── UserLoginUpdateModelValidator.cs │ ├── Endpoints │ │ ├── AuditEndpoint.cs │ │ ├── JobEndpoint.cs │ │ ├── PriorityEndpoint.cs │ │ ├── RoleEndpoint.cs │ │ ├── StatusEndpoint.cs │ │ ├── TaskEndpoint.cs │ │ ├── UserEndpoint.cs │ │ └── UserLoginEndpoint.cs │ ├── GlobalUsings.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Tracker.WebService.EntityFrameworkCore.csproj │ ├── appsettings.json │ └── generation.yml ├── Tracker.WebService.MongoDB │ ├── Controllers │ │ ├── AuditController.cs │ │ ├── PriorityController.cs │ │ ├── RoleController.cs │ │ ├── StatusController.cs │ │ ├── TaskController.cs │ │ ├── UserController.cs │ │ └── UserLoginController.cs │ ├── Data │ │ ├── DataServiceRegistration.cs │ │ ├── Entities │ │ │ ├── Audit.cs │ │ │ ├── Priority.cs │ │ │ ├── Role.cs │ │ │ ├── Status.cs │ │ │ ├── Task.cs │ │ │ ├── User.cs │ │ │ └── UserLogin.cs │ │ └── Repositories │ │ │ ├── AuditRepository.cs │ │ │ ├── PriorityRepository.cs │ │ │ ├── RoleRepository.cs │ │ │ ├── StatusRepository.cs │ │ │ ├── TaskRepository.cs │ │ │ ├── UserLoginRepository.cs │ │ │ └── UserRepository.cs │ ├── Domain │ │ ├── Audit │ │ │ ├── AuditServiceRegistration.cs │ │ │ ├── Mapping │ │ │ │ └── AuditProfile.cs │ │ │ ├── Models │ │ │ │ ├── AuditCreateModel.cs │ │ │ │ ├── AuditReadModel.cs │ │ │ │ └── AuditUpdateModel.cs │ │ │ └── Validation │ │ │ │ ├── AuditCreateModelValidator.cs │ │ │ │ └── AuditUpdateModelValidator.cs │ │ ├── DomainServiceRegistration.cs │ │ ├── EntityCreateModel.cs │ │ ├── EntityReadModel.cs │ │ ├── EntityUpdateModel.cs │ │ ├── Priority │ │ │ ├── Mapping │ │ │ │ └── PriorityProfile.cs │ │ │ ├── Models │ │ │ │ ├── PriorityCreateModel.cs │ │ │ │ ├── PriorityReadModel.cs │ │ │ │ └── PriorityUpdateModel.cs │ │ │ ├── PriorityServiceRegistration.cs │ │ │ └── Validation │ │ │ │ ├── PriorityCreateModelValidator.cs │ │ │ │ └── PriorityUpdateModelValidator.cs │ │ ├── Role │ │ │ ├── Mapping │ │ │ │ └── RoleProfile.cs │ │ │ ├── Models │ │ │ │ ├── RoleCreateModel.cs │ │ │ │ ├── RoleReadModel.cs │ │ │ │ └── RoleUpdateModel.cs │ │ │ ├── RoleServiceRegistration.cs │ │ │ └── Validation │ │ │ │ ├── RoleCreateModelValidator.cs │ │ │ │ └── RoleUpdateModelValidator.cs │ │ ├── Status │ │ │ ├── Mapping │ │ │ │ └── StatusProfile.cs │ │ │ ├── Models │ │ │ │ ├── StatusCreateModel.cs │ │ │ │ ├── StatusReadModel.cs │ │ │ │ └── StatusUpdateModel.cs │ │ │ ├── StatusServiceRegistration.cs │ │ │ └── Validation │ │ │ │ ├── StatusCreateModelValidator.cs │ │ │ │ └── StatusUpdateModelValidator.cs │ │ ├── Task │ │ │ ├── Handlers │ │ │ │ └── TaskChangedNotificationHandler.cs │ │ │ ├── Mapping │ │ │ │ └── TaskProfile.cs │ │ │ ├── Models │ │ │ │ ├── TaskCreateModel.cs │ │ │ │ ├── TaskReadModel.cs │ │ │ │ └── TaskUpdateModel.cs │ │ │ ├── TaskServiceRegistration.cs │ │ │ └── Validation │ │ │ │ ├── TaskCreateModelValidator.cs │ │ │ │ └── TaskUpdateModelValidator.cs │ │ ├── User │ │ │ ├── Mapping │ │ │ │ └── UserProfile.cs │ │ │ ├── Models │ │ │ │ ├── UserCreateModel.cs │ │ │ │ ├── UserReadModel.cs │ │ │ │ └── UserUpdateModel.cs │ │ │ ├── UserServiceRegistration.cs │ │ │ └── Validation │ │ │ │ ├── UserCreateModelValidator.cs │ │ │ │ └── UserUpdateModelValidator.cs │ │ └── UserLogin │ │ │ ├── Mapping │ │ │ └── UserLoginProfile.cs │ │ │ ├── Models │ │ │ └── UserLoginReadModel.cs │ │ │ └── UserLoginServiceRegistration.cs │ ├── Program.cs │ ├── Properties │ │ └── launchSettings.json │ ├── Startup.cs │ ├── Tracker.WebService.MongoDB.csproj │ └── appsettings.json └── TrackerService.sql ├── src ├── Directory.Build.props ├── MediatR.CommandQuery.Audit │ ├── AuditOperation.cs │ ├── AuditRecord.cs │ ├── AuditServiceExtensions.cs │ ├── ChangeCollector.cs │ ├── IChangeCollector.cs │ └── MediatR.CommandQuery.Audit.csproj ├── MediatR.CommandQuery.Cosmos │ ├── CosmosKey.cs │ ├── DomainServiceExtensions.cs │ ├── Handlers │ │ ├── EntityCreateCommandHandler.cs │ │ ├── EntityDeleteCommandHandler.cs │ │ ├── EntityIdentifierQueryHandler.cs │ │ ├── EntityIdentifiersQueryHandler.cs │ │ ├── EntityPagedQueryHandler.cs │ │ ├── EntityPatchCommandHandler.cs │ │ ├── EntitySelectQueryHandler.cs │ │ ├── EntityUpdateCommandHandler.cs │ │ ├── EntityUpsertCommandHandler.cs │ │ └── RepositoryHandlerBase.cs │ └── MediatR.CommandQuery.Cosmos.csproj ├── MediatR.CommandQuery.Endpoints │ ├── DispatcherEndpoint.cs │ ├── EntityCommandEndpointBase.cs │ ├── EntityQueryEndpointBase.cs │ ├── FeatureEndpointBase.cs │ ├── FeatureEndpointExtensions.cs │ ├── IFeatureEndpoint.cs │ ├── MediatR.CommandQuery.Endpoints.csproj │ ├── ProblemDetailsCustomizer.cs │ └── RouteHandlerBuilderExtensions.cs ├── MediatR.CommandQuery.EntityFrameworkCore │ ├── DomainServiceExtensions.cs │ ├── Handlers │ │ ├── DataContextHandlerBase.cs │ │ ├── EntityCreateCommandHandler.cs │ │ ├── EntityDataContextHandlerBase.cs │ │ ├── EntityDeleteCommandHandler.cs │ │ ├── EntityIdentifierQueryHandler.cs │ │ ├── EntityIdentifiersQueryHandler.cs │ │ ├── EntityPagedQueryHandler.cs │ │ ├── EntityPatchCommandHandler.cs │ │ ├── EntitySelectQueryHandler.cs │ │ ├── EntityUpdateCommandHandler.cs │ │ └── EntityUpsertCommandHandler.cs │ └── MediatR.CommandQuery.EntityFrameworkCore.csproj ├── MediatR.CommandQuery.Hangfire │ ├── HangfireConfigurationExtensions.cs │ ├── IMediatorDispatcher.cs │ ├── MediatR.CommandQuery.Hangfire.csproj │ ├── MediatorDispatcher.cs │ └── MediatorExtensions.cs ├── MediatR.CommandQuery.Identity │ └── MediatR.CommandQuery.Identity.csproj ├── MediatR.CommandQuery.MongoDB │ ├── DomainServiceExtensions.cs │ ├── Handlers │ │ ├── EntityCreateCommandHandler.cs │ │ ├── EntityDeleteCommandHandler.cs │ │ ├── EntityIdentifierQueryHandler.cs │ │ ├── EntityIdentifiersQueryHandler.cs │ │ ├── EntityPagedQueryHandler.cs │ │ ├── EntityPatchCommandHandler.cs │ │ ├── EntitySelectQueryHandler.cs │ │ ├── EntityUpdateCommandHandler.cs │ │ ├── EntityUpsertCommandHandler.cs │ │ └── RepositoryHandlerBase.cs │ └── MediatR.CommandQuery.MongoDB.csproj ├── MediatR.CommandQuery.Mvc │ ├── EntityCommandControllerBase.cs │ ├── EntityQueryControllerBase.cs │ ├── JsonExceptionMiddleware.cs │ ├── MediatR.CommandQuery.Mvc.csproj │ └── MediatorControllerBase.cs └── MediatR.CommandQuery │ ├── Behaviors │ ├── DeletedFilterBehaviorBase.cs │ ├── DeletedPagedQueryBehavior.cs │ ├── DeletedSelectQueryBehavior.cs │ ├── DistributedCacheQueryBehavior.cs │ ├── EntityChangeNotificationBehavior.cs │ ├── HybridCacheExpireBehavior.cs │ ├── HybridCacheQueryBehavior.cs │ ├── MemoryCacheQueryBehavior.cs │ ├── PipelineBehaviorBase.cs │ ├── TenantAuthenticateCommandBehavior.cs │ ├── TenantDefaultCommandBehavior.cs │ ├── TenantFilterBehaviorBase.cs │ ├── TenantPagedQueryBehavior.cs │ ├── TenantSelectQueryBehavior.cs │ ├── TrackChangeCommandBehavior.cs │ └── ValidateEntityModelCommandBehavior.cs │ ├── Commands │ ├── EntityCreateCommand.cs │ ├── EntityDeleteCommand.cs │ ├── EntityIdentifierCommand.cs │ ├── EntityIdentifiersCommand.cs │ ├── EntityModelCommand.cs │ ├── EntityPatchCommand.cs │ ├── EntityUpdateCommand.cs │ ├── EntityUpsertCommand.cs │ └── PrincipalCommandBase.cs │ ├── Converters │ ├── ClaimsPrincipalConverter.cs │ ├── EntityFilterConverter.cs │ └── PolymorphicConverter.cs │ ├── Definitions │ ├── ICacheExpire.cs │ ├── ICacheResult.cs │ ├── IDistributedCacheSerializer.cs │ ├── IHaveIdentifier.cs │ ├── IHaveTenant.cs │ ├── IPrincipalReader.cs │ ├── ISupportSearch.cs │ ├── ITenantResolver.cs │ ├── ITrackConcurrency.cs │ ├── ITrackCreated.cs │ ├── ITrackDeleted.cs │ ├── ITrackHistory.cs │ └── ITrackUpdated.cs │ ├── Dispatcher │ ├── DispatchRequest.cs │ ├── DispatcherDataService.cs │ ├── DispatcherOptions.cs │ ├── IDispatcher.cs │ ├── IDispatcherDataService.cs │ ├── MediatorDispatcher.cs │ └── RemoteDispatcher.cs │ ├── DomainException.cs │ ├── Extensions │ ├── EnumerableExtensions.cs │ ├── QueryExtensions.cs │ ├── RandomExtensions.cs │ ├── StringExtensions.cs │ └── TypeExtensions.cs │ ├── Handlers │ └── RequestHandlerBase.cs │ ├── MediatR.CommandQuery.csproj │ ├── MediatorJsonContext.cs │ ├── MediatorServiceExtensions.cs │ ├── Models │ ├── CompleteModel.cs │ ├── EntityCreateModel.cs │ ├── EntityIdentifierModel.cs │ ├── EntityIdentifiersModel.cs │ ├── EntityReadModel.cs │ ├── EntityUpdateModel.cs │ └── ProblemDetails.cs │ ├── Notifications │ ├── EntityChangeNotification.cs │ └── EntityChangeOperation.cs │ ├── Queries │ ├── CacheableQueryBase.cs │ ├── EntityContinuationQuery.cs │ ├── EntityContinuationResult.cs │ ├── EntityFilter.cs │ ├── EntityFilterBuilder.cs │ ├── EntityFilterLogic.cs │ ├── EntityFilterOperators.cs │ ├── EntityIdentifierQuery.cs │ ├── EntityIdentifiersQuery.cs │ ├── EntityPagedQuery.cs │ ├── EntityPagedResult.cs │ ├── EntityQuery.cs │ ├── EntitySelect.cs │ ├── EntitySelectQuery.cs │ ├── EntitySort.cs │ ├── EntitySortDirections.cs │ ├── LinqExpressionBuilder.cs │ └── PrincipalQueryBase.cs │ └── Services │ ├── CacheTagger.cs │ ├── ClaimNames.cs │ ├── PrincipalReader.cs │ ├── QueryStringEncoder.cs │ ├── StringBuilderCache.cs │ └── UrlBuilder.cs ├── templates ├── DomainJsonContext.csx ├── DomainServiceRegistration.csx ├── EntityController.csx └── EntityEndpoint.csx └── test ├── Directory.Build.props ├── MediatR.CommandQuery.Cosmos.Tests ├── Acceptance │ ├── AuditTests.cs │ ├── PriorityTests.cs │ └── TaskTests.cs ├── Constants │ ├── PriorityConstants.cs │ ├── StatusConstants.cs │ ├── TenantConstants.cs │ └── UserConstants.cs ├── CosmosKeyTests.cs ├── Data │ ├── Entities │ │ ├── Audit.cs │ │ ├── Priority.cs │ │ ├── Role.cs │ │ ├── Status.cs │ │ ├── Task.cs │ │ ├── Tenant.cs │ │ ├── User.cs │ │ └── UserLogin.cs │ └── Repositories │ │ ├── AuditRepository.cs │ │ ├── PriorityRepository.cs │ │ ├── RoleRepository.cs │ │ ├── StatusRepository.cs │ │ ├── TaskRepository.cs │ │ ├── TenantRepository.cs │ │ ├── UserLoginRepository.cs │ │ └── UserRepository.cs ├── DatabaseCollection.cs ├── DatabaseFixture.cs ├── DatabaseInitializer.cs ├── DatabaseTestBase.cs ├── Domain │ ├── Audit │ │ ├── AuditServiceRegistration.cs │ │ ├── Mapping │ │ │ └── AuditProfile.cs │ │ ├── Models │ │ │ ├── AuditCreateModel.cs │ │ │ ├── AuditReadModel.cs │ │ │ └── AuditUpdateModel.cs │ │ └── Validation │ │ │ ├── AuditCreateModelValidator.cs │ │ │ └── AuditUpdateModelValidator.cs │ ├── EntityCreateModel.cs │ ├── EntityReadModel.cs │ ├── EntityUpdateModel.cs │ ├── Priority │ │ ├── Mapping │ │ │ └── PriorityProfile.cs │ │ ├── Models │ │ │ ├── PriorityCreateModel.cs │ │ │ ├── PriorityReadModel.cs │ │ │ └── PriorityUpdateModel.cs │ │ ├── PriorityServiceRegistration.cs │ │ └── Validation │ │ │ ├── PriorityCreateModelValidator.cs │ │ │ └── PriorityUpdateModelValidator.cs │ ├── Role │ │ ├── Mapping │ │ │ └── RoleProfile.cs │ │ ├── Models │ │ │ ├── RoleCreateModel.cs │ │ │ ├── RoleReadModel.cs │ │ │ └── RoleUpdateModel.cs │ │ ├── RoleServiceRegistration.cs │ │ └── Validation │ │ │ ├── RoleCreateModelValidator.cs │ │ │ └── RoleUpdateModelValidator.cs │ ├── Status │ │ ├── Mapping │ │ │ └── StatusProfile.cs │ │ ├── Models │ │ │ ├── StatusCreateModel.cs │ │ │ ├── StatusReadModel.cs │ │ │ └── StatusUpdateModel.cs │ │ ├── StatusServiceRegistration.cs │ │ └── Validation │ │ │ ├── StatusCreateModelValidator.cs │ │ │ └── StatusUpdateModelValidator.cs │ ├── Task │ │ ├── Handlers │ │ │ └── TaskChangedNotificationHandler.cs │ │ ├── Mapping │ │ │ └── TaskProfile.cs │ │ ├── Models │ │ │ ├── TaskCreateModel.cs │ │ │ ├── TaskReadModel.cs │ │ │ └── TaskUpdateModel.cs │ │ ├── TaskServiceRegistration.cs │ │ └── Validation │ │ │ ├── TaskCreateModelValidator.cs │ │ │ └── TaskUpdateModelValidator.cs │ ├── Tenant │ │ ├── Mapping │ │ │ └── TenantProfile.cs │ │ ├── Models │ │ │ ├── TenantCreateModel.cs │ │ │ ├── TenantReadModel.cs │ │ │ └── TenantUpdateModel.cs │ │ ├── TenantServiceRegistration.cs │ │ └── Validation │ │ │ ├── TenantCreateModelValidator.cs │ │ │ └── TenantUpdateModelValidator.cs │ ├── User │ │ ├── Mapping │ │ │ └── UserProfile.cs │ │ ├── Models │ │ │ ├── UserCreateModel.cs │ │ │ ├── UserReadModel.cs │ │ │ └── UserUpdateModel.cs │ │ ├── UserServiceRegistration.cs │ │ └── Validation │ │ │ ├── UserCreateModelValidator.cs │ │ │ └── UserUpdateModelValidator.cs │ └── UserLogin │ │ ├── Mapping │ │ └── UserLoginProfile.cs │ │ ├── Models │ │ └── UserLoginReadModel.cs │ │ └── UserLoginServiceRegistration.cs ├── MediatR.CommandQuery.Cosmos.Tests.csproj ├── MockPrincipal.cs ├── MockTenantResolver.cs ├── appsettings.github.json └── appsettings.json ├── MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests ├── Acceptance │ ├── AuditTests.cs │ ├── PriorityTests.cs │ └── TaskTests.cs ├── Constants │ ├── PriorityConstants.cs │ ├── StatusConstants.cs │ ├── TenantConstants.cs │ └── UserConstants.cs ├── Data │ ├── DataServiceRegistration.cs │ ├── Entities │ │ ├── Audit.cs │ │ ├── Priority.cs │ │ ├── Role.cs │ │ ├── SchemaVersions.cs │ │ ├── Status.cs │ │ ├── Task.cs │ │ ├── TaskExtended.cs │ │ ├── Tenant.cs │ │ ├── User.cs │ │ ├── UserLogin.cs │ │ └── UserRole.cs │ ├── Mapping │ │ ├── AuditMap.cs │ │ ├── PriorityMap.cs │ │ ├── RoleMap.cs │ │ ├── SchemaVersionsMap.cs │ │ ├── StatusMap.cs │ │ ├── TaskExtendedMap.cs │ │ ├── TaskMap.cs │ │ ├── TenantMap.cs │ │ ├── UserLoginMap.cs │ │ ├── UserMap.cs │ │ └── UserRoleMap.cs │ ├── Queries │ │ ├── AuditExtensions.cs │ │ ├── PriorityExtensions.cs │ │ ├── RoleExtensions.cs │ │ ├── SchemaVersionsExtensions.cs │ │ ├── StatusExtensions.cs │ │ ├── TaskExtendedExtensions.cs │ │ ├── TaskExtensions.cs │ │ ├── TenantExtensions.cs │ │ ├── UserExtensions.cs │ │ ├── UserLoginExtensions.cs │ │ └── UserRoleExtensions.cs │ └── TrackerContext.cs ├── DatabaseCollection.cs ├── DatabaseFixture.cs ├── DatabaseInitializer.cs ├── DatabaseTestBase.cs ├── Dispatcher │ └── DispatcherDataServiceTests.cs ├── Domain │ ├── Audit │ │ ├── AuditServiceRegistration.cs │ │ ├── Mapping │ │ │ └── AuditProfile.cs │ │ ├── Models │ │ │ ├── AuditCreateModel.cs │ │ │ ├── AuditReadModel.cs │ │ │ └── AuditUpdateModel.cs │ │ └── Validation │ │ │ ├── AuditCreateModelValidator.cs │ │ │ └── AuditUpdateModelValidator.cs │ ├── EntityCreateModel.cs │ ├── EntityReadModel.cs │ ├── EntityUpdateModel.cs │ ├── Priority │ │ ├── Mapping │ │ │ └── PriorityProfile.cs │ │ ├── Models │ │ │ ├── PriorityCreateModel.cs │ │ │ ├── PriorityReadModel.cs │ │ │ └── PriorityUpdateModel.cs │ │ ├── PriorityServiceRegistration.cs │ │ └── Validation │ │ │ ├── PriorityCreateModelValidator.cs │ │ │ └── PriorityUpdateModelValidator.cs │ ├── Role │ │ ├── Mapping │ │ │ └── RoleProfile.cs │ │ ├── Models │ │ │ ├── RoleCreateModel.cs │ │ │ ├── RoleReadModel.cs │ │ │ └── RoleUpdateModel.cs │ │ ├── RoleServiceRegistration.cs │ │ └── Validation │ │ │ ├── RoleCreateModelValidator.cs │ │ │ └── RoleUpdateModelValidator.cs │ ├── SchemaVersions │ │ ├── Mapping │ │ │ └── SchemaVersionsProfile.cs │ │ ├── Models │ │ │ ├── SchemaVersionsCreateModel.cs │ │ │ ├── SchemaVersionsReadModel.cs │ │ │ └── SchemaVersionsUpdateModel.cs │ │ └── Validation │ │ │ ├── SchemaVersionsCreateModelValidator.cs │ │ │ └── SchemaVersionsUpdateModelValidator.cs │ ├── Status │ │ ├── Mapping │ │ │ └── StatusProfile.cs │ │ ├── Models │ │ │ ├── StatusCreateModel.cs │ │ │ ├── StatusReadModel.cs │ │ │ └── StatusUpdateModel.cs │ │ ├── StatusServiceRegistration.cs │ │ └── Validation │ │ │ ├── StatusCreateModelValidator.cs │ │ │ └── StatusUpdateModelValidator.cs │ ├── Task │ │ ├── Handlers │ │ │ └── TaskChangedNotificationHandler.cs │ │ ├── Mapping │ │ │ └── TaskProfile.cs │ │ ├── Models │ │ │ ├── TaskCreateModel.cs │ │ │ ├── TaskReadModel.cs │ │ │ └── TaskUpdateModel.cs │ │ ├── TaskServiceRegistration.cs │ │ └── Validation │ │ │ ├── TaskCreateModelValidator.cs │ │ │ └── TaskUpdateModelValidator.cs │ ├── TaskExtended │ │ ├── Mapping │ │ │ └── TaskExtendedProfile.cs │ │ ├── Models │ │ │ ├── TaskExtendedCreateModel.cs │ │ │ ├── TaskExtendedReadModel.cs │ │ │ └── TaskExtendedUpdateModel.cs │ │ └── Validation │ │ │ ├── TaskExtendedCreateModelValidator.cs │ │ │ └── TaskExtendedUpdateModelValidator.cs │ ├── Tenant │ │ ├── Mapping │ │ │ └── TenantProfile.cs │ │ ├── Models │ │ │ ├── TenantCreateModel.cs │ │ │ ├── TenantReadModel.cs │ │ │ └── TenantUpdateModel.cs │ │ ├── TenantServiceRegistration.cs │ │ └── Validation │ │ │ ├── TenantCreateModelValidator.cs │ │ │ └── TenantUpdateModelValidator.cs │ ├── User │ │ ├── Mapping │ │ │ └── UserProfile.cs │ │ ├── Models │ │ │ ├── UserCreateModel.cs │ │ │ ├── UserReadModel.cs │ │ │ └── UserUpdateModel.cs │ │ ├── UserServiceRegistration.cs │ │ └── Validation │ │ │ ├── UserCreateModelValidator.cs │ │ │ └── UserUpdateModelValidator.cs │ └── UserLogin │ │ ├── Mapping │ │ └── UserLoginProfile.cs │ │ ├── Models │ │ └── UserLoginReadModel.cs │ │ └── UserLoginServiceRegistration.cs ├── MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests.csproj ├── MockPrincipal.cs ├── MockTenantResolver.cs ├── Scripts │ ├── Script001.Tracker.Schema.sql │ └── Script002.Tracker.Data.sql ├── SerializationTests.cs ├── appsettings.json └── generation.yml ├── MediatR.CommandQuery.EntityFrameworkCore.Tests ├── Handlers │ ├── EntityCreateCommandHandlerTests.cs │ └── EntityUpdateCommandHandlerTests.cs ├── MediatR.CommandQuery.EntityFrameworkCore.Tests.csproj ├── Samples │ ├── Data │ │ ├── Location.cs │ │ └── SampleContext.cs │ ├── Fruit.cs │ ├── MockPrincipal.cs │ └── Models │ │ ├── LocationCreateModel.cs │ │ ├── LocationReadModel.cs │ │ └── LocationUpdateModel.cs └── UnitTestBase.cs ├── MediatR.CommandQuery.MongoDB.Tests ├── Acceptance │ ├── AuditTests.cs │ ├── PriorityTests.cs │ └── TaskTests.cs ├── Constants │ ├── PriorityConstants.cs │ ├── StatusConstants.cs │ ├── TenantConstants.cs │ └── UserConstants.cs ├── Data │ ├── Entities │ │ ├── Audit.cs │ │ ├── Priority.cs │ │ ├── Role.cs │ │ ├── Status.cs │ │ ├── Task.cs │ │ ├── Tenant.cs │ │ ├── User.cs │ │ └── UserLogin.cs │ └── Repositories │ │ ├── AuditRepository.cs │ │ ├── PriorityRepository.cs │ │ ├── RoleRepository.cs │ │ ├── StatusRepository.cs │ │ ├── TaskRepository.cs │ │ ├── TenantRepository.cs │ │ ├── UserLoginRepository.cs │ │ └── UserRepository.cs ├── DatabaseCollection.cs ├── DatabaseFixture.cs ├── DatabaseInitializer.cs ├── DatabaseTestBase.cs ├── Domain │ ├── Audit │ │ ├── AuditServiceRegistration.cs │ │ ├── Mapping │ │ │ └── AuditProfile.cs │ │ ├── Models │ │ │ ├── AuditCreateModel.cs │ │ │ ├── AuditReadModel.cs │ │ │ └── AuditUpdateModel.cs │ │ └── Validation │ │ │ ├── AuditCreateModelValidator.cs │ │ │ └── AuditUpdateModelValidator.cs │ ├── EntityCreateModel.cs │ ├── EntityReadModel.cs │ ├── EntityUpdateModel.cs │ ├── Priority │ │ ├── Mapping │ │ │ └── PriorityProfile.cs │ │ ├── Models │ │ │ ├── PriorityCreateModel.cs │ │ │ ├── PriorityReadModel.cs │ │ │ └── PriorityUpdateModel.cs │ │ ├── PriorityServiceRegistration.cs │ │ └── Validation │ │ │ ├── PriorityCreateModelValidator.cs │ │ │ └── PriorityUpdateModelValidator.cs │ ├── Role │ │ ├── Mapping │ │ │ └── RoleProfile.cs │ │ ├── Models │ │ │ ├── RoleCreateModel.cs │ │ │ ├── RoleReadModel.cs │ │ │ └── RoleUpdateModel.cs │ │ ├── RoleServiceRegistration.cs │ │ └── Validation │ │ │ ├── RoleCreateModelValidator.cs │ │ │ └── RoleUpdateModelValidator.cs │ ├── Status │ │ ├── Mapping │ │ │ └── StatusProfile.cs │ │ ├── Models │ │ │ ├── StatusCreateModel.cs │ │ │ ├── StatusReadModel.cs │ │ │ └── StatusUpdateModel.cs │ │ ├── StatusServiceRegistration.cs │ │ └── Validation │ │ │ ├── StatusCreateModelValidator.cs │ │ │ └── StatusUpdateModelValidator.cs │ ├── Task │ │ ├── Handlers │ │ │ └── TaskChangedNotificationHandler.cs │ │ ├── Mapping │ │ │ └── TaskProfile.cs │ │ ├── Models │ │ │ ├── TaskCreateModel.cs │ │ │ ├── TaskReadModel.cs │ │ │ └── TaskUpdateModel.cs │ │ ├── TaskServiceRegistration.cs │ │ └── Validation │ │ │ ├── TaskCreateModelValidator.cs │ │ │ └── TaskUpdateModelValidator.cs │ ├── Tenant │ │ ├── Mapping │ │ │ └── TenantProfile.cs │ │ ├── Models │ │ │ ├── TenantCreateModel.cs │ │ │ ├── TenantReadModel.cs │ │ │ └── TenantUpdateModel.cs │ │ ├── TenantServiceRegistration.cs │ │ └── Validation │ │ │ ├── TenantCreateModelValidator.cs │ │ │ └── TenantUpdateModelValidator.cs │ ├── User │ │ ├── Mapping │ │ │ └── UserProfile.cs │ │ ├── Models │ │ │ ├── UserCreateModel.cs │ │ │ ├── UserReadModel.cs │ │ │ └── UserUpdateModel.cs │ │ ├── UserServiceRegistration.cs │ │ └── Validation │ │ │ ├── UserCreateModelValidator.cs │ │ │ └── UserUpdateModelValidator.cs │ └── UserLogin │ │ ├── Mapping │ │ └── UserLoginProfile.cs │ │ ├── Models │ │ └── UserLoginReadModel.cs │ │ └── UserLoginServiceRegistration.cs ├── MediatR.CommandQuery.MongoDB.Tests.csproj ├── MockPrincipal.cs ├── MockTenantResolver.cs └── appsettings.json └── MediatR.CommandQuery.Tests ├── Commands ├── EntityCreateCommandTests.cs ├── EntityDeleteCommandTest.cs ├── EntityPatchCommandTests.cs └── EntityUpdateCommandTests.cs ├── Converters └── ClaimsPrincipalConverterTests.cs ├── Extensions ├── QueryExtensionsTests.cs └── StringExtensionsTests.cs ├── MediatR.CommandQuery.Tests.csproj ├── Queries ├── EntityFilterBuilderTests.cs ├── EntityFilterJsonTests.cs ├── EntityIdentifierQueryTests.cs ├── EntityListQueryTests.cs ├── EntityQueryTests.cs ├── EntitySortTest.cs └── LinqExpressionBuilderTest.cs ├── Samples ├── Fruit.cs ├── MockPrincipal.cs └── Models │ ├── LocationCreateModel.cs │ ├── LocationReadModel.cs │ └── LocationUpdateModel.cs ├── Services ├── QueryStringEncoderTests.cs └── UrlBuilderTests.cs └── UnitTestBase.cs /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | github: loresoft 2 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/dotnet.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/.github/workflows/dotnet.yml -------------------------------------------------------------------------------- /.github/workflows/merge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/.github/workflows/merge.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/LICENSE -------------------------------------------------------------------------------- /MediatR.CommandQuery.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/MediatR.CommandQuery.sln -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/README.md -------------------------------------------------------------------------------- /coverlet.runsettings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/coverlet.runsettings -------------------------------------------------------------------------------- /docs/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/docs/assets/logo.png -------------------------------------------------------------------------------- /docs/docfx.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/docs/docfx.json -------------------------------------------------------------------------------- /docs/guide/behaviors/abstracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/docs/guide/behaviors/abstracts.md -------------------------------------------------------------------------------- /docs/guide/behaviors/audit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/docs/guide/behaviors/audit.md -------------------------------------------------------------------------------- /docs/guide/behaviors/caching.md: -------------------------------------------------------------------------------- 1 | # Caching Behavior 2 | -------------------------------------------------------------------------------- /docs/guide/behaviors/delete.md: -------------------------------------------------------------------------------- 1 | # Soft Delete Behavior 2 | -------------------------------------------------------------------------------- /docs/guide/behaviors/tenant.md: -------------------------------------------------------------------------------- 1 | # Multi Tenant Behavior 2 | -------------------------------------------------------------------------------- /docs/guide/behaviors/validation.md: -------------------------------------------------------------------------------- 1 | # Validation Behavior 2 | -------------------------------------------------------------------------------- /docs/guide/commands/abstracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/docs/guide/commands/abstracts.md -------------------------------------------------------------------------------- /docs/guide/commands/create.md: -------------------------------------------------------------------------------- 1 | # Create Command 2 | -------------------------------------------------------------------------------- /docs/guide/commands/delete.md: -------------------------------------------------------------------------------- 1 | # Delete Command 2 | -------------------------------------------------------------------------------- /docs/guide/commands/patch.md: -------------------------------------------------------------------------------- 1 | # Patch Command 2 | -------------------------------------------------------------------------------- /docs/guide/commands/update.md: -------------------------------------------------------------------------------- 1 | # Update Command 2 | -------------------------------------------------------------------------------- /docs/guide/commands/upsert.md: -------------------------------------------------------------------------------- 1 | # Upsert Command 2 | -------------------------------------------------------------------------------- /docs/guide/handlers/cosmos.md: -------------------------------------------------------------------------------- 1 | # Cosmos DB Handlers 2 | -------------------------------------------------------------------------------- /docs/guide/handlers/entityFramework.md: -------------------------------------------------------------------------------- 1 | # Entity Framework Core Handlers 2 | -------------------------------------------------------------------------------- /docs/guide/handlers/mongo.md: -------------------------------------------------------------------------------- 1 | # MongoDB Handlers 2 | -------------------------------------------------------------------------------- /docs/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/docs/guide/index.md -------------------------------------------------------------------------------- /docs/guide/queries/abstracts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/docs/guide/queries/abstracts.md -------------------------------------------------------------------------------- /docs/guide/queries/caching.md: -------------------------------------------------------------------------------- 1 | # Query Result Caching 2 | -------------------------------------------------------------------------------- /docs/guide/queries/filters.md: -------------------------------------------------------------------------------- 1 | # Query Filters 2 | -------------------------------------------------------------------------------- /docs/guide/queries/identifier.md: -------------------------------------------------------------------------------- 1 | # Identifier Query 2 | -------------------------------------------------------------------------------- /docs/guide/queries/identifiers.md: -------------------------------------------------------------------------------- 1 | # Identifiers Query 2 | -------------------------------------------------------------------------------- /docs/guide/queries/list.md: -------------------------------------------------------------------------------- 1 | # List Query 2 | -------------------------------------------------------------------------------- /docs/guide/queries/paged.md: -------------------------------------------------------------------------------- 1 | # Paged Query 2 | -------------------------------------------------------------------------------- /docs/guide/quickStart.md: -------------------------------------------------------------------------------- 1 | # Quick Start 2 | -------------------------------------------------------------------------------- /docs/guide/scripts.md: -------------------------------------------------------------------------------- 1 | # Scripts 2 | -------------------------------------------------------------------------------- /docs/guide/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/docs/guide/toc.yml -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/reference/.gitignore: -------------------------------------------------------------------------------- 1 | *.yml 2 | .manifest 3 | -------------------------------------------------------------------------------- /docs/reference/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/docs/reference/index.md -------------------------------------------------------------------------------- /docs/template/public/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/docs/template/public/main.css -------------------------------------------------------------------------------- /docs/toc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/docs/toc.yml -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/logo.png -------------------------------------------------------------------------------- /mkdocs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/mkdocs.yml -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/DataServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/DataServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/Audit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/Audit.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/Priority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/Priority.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/Role.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/Status.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/Task.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/User.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/UserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/UserLogin.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Entities/UserRole.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/AuditMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/AuditMap.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/PriorityMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/PriorityMap.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/RoleMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/RoleMap.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/StatusMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/StatusMap.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/TaskMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/TaskMap.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/UserLoginMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/UserLoginMap.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/UserMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/UserMap.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/UserRoleMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/Mapping/UserRoleMap.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Data/TrackerServiceContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Data/TrackerServiceContext.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Audit/AuditServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Audit/AuditServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Audit/Mapping/AuditProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Audit/Mapping/AuditProfile.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Audit/Models/AuditCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Audit/Models/AuditCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Audit/Models/AuditReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Audit/Models/AuditReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Audit/Models/AuditUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Audit/Models/AuditUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Audit/Validation/AuditCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Audit/Validation/AuditCreateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Audit/Validation/AuditUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Audit/Validation/AuditUpdateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/DomainJsonContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/DomainJsonContext.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/DomainServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/DomainServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/EntityCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/EntityCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/EntityReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/EntityReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/EntityUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/EntityUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Jobs/Commands/BackgroundUpdateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Jobs/Commands/BackgroundUpdateCommand.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Jobs/Handlers/BackgroundUpdateHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Jobs/Handlers/BackgroundUpdateHandler.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Jobs/JobServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Jobs/JobServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Priority/Mapping/PriorityProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Priority/Mapping/PriorityProfile.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Priority/Models/PriorityCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Priority/Models/PriorityCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Priority/Models/PriorityReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Priority/Models/PriorityReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Priority/Models/PriorityUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Priority/Models/PriorityUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Priority/PriorityServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Priority/PriorityServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Role/Mapping/RoleProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Role/Mapping/RoleProfile.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Role/Models/RoleCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Role/Models/RoleCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Role/Models/RoleReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Role/Models/RoleReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Role/Models/RoleUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Role/Models/RoleUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Role/RoleServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Role/RoleServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Role/Validation/RoleCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Role/Validation/RoleCreateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Role/Validation/RoleUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Role/Validation/RoleUpdateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Status/Mapping/StatusProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Status/Mapping/StatusProfile.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Status/Models/StatusCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Status/Models/StatusCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Status/Models/StatusReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Status/Models/StatusReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Status/Models/StatusUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Status/Models/StatusUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Status/StatusServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Status/StatusServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Status/Validation/StatusCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Status/Validation/StatusCreateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Status/Validation/StatusUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Status/Validation/StatusUpdateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Task/Mapping/TaskProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Task/Mapping/TaskProfile.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Task/Models/TaskCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Task/Models/TaskCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Task/Models/TaskReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Task/Models/TaskReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Task/Models/TaskUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Task/Models/TaskUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Task/TaskServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Task/TaskServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Task/Validation/TaskCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Task/Validation/TaskCreateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/Task/Validation/TaskUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/Task/Validation/TaskUpdateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/User/Mapping/UserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/User/Mapping/UserProfile.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/User/Models/UserCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/User/Models/UserCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/User/Models/UserReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/User/Models/UserReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/User/Models/UserUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/User/Models/UserUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/User/UserServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/User/UserServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/User/Validation/UserCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/User/Validation/UserCreateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/User/Validation/UserUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/User/Validation/UserUpdateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/UserLogin/Mapping/UserLoginProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/UserLogin/Mapping/UserLoginProfile.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/UserLogin/Models/UserLoginCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/UserLogin/Models/UserLoginCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/UserLogin/Models/UserLoginReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/UserLogin/Models/UserLoginReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/UserLogin/Models/UserLoginUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/UserLogin/Models/UserLoginUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Domain/UserLogin/UserLoginServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Domain/UserLogin/UserLoginServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Endpoints/AuditEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Endpoints/AuditEndpoint.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Endpoints/JobEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Endpoints/JobEndpoint.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Endpoints/PriorityEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Endpoints/PriorityEndpoint.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Endpoints/RoleEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Endpoints/RoleEndpoint.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Endpoints/StatusEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Endpoints/StatusEndpoint.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Endpoints/TaskEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Endpoints/TaskEndpoint.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Endpoints/UserEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Endpoints/UserEndpoint.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Endpoints/UserLoginEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Endpoints/UserLoginEndpoint.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/GlobalUsings.cs: -------------------------------------------------------------------------------- 1 | global using Injectio.Attributes; 2 | -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Program.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/Tracker.WebService.EntityFrameworkCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/Tracker.WebService.EntityFrameworkCore.csproj -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/appsettings.json -------------------------------------------------------------------------------- /samples/Tracker.WebService.EntityFrameworkCore/generation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.EntityFrameworkCore/generation.yml -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Controllers/AuditController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Controllers/AuditController.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Controllers/PriorityController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Controllers/PriorityController.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Controllers/RoleController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Controllers/RoleController.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Controllers/StatusController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Controllers/StatusController.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Controllers/TaskController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Controllers/TaskController.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Controllers/UserController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Controllers/UserController.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Controllers/UserLoginController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Controllers/UserLoginController.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/DataServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/DataServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/Entities/Audit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/Entities/Audit.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/Entities/Priority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/Entities/Priority.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/Entities/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/Entities/Role.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/Entities/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/Entities/Status.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/Entities/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/Entities/Task.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/Entities/User.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/Entities/UserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/Entities/UserLogin.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/Repositories/AuditRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/Repositories/AuditRepository.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/Repositories/PriorityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/Repositories/PriorityRepository.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/Repositories/RoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/Repositories/RoleRepository.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/Repositories/StatusRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/Repositories/StatusRepository.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/Repositories/TaskRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/Repositories/TaskRepository.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/Repositories/UserLoginRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/Repositories/UserLoginRepository.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Data/Repositories/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Data/Repositories/UserRepository.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Audit/AuditServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Audit/AuditServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Audit/Mapping/AuditProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Audit/Mapping/AuditProfile.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Audit/Models/AuditCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Audit/Models/AuditCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Audit/Models/AuditReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Audit/Models/AuditReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Audit/Models/AuditUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Audit/Models/AuditUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Audit/Validation/AuditCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Audit/Validation/AuditCreateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Audit/Validation/AuditUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Audit/Validation/AuditUpdateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/DomainServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/DomainServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/EntityCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/EntityCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/EntityReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/EntityReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/EntityUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/EntityUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Priority/Mapping/PriorityProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Priority/Mapping/PriorityProfile.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Priority/Models/PriorityCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Priority/Models/PriorityCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Priority/Models/PriorityReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Priority/Models/PriorityReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Priority/Models/PriorityUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Priority/Models/PriorityUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Priority/PriorityServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Priority/PriorityServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Priority/Validation/PriorityCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Priority/Validation/PriorityCreateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Priority/Validation/PriorityUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Priority/Validation/PriorityUpdateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Role/Mapping/RoleProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Role/Mapping/RoleProfile.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Role/Models/RoleCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Role/Models/RoleCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Role/Models/RoleReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Role/Models/RoleReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Role/Models/RoleUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Role/Models/RoleUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Role/RoleServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Role/RoleServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Role/Validation/RoleCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Role/Validation/RoleCreateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Role/Validation/RoleUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Role/Validation/RoleUpdateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Status/Mapping/StatusProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Status/Mapping/StatusProfile.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Status/Models/StatusCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Status/Models/StatusCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Status/Models/StatusReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Status/Models/StatusReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Status/Models/StatusUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Status/Models/StatusUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Status/StatusServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Status/StatusServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Status/Validation/StatusCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Status/Validation/StatusCreateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Status/Validation/StatusUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Status/Validation/StatusUpdateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Task/Handlers/TaskChangedNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Task/Handlers/TaskChangedNotificationHandler.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Task/Mapping/TaskProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Task/Mapping/TaskProfile.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Task/Models/TaskCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Task/Models/TaskCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Task/Models/TaskReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Task/Models/TaskReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Task/Models/TaskUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Task/Models/TaskUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Task/TaskServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Task/TaskServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Task/Validation/TaskCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Task/Validation/TaskCreateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/Task/Validation/TaskUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/Task/Validation/TaskUpdateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/User/Mapping/UserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/User/Mapping/UserProfile.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/User/Models/UserCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/User/Models/UserCreateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/User/Models/UserReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/User/Models/UserReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/User/Models/UserUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/User/Models/UserUpdateModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/User/UserServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/User/UserServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/User/Validation/UserCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/User/Validation/UserCreateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/User/Validation/UserUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/User/Validation/UserUpdateModelValidator.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/UserLogin/Mapping/UserLoginProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/UserLogin/Mapping/UserLoginProfile.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/UserLogin/Models/UserLoginReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/UserLogin/Models/UserLoginReadModel.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Domain/UserLogin/UserLoginServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Domain/UserLogin/UserLoginServiceRegistration.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Program.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Properties/launchSettings.json -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Startup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Startup.cs -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/Tracker.WebService.MongoDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/Tracker.WebService.MongoDB.csproj -------------------------------------------------------------------------------- /samples/Tracker.WebService.MongoDB/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/Tracker.WebService.MongoDB/appsettings.json -------------------------------------------------------------------------------- /samples/TrackerService.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/samples/TrackerService.sql -------------------------------------------------------------------------------- /src/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/Directory.Build.props -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Audit/AuditOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Audit/AuditOperation.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Audit/AuditRecord.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Audit/AuditRecord.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Audit/AuditServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Audit/AuditServiceExtensions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Audit/ChangeCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Audit/ChangeCollector.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Audit/IChangeCollector.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Audit/IChangeCollector.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Audit/MediatR.CommandQuery.Audit.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Audit/MediatR.CommandQuery.Audit.csproj -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Cosmos/CosmosKey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Cosmos/CosmosKey.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Cosmos/DomainServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Cosmos/DomainServiceExtensions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Cosmos/Handlers/EntityCreateCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Cosmos/Handlers/EntityCreateCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Cosmos/Handlers/EntityDeleteCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Cosmos/Handlers/EntityDeleteCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Cosmos/Handlers/EntityIdentifierQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Cosmos/Handlers/EntityIdentifierQueryHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Cosmos/Handlers/EntityIdentifiersQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Cosmos/Handlers/EntityIdentifiersQueryHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Cosmos/Handlers/EntityPagedQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Cosmos/Handlers/EntityPagedQueryHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Cosmos/Handlers/EntityPatchCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Cosmos/Handlers/EntityPatchCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Cosmos/Handlers/EntitySelectQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Cosmos/Handlers/EntitySelectQueryHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Cosmos/Handlers/EntityUpdateCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Cosmos/Handlers/EntityUpdateCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Cosmos/Handlers/EntityUpsertCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Cosmos/Handlers/EntityUpsertCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Cosmos/Handlers/RepositoryHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Cosmos/Handlers/RepositoryHandlerBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Cosmos/MediatR.CommandQuery.Cosmos.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Cosmos/MediatR.CommandQuery.Cosmos.csproj -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Endpoints/DispatcherEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Endpoints/DispatcherEndpoint.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Endpoints/EntityCommandEndpointBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Endpoints/EntityCommandEndpointBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Endpoints/EntityQueryEndpointBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Endpoints/EntityQueryEndpointBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Endpoints/FeatureEndpointBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Endpoints/FeatureEndpointBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Endpoints/FeatureEndpointExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Endpoints/FeatureEndpointExtensions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Endpoints/IFeatureEndpoint.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Endpoints/IFeatureEndpoint.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Endpoints/MediatR.CommandQuery.Endpoints.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Endpoints/MediatR.CommandQuery.Endpoints.csproj -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Endpoints/ProblemDetailsCustomizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Endpoints/ProblemDetailsCustomizer.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Endpoints/RouteHandlerBuilderExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Endpoints/RouteHandlerBuilderExtensions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.EntityFrameworkCore/DomainServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.EntityFrameworkCore/DomainServiceExtensions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/DataContextHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/DataContextHandlerBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityCreateCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityCreateCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityDataContextHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityDataContextHandlerBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityDeleteCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityDeleteCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityIdentifierQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityIdentifierQueryHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityIdentifiersQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityIdentifiersQueryHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityPagedQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityPagedQueryHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityPatchCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityPatchCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntitySelectQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntitySelectQueryHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityUpdateCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityUpdateCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityUpsertCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.EntityFrameworkCore/Handlers/EntityUpsertCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.EntityFrameworkCore/MediatR.CommandQuery.EntityFrameworkCore.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.EntityFrameworkCore/MediatR.CommandQuery.EntityFrameworkCore.csproj -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Hangfire/HangfireConfigurationExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Hangfire/HangfireConfigurationExtensions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Hangfire/IMediatorDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Hangfire/IMediatorDispatcher.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Hangfire/MediatR.CommandQuery.Hangfire.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Hangfire/MediatR.CommandQuery.Hangfire.csproj -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Hangfire/MediatorDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Hangfire/MediatorDispatcher.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Hangfire/MediatorExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Hangfire/MediatorExtensions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Identity/MediatR.CommandQuery.Identity.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Identity/MediatR.CommandQuery.Identity.csproj -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.MongoDB/DomainServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.MongoDB/DomainServiceExtensions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.MongoDB/Handlers/EntityCreateCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.MongoDB/Handlers/EntityCreateCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.MongoDB/Handlers/EntityDeleteCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.MongoDB/Handlers/EntityDeleteCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.MongoDB/Handlers/EntityIdentifierQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.MongoDB/Handlers/EntityIdentifierQueryHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.MongoDB/Handlers/EntityIdentifiersQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.MongoDB/Handlers/EntityIdentifiersQueryHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.MongoDB/Handlers/EntityPagedQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.MongoDB/Handlers/EntityPagedQueryHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.MongoDB/Handlers/EntityPatchCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.MongoDB/Handlers/EntityPatchCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.MongoDB/Handlers/EntitySelectQueryHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.MongoDB/Handlers/EntitySelectQueryHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.MongoDB/Handlers/EntityUpdateCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.MongoDB/Handlers/EntityUpdateCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.MongoDB/Handlers/EntityUpsertCommandHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.MongoDB/Handlers/EntityUpsertCommandHandler.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.MongoDB/Handlers/RepositoryHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.MongoDB/Handlers/RepositoryHandlerBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.MongoDB/MediatR.CommandQuery.MongoDB.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.MongoDB/MediatR.CommandQuery.MongoDB.csproj -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Mvc/EntityCommandControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Mvc/EntityCommandControllerBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Mvc/EntityQueryControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Mvc/EntityQueryControllerBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Mvc/JsonExceptionMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Mvc/JsonExceptionMiddleware.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Mvc/MediatR.CommandQuery.Mvc.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Mvc/MediatR.CommandQuery.Mvc.csproj -------------------------------------------------------------------------------- /src/MediatR.CommandQuery.Mvc/MediatorControllerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery.Mvc/MediatorControllerBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/DeletedFilterBehaviorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/DeletedFilterBehaviorBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/DeletedPagedQueryBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/DeletedPagedQueryBehavior.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/DeletedSelectQueryBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/DeletedSelectQueryBehavior.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/DistributedCacheQueryBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/DistributedCacheQueryBehavior.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/EntityChangeNotificationBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/EntityChangeNotificationBehavior.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/HybridCacheExpireBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/HybridCacheExpireBehavior.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/HybridCacheQueryBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/HybridCacheQueryBehavior.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/MemoryCacheQueryBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/MemoryCacheQueryBehavior.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/PipelineBehaviorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/PipelineBehaviorBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/TenantAuthenticateCommandBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/TenantAuthenticateCommandBehavior.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/TenantDefaultCommandBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/TenantDefaultCommandBehavior.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/TenantFilterBehaviorBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/TenantFilterBehaviorBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/TenantPagedQueryBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/TenantPagedQueryBehavior.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/TenantSelectQueryBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/TenantSelectQueryBehavior.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/TrackChangeCommandBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/TrackChangeCommandBehavior.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Behaviors/ValidateEntityModelCommandBehavior.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Behaviors/ValidateEntityModelCommandBehavior.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Commands/EntityCreateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Commands/EntityCreateCommand.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Commands/EntityDeleteCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Commands/EntityDeleteCommand.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Commands/EntityIdentifierCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Commands/EntityIdentifierCommand.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Commands/EntityIdentifiersCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Commands/EntityIdentifiersCommand.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Commands/EntityModelCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Commands/EntityModelCommand.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Commands/EntityPatchCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Commands/EntityPatchCommand.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Commands/EntityUpdateCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Commands/EntityUpdateCommand.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Commands/EntityUpsertCommand.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Commands/EntityUpsertCommand.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Commands/PrincipalCommandBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Commands/PrincipalCommandBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Converters/ClaimsPrincipalConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Converters/ClaimsPrincipalConverter.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Converters/EntityFilterConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Converters/EntityFilterConverter.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Converters/PolymorphicConverter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Converters/PolymorphicConverter.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Definitions/ICacheExpire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Definitions/ICacheExpire.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Definitions/ICacheResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Definitions/ICacheResult.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Definitions/IDistributedCacheSerializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Definitions/IDistributedCacheSerializer.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Definitions/IHaveIdentifier.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Definitions/IHaveIdentifier.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Definitions/IHaveTenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Definitions/IHaveTenant.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Definitions/IPrincipalReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Definitions/IPrincipalReader.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Definitions/ISupportSearch.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Definitions/ISupportSearch.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Definitions/ITenantResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Definitions/ITenantResolver.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Definitions/ITrackConcurrency.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Definitions/ITrackConcurrency.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Definitions/ITrackCreated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Definitions/ITrackCreated.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Definitions/ITrackDeleted.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Definitions/ITrackDeleted.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Definitions/ITrackHistory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Definitions/ITrackHistory.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Definitions/ITrackUpdated.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Definitions/ITrackUpdated.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Dispatcher/DispatchRequest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Dispatcher/DispatchRequest.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Dispatcher/DispatcherDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Dispatcher/DispatcherDataService.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Dispatcher/DispatcherOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Dispatcher/DispatcherOptions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Dispatcher/IDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Dispatcher/IDispatcher.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Dispatcher/IDispatcherDataService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Dispatcher/IDispatcherDataService.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Dispatcher/MediatorDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Dispatcher/MediatorDispatcher.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Dispatcher/RemoteDispatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Dispatcher/RemoteDispatcher.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/DomainException.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/DomainException.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Extensions/EnumerableExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Extensions/EnumerableExtensions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Extensions/QueryExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Extensions/QueryExtensions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Extensions/RandomExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Extensions/RandomExtensions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Extensions/StringExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Extensions/StringExtensions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Extensions/TypeExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Extensions/TypeExtensions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Handlers/RequestHandlerBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Handlers/RequestHandlerBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/MediatR.CommandQuery.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/MediatR.CommandQuery.csproj -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/MediatorJsonContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/MediatorJsonContext.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/MediatorServiceExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/MediatorServiceExtensions.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Models/CompleteModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Models/CompleteModel.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Models/EntityCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Models/EntityCreateModel.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Models/EntityIdentifierModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Models/EntityIdentifierModel.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Models/EntityIdentifiersModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Models/EntityIdentifiersModel.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Models/EntityReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Models/EntityReadModel.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Models/EntityUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Models/EntityUpdateModel.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Models/ProblemDetails.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Models/ProblemDetails.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Notifications/EntityChangeNotification.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Notifications/EntityChangeNotification.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Notifications/EntityChangeOperation.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Notifications/EntityChangeOperation.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/CacheableQueryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/CacheableQueryBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntityContinuationQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntityContinuationQuery.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntityContinuationResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntityContinuationResult.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntityFilter.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntityFilter.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntityFilterBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntityFilterBuilder.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntityFilterLogic.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntityFilterLogic.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntityFilterOperators.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntityFilterOperators.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntityIdentifierQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntityIdentifierQuery.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntityIdentifiersQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntityIdentifiersQuery.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntityPagedQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntityPagedQuery.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntityPagedResult.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntityPagedResult.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntityQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntityQuery.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntitySelect.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntitySelect.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntitySelectQuery.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntitySelectQuery.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntitySort.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntitySort.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/EntitySortDirections.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/EntitySortDirections.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/LinqExpressionBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/LinqExpressionBuilder.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Queries/PrincipalQueryBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Queries/PrincipalQueryBase.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Services/CacheTagger.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Services/CacheTagger.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Services/ClaimNames.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Services/ClaimNames.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Services/PrincipalReader.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Services/PrincipalReader.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Services/QueryStringEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Services/QueryStringEncoder.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Services/StringBuilderCache.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Services/StringBuilderCache.cs -------------------------------------------------------------------------------- /src/MediatR.CommandQuery/Services/UrlBuilder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/src/MediatR.CommandQuery/Services/UrlBuilder.cs -------------------------------------------------------------------------------- /templates/DomainJsonContext.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/templates/DomainJsonContext.csx -------------------------------------------------------------------------------- /templates/DomainServiceRegistration.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/templates/DomainServiceRegistration.csx -------------------------------------------------------------------------------- /templates/EntityController.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/templates/EntityController.csx -------------------------------------------------------------------------------- /templates/EntityEndpoint.csx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/templates/EntityEndpoint.csx -------------------------------------------------------------------------------- /test/Directory.Build.props: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/Directory.Build.props -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Acceptance/AuditTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Acceptance/AuditTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Acceptance/PriorityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Acceptance/PriorityTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Acceptance/TaskTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Acceptance/TaskTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Constants/PriorityConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Constants/PriorityConstants.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Constants/StatusConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Constants/StatusConstants.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Constants/TenantConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Constants/TenantConstants.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Constants/UserConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Constants/UserConstants.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/CosmosKeyTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/CosmosKeyTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/Audit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/Audit.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/Priority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/Priority.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/Role.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/Status.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/Task.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/Tenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/Tenant.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/User.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/UserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Entities/UserLogin.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/AuditRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/AuditRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/PriorityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/PriorityRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/RoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/RoleRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/StatusRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/StatusRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/TaskRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/TaskRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/TenantRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/TenantRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/UserLoginRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/UserLoginRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Data/Repositories/UserRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/DatabaseCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/DatabaseCollection.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/DatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/DatabaseFixture.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/DatabaseInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/DatabaseInitializer.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/DatabaseTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/DatabaseTestBase.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Audit/AuditServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Audit/AuditServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Audit/Mapping/AuditProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Audit/Mapping/AuditProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Audit/Models/AuditCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Audit/Models/AuditCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Audit/Models/AuditReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Audit/Models/AuditReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Audit/Models/AuditUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Audit/Models/AuditUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Audit/Validation/AuditCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Audit/Validation/AuditCreateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Audit/Validation/AuditUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Audit/Validation/AuditUpdateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/EntityCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/EntityCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/EntityReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/EntityReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/EntityUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/EntityUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Priority/Mapping/PriorityProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Priority/Mapping/PriorityProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Priority/Models/PriorityCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Priority/Models/PriorityCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Priority/Models/PriorityReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Priority/Models/PriorityReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Priority/Models/PriorityUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Priority/Models/PriorityUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Priority/PriorityServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Priority/PriorityServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Priority/Validation/PriorityCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Priority/Validation/PriorityCreateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Priority/Validation/PriorityUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Priority/Validation/PriorityUpdateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Role/Mapping/RoleProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Role/Mapping/RoleProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Role/Models/RoleCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Role/Models/RoleCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Role/Models/RoleReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Role/Models/RoleReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Role/Models/RoleUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Role/Models/RoleUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Role/RoleServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Role/RoleServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Role/Validation/RoleCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Role/Validation/RoleCreateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Role/Validation/RoleUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Role/Validation/RoleUpdateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Status/Mapping/StatusProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Status/Mapping/StatusProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Status/Models/StatusCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Status/Models/StatusCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Status/Models/StatusReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Status/Models/StatusReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Status/Models/StatusUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Status/Models/StatusUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Status/StatusServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Status/StatusServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Status/Validation/StatusCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Status/Validation/StatusCreateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Status/Validation/StatusUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Status/Validation/StatusUpdateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/Handlers/TaskChangedNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/Handlers/TaskChangedNotificationHandler.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/Mapping/TaskProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/Mapping/TaskProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/Models/TaskCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/Models/TaskCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/Models/TaskReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/Models/TaskReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/Models/TaskUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/Models/TaskUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/TaskServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/TaskServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/Validation/TaskCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/Validation/TaskCreateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/Validation/TaskUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Task/Validation/TaskUpdateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Tenant/Mapping/TenantProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Tenant/Mapping/TenantProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Tenant/Models/TenantCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Tenant/Models/TenantCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Tenant/Models/TenantReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Tenant/Models/TenantReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Tenant/Models/TenantUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Tenant/Models/TenantUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Tenant/TenantServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Tenant/TenantServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Tenant/Validation/TenantCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Tenant/Validation/TenantCreateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/Tenant/Validation/TenantUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/Tenant/Validation/TenantUpdateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/User/Mapping/UserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/User/Mapping/UserProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/User/Models/UserCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/User/Models/UserCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/User/Models/UserReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/User/Models/UserReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/User/Models/UserUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/User/Models/UserUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/User/UserServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/User/UserServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/User/Validation/UserCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/User/Validation/UserCreateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/User/Validation/UserUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/User/Validation/UserUpdateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/UserLogin/Mapping/UserLoginProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/UserLogin/Mapping/UserLoginProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/UserLogin/Models/UserLoginReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/UserLogin/Models/UserLoginReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/Domain/UserLogin/UserLoginServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/Domain/UserLogin/UserLoginServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/MediatR.CommandQuery.Cosmos.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/MediatR.CommandQuery.Cosmos.Tests.csproj -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/MockPrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/MockPrincipal.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/MockTenantResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/MockTenantResolver.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/appsettings.github.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/appsettings.github.json -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Cosmos.Tests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Cosmos.Tests/appsettings.json -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Acceptance/AuditTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Acceptance/AuditTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Acceptance/PriorityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Acceptance/PriorityTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Acceptance/TaskTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Acceptance/TaskTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Constants/PriorityConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Constants/PriorityConstants.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Constants/StatusConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Constants/StatusConstants.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Constants/TenantConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Constants/TenantConstants.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Constants/UserConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Constants/UserConstants.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/DataServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/DataServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/Audit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/Audit.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/Priority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/Priority.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/Role.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/SchemaVersions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/SchemaVersions.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/Status.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/Task.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/TaskExtended.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/TaskExtended.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/Tenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/Tenant.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/User.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/UserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/UserLogin.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/UserRole.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Entities/UserRole.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/AuditMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/AuditMap.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/PriorityMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/PriorityMap.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/RoleMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/RoleMap.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/SchemaVersionsMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/SchemaVersionsMap.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/StatusMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/StatusMap.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/TaskExtendedMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/TaskExtendedMap.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/TaskMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/TaskMap.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/TenantMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/TenantMap.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/UserLoginMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/UserLoginMap.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/UserMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/UserMap.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/UserRoleMap.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Mapping/UserRoleMap.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/AuditExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/AuditExtensions.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/PriorityExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/PriorityExtensions.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/RoleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/RoleExtensions.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/SchemaVersionsExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/SchemaVersionsExtensions.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/StatusExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/StatusExtensions.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/TaskExtendedExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/TaskExtendedExtensions.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/TaskExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/TaskExtensions.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/TenantExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/TenantExtensions.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/UserExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/UserExtensions.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/UserLoginExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/UserLoginExtensions.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/UserRoleExtensions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/Queries/UserRoleExtensions.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/TrackerContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Data/TrackerContext.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/DatabaseCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/DatabaseCollection.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/DatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/DatabaseFixture.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/DatabaseInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/DatabaseInitializer.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/DatabaseTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/DatabaseTestBase.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Dispatcher/DispatcherDataServiceTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Dispatcher/DispatcherDataServiceTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Audit/AuditServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Audit/AuditServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Audit/Mapping/AuditProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Audit/Mapping/AuditProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Audit/Models/AuditCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Audit/Models/AuditCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Audit/Models/AuditReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Audit/Models/AuditReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Audit/Models/AuditUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Audit/Models/AuditUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/EntityCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/EntityCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/EntityReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/EntityReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/EntityUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/EntityUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Priority/Mapping/PriorityProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Priority/Mapping/PriorityProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Role/Mapping/RoleProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Role/Mapping/RoleProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Role/Models/RoleCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Role/Models/RoleCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Role/Models/RoleReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Role/Models/RoleReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Role/Models/RoleUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Role/Models/RoleUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Role/RoleServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Role/RoleServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Status/Mapping/StatusProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Status/Mapping/StatusProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Status/Models/StatusCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Status/Models/StatusCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Status/Models/StatusReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Status/Models/StatusReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Task/Mapping/TaskProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Task/Mapping/TaskProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Task/Models/TaskCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Task/Models/TaskCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Task/Models/TaskReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Task/Models/TaskReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Task/Models/TaskUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Task/Models/TaskUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Task/TaskServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Task/TaskServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Tenant/Mapping/TenantProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Tenant/Mapping/TenantProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Tenant/Models/TenantReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/Tenant/Models/TenantReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/User/Mapping/UserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/User/Mapping/UserProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/User/Models/UserCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/User/Models/UserCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/User/Models/UserReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/User/Models/UserReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/User/Models/UserUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/User/Models/UserUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/User/UserServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Domain/User/UserServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/MockPrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/MockPrincipal.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/MockTenantResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/MockTenantResolver.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Scripts/Script001.Tracker.Schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Scripts/Script001.Tracker.Schema.sql -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Scripts/Script002.Tracker.Data.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/Scripts/Script002.Tracker.Data.sql -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/SerializationTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/SerializationTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/appsettings.json -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/generation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.SqlServer.Tests/generation.yml -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Handlers/EntityCreateCommandHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Handlers/EntityCreateCommandHandlerTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Handlers/EntityUpdateCommandHandlerTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Handlers/EntityUpdateCommandHandlerTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Samples/Data/Location.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Samples/Data/Location.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Samples/Data/SampleContext.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Samples/Data/SampleContext.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Samples/Fruit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Samples/Fruit.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Samples/MockPrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Samples/MockPrincipal.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Samples/Models/LocationCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Samples/Models/LocationCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Samples/Models/LocationReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Samples/Models/LocationReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Samples/Models/LocationUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.Tests/Samples/Models/LocationUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.EntityFrameworkCore.Tests/UnitTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.EntityFrameworkCore.Tests/UnitTestBase.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Acceptance/AuditTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Acceptance/AuditTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Acceptance/PriorityTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Acceptance/PriorityTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Acceptance/TaskTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Acceptance/TaskTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Constants/PriorityConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Constants/PriorityConstants.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Constants/StatusConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Constants/StatusConstants.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Constants/TenantConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Constants/TenantConstants.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Constants/UserConstants.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Constants/UserConstants.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/Audit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/Audit.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/Priority.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/Priority.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/Role.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/Role.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/Status.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/Status.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/Task.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/Task.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/Tenant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/Tenant.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/User.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/User.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/UserLogin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Entities/UserLogin.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/AuditRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/AuditRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/PriorityRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/PriorityRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/RoleRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/RoleRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/StatusRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/StatusRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/TaskRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/TaskRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/TenantRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/TenantRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/UserLoginRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/UserLoginRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/UserRepository.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Data/Repositories/UserRepository.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/DatabaseCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/DatabaseCollection.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/DatabaseFixture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/DatabaseFixture.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/DatabaseInitializer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/DatabaseInitializer.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/DatabaseTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/DatabaseTestBase.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Audit/AuditServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Audit/AuditServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Audit/Mapping/AuditProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Audit/Mapping/AuditProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Audit/Models/AuditCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Audit/Models/AuditCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Audit/Models/AuditReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Audit/Models/AuditReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Audit/Models/AuditUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Audit/Models/AuditUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Audit/Validation/AuditCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Audit/Validation/AuditCreateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Audit/Validation/AuditUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Audit/Validation/AuditUpdateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/EntityCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/EntityCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/EntityReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/EntityReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/EntityUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/EntityUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Priority/Mapping/PriorityProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Priority/Mapping/PriorityProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Priority/Models/PriorityCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Priority/Models/PriorityCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Priority/Models/PriorityReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Priority/Models/PriorityReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Priority/Models/PriorityUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Priority/Models/PriorityUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Priority/PriorityServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Priority/PriorityServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Priority/Validation/PriorityCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Priority/Validation/PriorityCreateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Priority/Validation/PriorityUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Priority/Validation/PriorityUpdateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Role/Mapping/RoleProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Role/Mapping/RoleProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Role/Models/RoleCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Role/Models/RoleCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Role/Models/RoleReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Role/Models/RoleReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Role/Models/RoleUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Role/Models/RoleUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Role/RoleServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Role/RoleServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Role/Validation/RoleCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Role/Validation/RoleCreateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Role/Validation/RoleUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Role/Validation/RoleUpdateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Status/Mapping/StatusProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Status/Mapping/StatusProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Status/Models/StatusCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Status/Models/StatusCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Status/Models/StatusReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Status/Models/StatusReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Status/Models/StatusUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Status/Models/StatusUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Status/StatusServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Status/StatusServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Status/Validation/StatusCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Status/Validation/StatusCreateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Status/Validation/StatusUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Status/Validation/StatusUpdateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/Handlers/TaskChangedNotificationHandler.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/Handlers/TaskChangedNotificationHandler.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/Mapping/TaskProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/Mapping/TaskProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/Models/TaskCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/Models/TaskCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/Models/TaskReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/Models/TaskReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/Models/TaskUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/Models/TaskUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/TaskServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/TaskServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/Validation/TaskCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/Validation/TaskCreateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/Validation/TaskUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Task/Validation/TaskUpdateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Tenant/Mapping/TenantProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Tenant/Mapping/TenantProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Tenant/Models/TenantCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Tenant/Models/TenantCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Tenant/Models/TenantReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Tenant/Models/TenantReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Tenant/Models/TenantUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Tenant/Models/TenantUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Tenant/TenantServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Tenant/TenantServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Tenant/Validation/TenantCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Tenant/Validation/TenantCreateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/Tenant/Validation/TenantUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/Tenant/Validation/TenantUpdateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/User/Mapping/UserProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/User/Mapping/UserProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/User/Models/UserCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/User/Models/UserCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/User/Models/UserReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/User/Models/UserReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/User/Models/UserUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/User/Models/UserUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/User/UserServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/User/UserServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/User/Validation/UserCreateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/User/Validation/UserCreateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/User/Validation/UserUpdateModelValidator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/User/Validation/UserUpdateModelValidator.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/UserLogin/Mapping/UserLoginProfile.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/UserLogin/Mapping/UserLoginProfile.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/UserLogin/Models/UserLoginReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/UserLogin/Models/UserLoginReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/Domain/UserLogin/UserLoginServiceRegistration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/Domain/UserLogin/UserLoginServiceRegistration.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/MediatR.CommandQuery.MongoDB.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/MediatR.CommandQuery.MongoDB.Tests.csproj -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/MockPrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/MockPrincipal.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/MockTenantResolver.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/MockTenantResolver.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.MongoDB.Tests/appsettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.MongoDB.Tests/appsettings.json -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Commands/EntityCreateCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Commands/EntityCreateCommandTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Commands/EntityDeleteCommandTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Commands/EntityDeleteCommandTest.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Commands/EntityPatchCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Commands/EntityPatchCommandTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Commands/EntityUpdateCommandTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Commands/EntityUpdateCommandTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Converters/ClaimsPrincipalConverterTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Converters/ClaimsPrincipalConverterTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Extensions/QueryExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Extensions/QueryExtensionsTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Extensions/StringExtensionsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Extensions/StringExtensionsTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/MediatR.CommandQuery.Tests.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/MediatR.CommandQuery.Tests.csproj -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Queries/EntityFilterBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Queries/EntityFilterBuilderTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Queries/EntityFilterJsonTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Queries/EntityFilterJsonTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Queries/EntityIdentifierQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Queries/EntityIdentifierQueryTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Queries/EntityListQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Queries/EntityListQueryTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Queries/EntityQueryTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Queries/EntityQueryTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Queries/EntitySortTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Queries/EntitySortTest.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Queries/LinqExpressionBuilderTest.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Queries/LinqExpressionBuilderTest.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Samples/Fruit.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Samples/Fruit.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Samples/MockPrincipal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Samples/MockPrincipal.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Samples/Models/LocationCreateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Samples/Models/LocationCreateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Samples/Models/LocationReadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Samples/Models/LocationReadModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Samples/Models/LocationUpdateModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Samples/Models/LocationUpdateModel.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Services/QueryStringEncoderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Services/QueryStringEncoderTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/Services/UrlBuilderTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/Services/UrlBuilderTests.cs -------------------------------------------------------------------------------- /test/MediatR.CommandQuery.Tests/UnitTestBase.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/loresoft/MediatR.CommandQuery/HEAD/test/MediatR.CommandQuery.Tests/UnitTestBase.cs --------------------------------------------------------------------------------