public ActionResult <Exame> Get(int id) { var Exame = _exameRepository.Pesquisar(id); if (Exame == null) { return(NotFound()); } return(Exame); }