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