Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

IShoppingCartModelFactory.cs

using Nop.Core.Domain.Customers;
using Nop.Web.Areas.Admin.Models.ShoppingCart;

namespace Nop.Web.Areas.Admin.Factories;

/// 
/// Represents the shopping cart model factory
/// 
public partial interface IShoppingCartModelFactory
{
    /// 
    /// Prepare shopping cart search model
    /// 
    /// Shopping cart search model
    /// 
    /// A task that represents the asynchronous operation
    /// The task result contains the shopping cart search model
    /// 
    Task PrepareShoppingCartSearchModelAsync(ShoppingCartSearchModel searchModel);

    /// 
    /// Prepare paged shopping cart list model
    /// 
    /// Shopping cart search model
    /// 
    /// A task that represents the asynchronous operation
    /// The task result contains the shopping cart list model
    /// 
    Task PrepareShoppingCartListModelAsync(ShoppingCartSearchModel searchModel);

    /// 
    /// Prepare paged shopping cart item list model
    /// 
    /// Shopping cart item search model
    /// Customer
    /// 
    /// A task that represents the asynchronous operation
    /// The task result contains the shopping cart item list model
    /// 
    Task PrepareShoppingCartItemListModelAsync(ShoppingCartItemSearchModel searchModel, Customer customer);
}