Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Orders;
using Nop.Web.Areas.Admin.Models.Orders;
namespace Nop.Web.Areas.Admin.Factories;
/// <summary>
/// Represents the gift card model factory
/// </summary>
public partial interface IGiftCardModelFactory
{
/// <summary>
/// Prepare gift card search model
/// </summary>
/// <param name="searchModel">Gift card search model</param>
/// <returns>
/// A task that represents the asynchronous operation
/// The task result contains the gift card search model
/// </returns>
Task<GiftCardSearchModel> PrepareGiftCardSearchModelAsync(GiftCardSearchModel searchModel);
/// <summary>
/// Prepare paged gift card list model
/// </summary>
/// <param name="searchModel">Gift card search model</param>
/// <returns>
/// A task that represents the asynchronous operation
/// The task result contains the gift card list model
/// </returns>
Task<GiftCardListModel> PrepareGiftCardListModelAsync(GiftCardSearchModel searchModel);
/// <summary>
/// Prepare gift card model
/// </summary>
/// <param name="model">Gift card model</param>
/// <param name="giftCard">Gift card</param>
/// <param name="excludeProperties">Whether to exclude populating of some properties of model</param>
/// <returns>
/// A task that represents the asynchronous operation
/// The task result contains the gift card model
/// </returns>
Task<GiftCardModel> PrepareGiftCardModelAsync(GiftCardModel model, GiftCard giftCard, bool excludeProperties = false);
/// <summary>
/// Prepare paged gift usage history card list model
/// </summary>
/// <param name="searchModel">Gift card usage history search model</param>
/// <param name="giftCard">Gift card</param>
/// <returns>
/// A task that represents the asynchronous operation
/// The task result contains the gift card usage history list model
/// </returns>
Task<GiftCardUsageHistoryListModel> PrepareGiftCardUsageHistoryListModelAsync(GiftCardUsageHistorySearchModel searchModel,
GiftCard giftCard);
}