Exemplo n.º 1
0
 /// <pdGenerated>default Remove</pdGenerated>
 public void RemoveVenda(Venda oldVenda)
 {
     if (oldVenda == null)
         return;
     if (this.venda != null)
         if (this.venda.Contains(oldVenda))
             this.venda.Remove(oldVenda);
 }
Exemplo n.º 2
0
 /// <pdGenerated>default Add</pdGenerated>
 public void AddVenda(Venda newVenda)
 {
     if (newVenda == null)
         return;
     if (this.venda == null)
         this.venda = new System.Collections.ArrayList();
     if (!this.venda.Contains(newVenda))
         this.venda.Add(newVenda);
 }