From 6bff2c63138403de54c005b76c8bcffbe669a8e8 Mon Sep 17 00:00:00 2001 From: Christian Arenas Date: Tue, 16 May 2017 15:07:08 +0200 Subject: [PATCH] Change property name --- .../Events/OrderStockNotConfirmedIntegrationEvent.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/Services/Catalog/Catalog.API/IntegrationEvents/Events/OrderStockNotConfirmedIntegrationEvent.cs b/src/Services/Catalog/Catalog.API/IntegrationEvents/Events/OrderStockNotConfirmedIntegrationEvent.cs index 8186f8a13..be57329c7 100644 --- a/src/Services/Catalog/Catalog.API/IntegrationEvents/Events/OrderStockNotConfirmedIntegrationEvent.cs +++ b/src/Services/Catalog/Catalog.API/IntegrationEvents/Events/OrderStockNotConfirmedIntegrationEvent.cs @@ -7,13 +7,13 @@ { public int OrderId { get; } - public IEnumerable OrderStockItem { get; } + public List OrderStockItems { get; } - public OrderStockNotConfirmedIntegrationEvent(int orderId, - IEnumerable orderStockItem) + public OrderStockNotConfirmedIntegrationEvent(int orderId, + List orderStockItems) { OrderId = orderId; - OrderStockItem = orderStockItem; + OrderStockItems = orderStockItems; } }