public IHttpActionResult ConsultarColegiosId(ParametrosDTO oParametros) { try { TecnicaBl objConsultarColegioBl = new TecnicaBl(); var Datos = objConsultarColegioBl.ConsultarColegiosId(oParametros.Parametro1); ColegioDTO Colegios = new ColegioDTO(); if (Datos != null) { return(Ok(new { success = true, Datos = Datos })); } else { return(Ok(new { success = false, Datos = Datos })); } } catch (Exception exc) { return(Ok(new { success = false, exc = exc.Message })); } }