19 lines
575 B
C#
19 lines
575 B
C#
using Microsoft.AspNetCore.Mvc;
|
|
|
|
namespace CPRNIMS.WebApps.ViewComponents.PR
|
|
{
|
|
public class PRTabbedViewComponent : ViewComponent
|
|
{
|
|
public IViewComponentResult Invoke(int tableId)
|
|
{
|
|
string viewName = tableId switch
|
|
{
|
|
1 => "~/Views/Components/PRMgmt/PRTabbedTable/AllPR.cshtml",
|
|
2 => "~/Views/Components/PRMgmt/PRTabbedTable/ApprovedPR.cshtml",
|
|
_ => "~/Views/Components/PRMgmt/PRTabbedTable/DeletedPR.cshtml"
|
|
};
|
|
return View(viewName);
|
|
}
|
|
}
|
|
}
|