public IActionResult GetAll()
 {
     try
     {
         return(Ok(_atendimentoService.ObterAtendimentosCompletos()));
     }
     catch (Exception e)
     {
         return(StatusCode(500, e.Message));
     }
 }