public IHttpActionResult VerFicha(ParametrosDTO objP) { try { VirtualidadBl obj = new VirtualidadBl(); var Datos = obj.VerFicha(int.Parse(objP.Parametro1)); return(Ok(new { success = true, Datos })); } catch (Exception exc) { return(Ok(new { success = false, exc = exc.Message })); } }