Exemple #1
0
        static public void Rodar()
        {
            Console.WriteLine("------------Mostrar Limite de Dias por Tipo------------");

            Aluno         aluno         = new Aluno("Rafael", "aluno", "*****@*****.**");
            Professor     professor     = new Professor("Cintia", "Professor", "*****@*****.**");
            Bibliotecario bibliotecario = new Bibliotecario("Carlos", "Bibliotecario", "*****@*****.**");

            Console.Write(aluno.mostrarPapel() + "\t| "); aluno.Emprestimos();
            Console.Write(professor.mostrarPapel() + "\t| "); professor.Emprestimos();
            Console.Write(bibliotecario.mostrarPapel() + "\t| "); bibliotecario.Emprestimos();
        }