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