13 lines
291 B
C#
13 lines
291 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace CPRNIMS.WebApps.ViewComponents.CanvassMgmt
|
|
{
|
|
public class IndexCardTableVC : ViewComponent
|
|
{
|
|
public IViewComponentResult Invoke()
|
|
{
|
|
return View("~/Views/Components/POMgmt/IndexCard.cshtml");
|
|
}
|
|
}
|
|
}
|