28 lines
1.2 KiB
C#
28 lines
1.2 KiB
C#
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);
|
|
} |