public IHttpActionResult ConsultarLista(ParametrosDTO objP) { try { TecnicaBl obj = new TecnicaBl(); var Datos = obj.ConsultarLista(objP.Parametro1); if (Datos == null) { return(Ok(new { success = true, editar = 0 })); } else if (Datos.Estado) { return(Ok(new { success = true, Datos, editar = 1 })); } else { return(Ok(new { success = true, Datos, editar = 2 })); } } catch (Exception exc) { return(Ok(new { success = false, exc = exc.Message })); } }