18 lines
593 B
C#
18 lines
593 B
C#
using Nop.Web.Models.Customer;
|
|
|
|
namespace Nop.Web.Factories;
|
|
|
|
/// <summary>
|
|
/// Represents the interface of the external authentication model factory
|
|
/// </summary>
|
|
public partial interface IExternalAuthenticationModelFactory
|
|
{
|
|
/// <summary>
|
|
/// Prepare the external authentication method model
|
|
/// </summary>
|
|
/// <returns>
|
|
/// A task that represents the asynchronous operation
|
|
/// The task result contains the list of the external authentication method model
|
|
/// </returns>
|
|
Task<List<ExternalAuthenticationMethodModel>> PrepareExternalMethodsModelAsync();
|
|
} |