Webiant Logo Webiant Logo
  1. No results found.

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

AclCustomerRolesViewComponent.cs

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

namespace Nop.Web.Areas.Admin.Components;

/// 
/// Represents view component to display field to select customer roles
/// 
public partial class AclCustomerRolesViewComponent : NopViewComponent
{
    #region Methods

    public IViewComponentResult Invoke(object additionalData)
    {
        if (additionalData is not IAclSupportedModel model)
            return Content(string.Empty);
        
        return View(model);
    }

    #endregion
}