18 lines
514 B
C#
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);
|
|
}
|
|
}
|
|
}
|