Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Areas.Admin.Models.Security;
namespace Nop.Web.Areas.Admin.Factories;
///
/// Represents the security model factory
///
public partial interface ISecurityModelFactory
{
///
/// Prepare permission mapping model
///
/// Permission mapping model
///
/// A task that represents the asynchronous operation
/// The task result contains the permission mapping model
///
Task PreparePermissionMappingModelAsync(PermissionMappingModel model);
}