商城系统简单购物车结构设计代码实现

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了商城系统简单购物车结构设计代码实现相关的知识,希望对你有一定的参考价值。

最近公司做了一个商城系统,分享一下购物车的设计。

  public class ShopCart
    {
        private string UserId;

        public List<CartItem> CartItems { get; set; } = new List<CartItem>();

        private ShopCart()
        {

        }
        public ShopCart(string userId)
        {
            this.UserId = userId;
            InitCart();
        }

        #region 初始化购物车
        private void InitCart()
        {
            CartItems = new ShopCarBll().GetListByUserId(UserId) ?? (List<CartItem>)new List<CartItem>();
        }
        #endregion

        #region 对购物车进行操作
        /// <summary>
        /// 添加商品
        /// </summary>
        /// <param name="productId"></param>
        /// <param name="count"></param>
        /// <returns></returns>
        public bool AddProduct(int productId, int count)
        {
            var productModel = new ProductBll().GetModel(productId);
            if (productModel != null)
            {
                if (CartItems.Any(x => x.ProductId == productId))
                {
                    return ModifyCount(productId, count);
                }
                else
                {
                    //更新购物车到数据库中做持外化
                    if (new ShopCarBll().Add(UserId, productId, count))
                    {
                        CartItems.Add(new CartItem(productModel.Id, productModel.Price, count));
                        return true;
                    }
                }
            }
            return false;
        }

        /// <summary>
        /// 修改商品数量
        /// </summary>
        /// <param name="productId"></param>
        /// <param name="count"></param>
        /// <returns></returns>
        public bool ModifyCount(int productId, int count)
        {
            var item = CartItems.FirstOrDefault(x => x.ProductId == productId);
            if (item != null)
            {
                if (new ShopCarBll().Mobify(UserId, productId, count))
                {
                    //更新到数据库中
                    item.Count = count;
                    return true;
                }
            }
            return false;
        }
        /// <summary>
        /// 移除商品
        /// </summary>
        /// <param name="productId"></param>
        /// <returns></returns>
        public bool RemoveProduct(int productId)
        {
            var item = CartItems.FirstOrDefault(x => x.ProductId == productId);
            if (item != null)
            {
                if (new ShopCarBll().Remove(UserId, productId))
                {
                    //更新到数据库中
                    CartItems.Remove(item);
                    return true;
                }
            }
            return false;
        }
        #endregion

        /// <summary>
        /// 获取购物车总价
        /// </summary>
        /// <returns></returns>
        public decimal GetSumFee()
        {
            return CartItems.Sum(x => x.Count * x.Count);
        }
    }

    public class CartItem
    {
        public int ProductId { get; set; }
        public int Count { get; set; }

        public decimal Price { get; set; }

        public CartItem(int productId, decimal price, int count)
        {
            this.ProductId = productId;
            this.Count = count;
            this.Price = price;
        }
    }
接着写测试类
 public class testCart
    {
        public void Test()
        {
            string userId = "123123123";
            ShopCart myCart = new ShopCart(userId);
            myCart.AddProduct(1001, 1);
            myCart.AddProduct(1002, 3);
            myCart.AddProduct(1003, 2);

            myCart.ModifyCount(1002, 5);//修改购物车数量
            myCart.RemoveProduct(1003);//删除购物车商品
            decimal sumFee = myCart.GetSumFee();//获取所有购物车金额
        }
    }

 


完工

 

以上是关于商城系统简单购物车结构设计代码实现的主要内容,如果未能解决你的问题,请参考以下文章

PHP+Mysql服装商城 网上服装购物商城 基于PHP服装商城的系统设计与实现用户注册

javaweb项目电子商城购物系统课程设计任务书及成绩评定和毕业设计与实现

大神。一个简易的javaweb项目。商城类的。有没有源代码啊。急需!

超级简单基于nodejs电商管理系统的设计与实现.zip(论文+源码+ppt文档+视频录制)

毕业设计 微信小程序购物商城系统 含代码

计算机课程设计SSH电子商城购物系统代码讲解+安装调试+文档指导