Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Shipping;
using Nop.Core.Events;
namespace Nop.Services.Shipping;
/// <summary>
/// Event publisher extensions
/// </summary>
public static class EventPublisherExtensions
{
/// <summary>
/// Publishes the shipment sent event.
/// </summary>
/// <param name="eventPublisher">The event publisher.</param>
/// <param name="shipment">The shipment.</param>
/// <returns>A task that represents the asynchronous operation</returns>
public static async Task PublishShipmentSentAsync(this IEventPublisher eventPublisher, Shipment shipment)
{
await eventPublisher.PublishAsync(new ShipmentSentEvent(shipment));
}
/// <summary>
/// Publishes the shipment ready for pickup event.
/// </summary>
/// <param name="eventPublisher">The event publisher.</param>
/// <param name="shipment">The shipment.</param>
/// <returns>A task that represents the asynchronous operation</returns>
public static async Task PublishShipmentReadyForPickupAsync(this IEventPublisher eventPublisher, Shipment shipment)
{
await eventPublisher.PublishAsync(new ShipmentReadyForPickupEvent(shipment));
}
/// <summary>
/// Publishes the shipment delivered event.
/// </summary>
/// <param name="eventPublisher">The event publisher.</param>
/// <param name="shipment">The shipment.</param>
/// <returns>A task that represents the asynchronous operation</returns>
public static async Task PublishShipmentDeliveredAsync(this IEventPublisher eventPublisher, Shipment shipment)
{
await eventPublisher.PublishAsync(new ShipmentDeliveredEvent(shipment));
}
}