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