Example #1
0
        // Corrente

        public void AddContaCorrente()
        {
            Agencia agencia = IdentificarAgencia();

            if (agencia == null)
            {
                return;
            }
            else
            {
                agencia.AddCc(Eu, agencia.Id);
                agencia.ExibirCc(Eu.Id);
            }
        }