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