* Removed Unused Using and Reorganized the Using * Removed unused using, Reorganized using, moved the class to separate file, removed commented code in Catalog.API * Revert "Removed unused using, Reorganized using, moved the class to separate file, removed commented code in Catalog.API" This reverts commit 34241c430619b3b0bbeaabafa44c078c859237c4. * Removed unused using and reorganized the using inside "Services" folder * Removed Unused using and reoganized the using * Refactor Webhooks.API * Removed unused using and reorganized using inside Catalog.API
19 lines
602 B
C#
19 lines
602 B
C#
using Microsoft.eShopOnContainers.BuildingBlocks.EventBus.Events;
|
|
|
|
namespace Webhooks.API.IntegrationEvents
|
|
{
|
|
public class OrderStatusChangedToShippedIntegrationEvent : IntegrationEvent
|
|
{
|
|
public int OrderId { get; private set; }
|
|
public string OrderStatus { get; private set; }
|
|
public string BuyerName { get; private set; }
|
|
|
|
public OrderStatusChangedToShippedIntegrationEvent(int orderId, string orderStatus, string buyerName)
|
|
{
|
|
OrderId = orderId;
|
|
OrderStatus = orderStatus;
|
|
BuyerName = buyerName;
|
|
}
|
|
}
|
|
}
|