AdventureWorks.WebServices.Models.ShoppingCart.ShoppingCart C# (CSharp) Method

ShoppingCart() public method

public ShoppingCart ( ICollection shoppingCartItems ) : System.Collections.Generic
shoppingCartItems ICollection
return System.Collections.Generic
        public ShoppingCart(ICollection<ShoppingCartItem> shoppingCartItems)
        {
            ShoppingCartItems = shoppingCartItems;
        }
ShoppingCart