Try your search with a different keyword or use * as a wildcard.
using Nop.Core.Domain.Menus;
using Nop.Web.Models.Menus;
namespace Nop.Web.Factories;
///
/// Represents the interface of the menu model factory
///
public partial interface IMenuModelFactory
{
///
/// Prepare the menu model
///
/// Menu type
///
/// A task that represents the asynchronous operation
/// The task result contains list of menu models
///
Task> PrepareMenuModelsAsync(MenuType menuType);
}