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); } } }