Try your search with a different keyword or use * as a wildcard.
using Nop.Web.Areas.Admin.Models.ExternalAuthentication;
namespace Nop.Web.Areas.Admin.Factories;
/// <summary>
/// Represents the external authentication method model factory
/// </summary>
public partial interface IExternalAuthenticationMethodModelFactory
{
/// <summary>
/// Prepare external authentication method search model
/// </summary>
/// <param name="searchModel">External authentication method search model</param>
/// <returns>External authentication method search model</returns>
ExternalAuthenticationMethodSearchModel PrepareExternalAuthenticationMethodSearchModel(
ExternalAuthenticationMethodSearchModel searchModel);
/// <summary>
/// Prepare paged external authentication method list model
/// </summary>
/// <param name="searchModel">External authentication method search model</param>
/// <returns>
/// A task that represents the asynchronous operation
/// The task result contains the external authentication method list model
/// </returns>
Task<ExternalAuthenticationMethodListModel> PrepareExternalAuthenticationMethodListModelAsync(
ExternalAuthenticationMethodSearchModel searchModel);
}