NonInventPurchasingSystem/CPRNIMS.WebApps/ViewComponents/POMgmt/POReferenceVC.cs
2026-01-20 07:44:30 +08:00

18 lines
514 B
C#

using Microsoft.AspNetCore.Mvc;
namespace CPRNIMS.WebApps.ViewComponents.POMgmt
{
public class POReferenceViewComponent : ViewComponent
{
public IViewComponentResult Invoke(int referenceId)
{
string viewName = referenceId switch
{
1 => "~/Views/Components/POMgmt/POPrinting/SIPOReference.cshtml",
_ => "~/Views/Components/POMgmt/POPrinting/DRPOReference.cshtml"
};
return View(viewName);
}
}
}