Skip to content

Commit 285b0ce

Browse files
committed
Fix to close issue dotnet-architecture#1162
1 parent 37fdbf3 commit 285b0ce

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

src/Services/Ordering/Ordering.API/Application/IntegrationEvents/OrderingIntegrationEventService.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ public class OrderingIntegrationEventService : IOrderingIntegrationEventService
2121
private readonly Func<DbConnection, IIntegrationEventLogService> _integrationEventLogServiceFactory;
2222
private readonly IEventBus _eventBus;
2323
private readonly OrderingContext _orderingContext;
24-
private readonly IntegrationEventLogContext _eventLogContext;
2524
private readonly IIntegrationEventLogService _eventLogService;
2625
private readonly ILogger<OrderingIntegrationEventService> _logger;
2726

@@ -32,7 +31,6 @@ public OrderingIntegrationEventService(IEventBus eventBus,
3231
ILogger<OrderingIntegrationEventService> logger)
3332
{
3433
_orderingContext = orderingContext ?? throw new ArgumentNullException(nameof(orderingContext));
35-
_eventLogContext = eventLogContext ?? throw new ArgumentNullException(nameof(eventLogContext));
3634
_integrationEventLogServiceFactory = integrationEventLogServiceFactory ?? throw new ArgumentNullException(nameof(integrationEventLogServiceFactory));
3735
_eventBus = eventBus ?? throw new ArgumentNullException(nameof(eventBus));
3836
_eventLogService = _integrationEventLogServiceFactory(_orderingContext.Database.GetDbConnection());

0 commit comments

Comments
 (0)