Exemplo n.º 1
0
        static void Main(string[] args)
        {
            AlunoModel aluno1 = new AlunoModel(); // Instânciando aluno

            Console.Clear();
            // int [] quant;
            for (int i = 0; i < 2; i++)
            {
                // quant [i] =
                aluno1.CadastroAluno();
                aluno1.ListarAluno();
                aluno1.IrAoBanheiro();
            }
        }