public IActionResult GetById(Guid Id)
        {
            var servidor = _servidorService.ObterTramitacoesPorID(Id);

            return(Ok(servidor));
        }