AdventureWorks.WebServices.Models.ShoppingCart.ShoppingCart C# (CSharp) 메소드

ShoppingCart() 공개 메소드

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