public object Clone() { AddToSell command = new AddToSell(receiver); foreach (Item item in items) { command.addItem(item); } return(command); }