internal void VisualizarHistorico()
        {
            Console.Clear();
            Emprestimo[] emprestimo = controladorEmprestimo.SelecionarTodasEmprestimos();
            if (emprestimo.Length == 0)
            {
                Console.WriteLine("Nenhuma emprestimo realizado...");
                Console.ReadLine();
            }
            else
            {
                Console.WriteLine("Digite o mês dos emprestimos que deseja visualizar: (MM)");
                string mesEmprestimo = Console.ReadLine();

                Console.WriteLine("    ---Emprestimos-Todos---");
                for (int i = 0; i < emprestimo.Length; i++)
                {
                    if (emprestimo[i].dataEmprestimo.ToString("MM") == mesEmprestimo)
                    {
                        Console.WriteLine("\nID: " + emprestimo[i].id);
                        Console.WriteLine("Amigo que pegou emprestado: " + emprestimo[i].amigo.nome);
                        Console.WriteLine("Revista emprestada: " + emprestimo[i].revista.TipoDeColecao);
                        Console.WriteLine("Data do emprestimo: " + emprestimo[i].dataEmprestimo.ToString("dd/MM/yyyy"));
                        Console.WriteLine("Data de devolução: " + emprestimo[i].dataDevolucao.ToString("dd/MM/yyyy"));
                        if (emprestimo[i].aberto)
                        {
                            Console.WriteLine("EM ABERTO...");
                        }
                        else
                        {
                            Console.WriteLine("JÁ DEVOLVIDO");
                        }
                    }
                }
                Console.ReadLine();
            }
        }
        public void VisualizarEmprestimos()
        {
            ConfigurarTela("Visualizando Emprestimos...");

            string configuracaColunasTabela = "{0,-10} | {1,-55} | {2,-35}";

            MontarCabecalhoTabela(configuracaColunasTabela);

            Emprestimo[] emprestimo = controladorEmprestimo.SelecionarTodasEmprestimos();

            if (emprestimo.Length == 0)
            {
                ApresentarMensagem("Nenhum Emprestimo cadastrado!", TipoMensagem.Atencao);
                return;
            }

            for (int i = 0; i < emprestimo.Length; i++)
            {
                Console.WriteLine(configuracaColunasTabela, emprestimo[i].Id, emprestimo[i].Amigo.Nome, emprestimo[i].Revista.TipoColecao);
            }
        }