public override void Visualizar()
        {
            Console.Clear();

            string configuracaColunasTabela = "{0,-20} | {1,-20} | {2,-20} | {3,-20} | {4,-20}";

            MontarCabecalhoTabela(configuracaColunasTabela);

            Emprestimo[] emprestimos = new Emprestimo[controladorEmprestimo.SelecionarTudo().Length];
            Array.Copy(controladorEmprestimo.SelecionarTudo(), emprestimos, controladorEmprestimo.SelecionarTudo().Length);

            for (int i = 0; i < emprestimos.Length; i++)
            {
                Console.Write(configuracaColunasTabela,
                              emprestimos[i].Id, emprestimos[i].Amiguinho.nome, emprestimos[i].Revista.NomeRevista,
                              emprestimos[i].DataEmprestimo.ToString("dd/MM/yyyy"), emprestimos[i].DataDevolucao.ToString("dd/MM/yyyy"));

                Console.WriteLine();
            }

            if (emprestimos.Length == 0)
            {
                Console.ForegroundColor = ConsoleColor.DarkBlue;
                Console.WriteLine("Nenhum empréstimo cadastrado!");
                Console.ResetColor();
            }

            Console.ReadLine();
        }