36 lines
1.1 KiB
C#
36 lines
1.1 KiB
C#
using Nop.Core.Domain.Common;
|
|
using Nop.Core.Domain.Orders;
|
|
using Nop.Services.Plugins;
|
|
using Nop.Services.Shipping.Tracking;
|
|
|
|
namespace Nop.Services.Shipping.Pickup;
|
|
|
|
/// <summary>
|
|
/// Represents an interface of pickup point provider
|
|
/// </summary>
|
|
public partial interface IPickupPointProvider : IPlugin
|
|
{
|
|
#region Methods
|
|
|
|
/// <summary>
|
|
/// Get pickup points for the address
|
|
/// </summary>
|
|
/// <param name="cart">Shopping Cart</param>
|
|
/// <param name="address">Address</param>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the represents a response of getting pickup points
|
|
/// </returns>
|
|
Task<GetPickupPointsResponse> GetPickupPointsAsync(IList<ShoppingCartItem> cart, Address address);
|
|
|
|
/// <summary>
|
|
/// Get associated shipment tracker
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the shipment tracker
|
|
/// </returns>
|
|
Task<IShipmentTracker> GetShipmentTrackerAsync();
|
|
|
|
#endregion
|
|
} |