public ActionResult <IEnumerable <SeccionAnamnesisDTO> > getSeccioneseItemsAnamnesis() { string user = getUser(); logger.LogInformation("Searching list of sections and items of anamnesis"); var secciones = fundabiem.getSeccionesconItemsAnamnesis(); if (secciones.Count() == 0) { return(NotFound()); } return(Ok(secciones)); }