Webiant Logo Webiant Logo
  1. No results found.

    Try your search with a different keyword or use * as a wildcard.

ExternalMethodsViewComponent.cs

using Microsoft.AspNetCore.Mvc;
using Nop.Web.Factories;
using Nop.Web.Framework.Components;

namespace Nop.Web.Components;

public partial class ExternalMethodsViewComponent : NopViewComponent
{
    #region Fields

    protected readonly IExternalAuthenticationModelFactory _externalAuthenticationModelFactory;

    #endregion

    #region Ctor

    public ExternalMethodsViewComponent(IExternalAuthenticationModelFactory externalAuthenticationModelFactory)
    {
        _externalAuthenticationModelFactory = externalAuthenticationModelFactory;
    }

    #endregion

    #region Methods

    public async Task InvokeAsync()
    {
        var model = await _externalAuthenticationModelFactory.PrepareExternalMethodsModelAsync();

        return View(model);
    }

    #endregion
}