public bool VisualizarEmprestimosFechados()
        {
            ConfigurarTela("Visualizando empréstimos fechados");

            Console.Write("Digite o número do mês: ");
            int numeroMes = Convert.ToInt32(Console.ReadLine());

            List <Emprestimo> emprestimos = controladorEmprestimo.SelecionarEmprestimosFechados(numeroMes);

            if (emprestimos.Count == 0)
            {
                ApresentarMensagem("Nenhum empréstimo fechado neste mês", TipoMensagem.Atencao);
                return(false);
            }

            string configuracaColunasTabela = "{0,-10} | {1,-25} | {2,-25} | {3,-25}";

            Console.WriteLine();

            MontarCabecalhoTabela(configuracaColunasTabela, "Id", "Data de Devolução", "Amiguinho", "Revistinha");

            foreach (Emprestimo emprestimo in emprestimos)
            {
                Console.WriteLine(configuracaColunasTabela, emprestimo.id, emprestimo.dataDevolucao.ToString("dd/MM/yyyy"), emprestimo.amiguinho.nome, emprestimo.revistinha.colecao);
            }

            return(true);
        }