Exemplo n.º 1
0
 public bool Remove(Shipment DelElement)
 {
     try { Shipments.Remove(DelElement); }
     catch (Exception) { return(false); }
     return(true);
 }
Exemplo n.º 2
0
 public bool UpdateAt(Shipment UpdElement, int ElementIndex)
 {
     Shipments[ElementIndex] = UpdElement;
     return(true);
 }