Try your search with a different keyword or use * as a wildcard.
using Nop.Plugin.Pickup.PickupInStore.Models;
namespace Nop.Plugin.Pickup.PickupInStore.Factories;
///
/// Represents the store pickup point models factory
///
public interface IStorePickupPointModelFactory
{
///
/// Prepare store pickup point list model
///
/// Store pickup point search model
///
/// A task that represents the asynchronous operation
/// The task result contains the store pickup point list model
///
Task PrepareStorePickupPointListModelAsync(StorePickupPointSearchModel searchModel);
///
/// Prepare store pickup point search model
///
/// Store pickup point search model
///
/// A task that represents the asynchronous operation
/// The task result contains the store pickup point search model
///
Task PrepareStorePickupPointSearchModelAsync(StorePickupPointSearchModel searchModel);
}