public IHttpActionResult GuardarProgramacion(Virtualidad_Titulada objVT) { try { VirtualidadBl obj = new VirtualidadBl(); var Datos = obj.GuardarProgramacion(objVT); if (Datos) { return(Ok(new { success = true })); } else { return(Ok(new { success = false })); } } catch (Exception exc) { return(Ok(new { success = false, exc = exc.Message })); } }