public ActionResult <DTOEvolucionMedica> getEvolucion(int id)
        {
            var evolucion = fundabiem.getEvolucionMedica(id);

            if (evolucion.Result == null)
            {
                return(NotFound("No se encontro la evolucion con id => " + id.ToString()));
            }
            return(Ok(evolucion.Result));
        }