public void RemoveItem(OrderlistItem o) { if (o == null) { throw new ArgumentNullException(); } _list.RemoveAll(x => x == o); }
public void AddItem(OrderlistItem item) { if (item == null) { throw new Exception(); } _list.Add(item); }