public ActionResult EditarGuia(string guia, string orden) { try { ordersDAO = new OrdersDAO(); string selectedDB = "sucursal" + Session["defaultDB"]; return(Json(ordersDAO.EditarGuia(selectedDB, guia, orden), JsonRequestBehavior.AllowGet)); } catch (Exception ex) { throw ex; } }