Exemplo n.º 1
0
        public void Scan(ShoppingItem item)
        {
            if (item == null)
            {
                throw new ArgumentNullException(nameof(item));
            }

            _shoppingCart.AddToBucket(item);
        }