/// <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); }
/// <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); }