Esempio n. 1
0
 public override void Remover(InvestimentoComponent investimento)
 {
     throw new NotImplementedException();
 }
Esempio n. 2
0
 public abstract void Remover(InvestimentoComponent investimento);
Esempio n. 3
0
 public override void Remover(InvestimentoComponent investimento)
 {
     posicoes.Remove(investimento);
 }
Esempio n. 4
0
 public abstract void Adicionar(InvestimentoComponent investimento);
Esempio n. 5
0
 public override void Adicionar(InvestimentoComponent investimento)
 {
     posicoes.Add(investimento);
 }