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