-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
using Shared.Features.Server; | ||
|
||
namespace Shared.Features.CQRS.Query | ||
{ | ||
public class BaseQueryHandler : IInServerExecutionScope | ||
Check failure on line 5 in Source/Shared/Features/CQRS/Query/BaseQueryHandler.cs GitHub Actions / build
Check failure on line 5 in Source/Shared/Features/CQRS/Query/BaseQueryHandler.cs GitHub Actions / build
Check failure on line 5 in Source/Shared/Features/CQRS/Query/BaseQueryHandler.cs GitHub Actions / build
Check failure on line 5 in Source/Shared/Features/CQRS/Query/BaseQueryHandler.cs GitHub Actions / build
Check failure on line 5 in Source/Shared/Features/CQRS/Query/BaseQueryHandler.cs GitHub Actions / build
|
||
{ | ||
public IServerExecutionContext ExecutionContext { get; private set; } | ||
Check failure on line 7 in Source/Shared/Features/CQRS/Query/BaseQueryHandler.cs GitHub Actions / build
|
||
} | ||
} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
using Shared.Features.CQRS.Command; | ||
using Shared.Features.CQRS.DomainEvent; | ||
using Shared.Features.CQRS.IntegrationEvent; | ||
using Shared.Features.CQRS.Query; | ||
using Shared.Kernel.BuildingBlocks; | ||
using Shared.Kernel.BuildingBlocks.ModelValidation; | ||
|
||
namespace Shared.Features.Server | ||
{ | ||
public class InServerExecutionScopeBase : IInServerExecutionScope | ||
{ | ||
public IExecutionContext ExecutionContext { get; private set; } | ||
public ICommandDispatcher CommandDispatcher { get; private set; } | ||
public IQueryDispatcher QueryDispatcher { get; private set; } | ||
public IIntegrationEventDispatcher IntegrationEventDispatcher { get; private set; } | ||
public IDomainEventDispatcher DomainEventDispatcher { get; private set; } | ||
public IValidationService ValidationService { get; private set; } | ||
} | ||
} |