OIShoppingListWinPhone.DataModel.ShoppingList.ShoppingList C# (CSharp) Method

ShoppingList() public method

public ShoppingList ( ) : System
return System
        public ShoppingList()
        {
            _listItems = new EntitySet<ShoppingListItem>();
            _listStores = new EntitySet<ShoppingListStore>();

            CheckedCount = 0;
            CheckedPrice = 0.0F;
            TotalPrice = 0.0F;
        }