Mango.Nop.Plugins/Nop.Plugin.Misc.AIPlugin/Components/CustomViewComponent.cs

19 lines
374 B
C#

using Microsoft.AspNetCore.Mvc;
using Nop.Web.Framework.Components;
namespace Nop.Plugin.Misc.FruitBankPlugin.Components;
[ViewComponent(Name = "Custom")]
public class CustomViewComponent : NopViewComponent
{
public CustomViewComponent()
{
}
public IViewComponentResult Invoke(int productId)
{
throw new NotImplementedException();
}
}