打破沙锅--购物车类

using System;
using System.Collections;

[Serializable]
public class ShoppingCart
{
    
public Hashtable _CartItems = new Hashtable();

    
// Return all the items from the Shopping Cart
    public ICollection CartItems
    {
        
get { return _CartItems.Values; }
    }

    
// The sum total of the prices
    public decimal Total
    {
        
get 
        {
            
decimal sum = 0;
            
foreach (CartItem item in _CartItems.Values)
                sum 
+= item.Price * item.Quantity;
            
return sum;
        }
    }

    
// Add a new item to the shopping cart
    public void AddItem(int ID, string Name, decimal Price)
    {
        CartItem item 
= (CartItem)_CartItems[ID];
        
if (item == null)
            _CartItems.Add(ID, 
new CartItem(ID, Name, Price));
        
else
        {
            item.Quantity
++;
            _CartItems[ID] 
= item;
        }
    }

    
// Remove an item from the shopping cart
    public void RemoveItem(int ID)
    {
        CartItem item 
= (CartItem)_CartItems[ID];
        
if (item == null)
            
return;
        item.Quantity
--;
        
if (item.Quantity == 0)
            _CartItems.Remove(ID);
        
else
            _CartItems[ID] 
= item;
    }

}

[Serializable]
public class CartItem
{
    
private int _ID;
    
private string _Name;
    
private decimal _Price;
    
private int _Quantity = 1;

    
public int ID
    {
        
get { return _ID; }
    }

    
public string Name
    {
        
get { return _Name; }
    }

    
public decimal Price
    {
        
get { return _Price; }
    }

    
public int Quantity
    {
        
get { return _Quantity; }
        
set { _Quantity = value; }
    }

    
public CartItem(int ID, string Name, decimal Price)
    {
        _ID 
= ID;
        _Name 
= Name;
        _Price 
= Price;
    }
}
 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值