public JsonResult GetInventarioDetalle(int invfd_Id) { IEnumerable <object> list = null; try { list = db.SDP_tbInventarioFisicoDetalle_Select(invfd_Id).ToList(); } catch (Exception Ex) { Ex.Message.ToString(); } return(Json(list, JsonRequestBehavior.AllowGet)); }