Beispiel #1
0
        public object Clone()
        {
            AddToSell command = new AddToSell(receiver);

            foreach (Item item in items)
            {
                command.addItem(item);
            }
            return(command);
        }