public IHttpActionResult GuardarAprendizEdit(Aprendices_Titulada objA) { try { VirtualidadBl obj = new VirtualidadBl(); var datos = obj.GuardarAprendizEdit(objA); if (datos) { return(Ok(new { success = true })); } else { return(Ok(new { success = false })); } } catch (Exception exc) { return(Ok(new { success = false, exc = exc.Message })); } }