public ActionResult NavLast() { AlertModel alertModel; alertService = new AlertService(); alertModel = alertService.NavLast(); if (alertModel != null) { alertModel._FormMode = FormModeEnum.Edit; } if (alertModel == null) { //alertModel = alertService.GetNewModel(); throw new Exception("[VALIDATION]-Data not exists"); } return(PartialView(VIEW_FORM_PARTIAL, alertModel)); }