Esempio n. 1
0
        public ActionResult EditPSA(int psaId)
        {
            viewPSA psa = CMSService.GetPSA(psaId);

            if (psa == null)
            {
                psa = new viewPSA();
            }

            return(PartialView(psa));
        }