remove unused Interfaces dependencies

This commit is contained in:
Christian Arenas 2017-05-11 18:43:13 +02:00
parent 04c9579bcb
commit 11dde70316
2 changed files with 3 additions and 11 deletions

View File

@ -10,14 +10,11 @@
public class OrderStockConfirmedIntegrationEventHandler : public class OrderStockConfirmedIntegrationEventHandler :
IIntegrationEventHandler<OrderStockConfirmedIntegrationEvent> IIntegrationEventHandler<OrderStockConfirmedIntegrationEvent>
{ {
private readonly IOrderingIntegrationEventService _orderingIntegrationEventService;
private readonly IOrderRepository _orderRepository; private readonly IOrderRepository _orderRepository;
public OrderStockConfirmedIntegrationEventHandler(IOrderRepository orderRepository, public OrderStockConfirmedIntegrationEventHandler(IOrderRepository orderRepository)
IOrderingIntegrationEventService orderingIntegrationEventService)
{ {
_orderRepository = orderRepository; _orderRepository = orderRepository;
_orderingIntegrationEventService = orderingIntegrationEventService;
} }
public async Task Handle(OrderStockConfirmedIntegrationEvent @event) public async Task Handle(OrderStockConfirmedIntegrationEvent @event)

View File

@ -8,20 +8,15 @@ namespace Ordering.API.Application.IntegrationEvents.EventHandling
using System.Threading.Tasks; using System.Threading.Tasks;
using Events; using Events;
using Microsoft.eShopOnContainers.Services.Ordering.Domain.AggregatesModel.OrderAggregate; using Microsoft.eShopOnContainers.Services.Ordering.Domain.AggregatesModel.OrderAggregate;
using Ordering.API.Application.Sagas; using Domain.Exceptions;
using Microsoft.eShopOnContainers.Services.Ordering.Infrastructure;
using Ordering.Domain.Exceptions;
public class OrderStockNotConfirmedIntegrationEventHandler : IIntegrationEventHandler<OrderStockNotConfirmedIntegrationEvent> public class OrderStockNotConfirmedIntegrationEventHandler : IIntegrationEventHandler<OrderStockNotConfirmedIntegrationEvent>
{ {
private readonly IOrderingIntegrationEventService _orderingIntegrationEventService;
private readonly IOrderRepository _orderRepository; private readonly IOrderRepository _orderRepository;
public OrderStockNotConfirmedIntegrationEventHandler(IOrderRepository orderRepository, public OrderStockNotConfirmedIntegrationEventHandler(IOrderRepository orderRepository)
IOrderingIntegrationEventService orderingIntegrationEventService)
{ {
_orderRepository = orderRepository; _orderRepository = orderRepository;
_orderingIntegrationEventService = orderingIntegrationEventService;
} }
public async Task Handle(OrderStockNotConfirmedIntegrationEvent @event) public async Task Handle(OrderStockNotConfirmedIntegrationEvent @event)