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