如何使用 C# 中的集合在购物车视图中编辑数量
本文关键字:编辑 视图 购物车 集合 何使用 | 更新日期: 2023-09-27 18:34:09
我在 C# 4.5 ASP.NET 中有以下内容的代码:
using System.Collections.Generic;
using System.Linq;
namespace SportsStore.Models
{
public class Cart
{
private List<CartLine> lineCollection = new List<CartLine>();
public void AddItem(Product product, int quantity)
{
CartLine line = lineCollection
.Where(p => p.Product.ProductID == product.ProductID)
.FirstOrDefault();
if (line == null)
{
lineCollection.Add(new CartLine
{
Product = product,
Quantity = quantity
});
}
else
{
line.Quantity += quantity;
}
}
public void RemoveLine(Product product)
{
lineCollection.RemoveAll(l => l.Product.ProductID == product.ProductID);
}
public decimal ComputeTotalValue()
{
return lineCollection.Sum(e => e.Product.Price * e.Quantity);
}
public void Clear()
{
lineCollection.Clear();
}
public IEnumerable<CartLine> Lines
{
get { return lineCollection; }
}
}
public class CartLine
{
public Product Product { get; set; }
public int Quantity { get; set; }
}
}
有一个方法 删除线(产品产品) 但是我不知道如何创建一个方法编辑线来编辑购物车视图中的数量!请帮忙!谢谢!
试试这个
public void EditLine(Product product, int quantity)
{
CartLine line = lineCollection
.Where(p => p.Product.ProductID == product.ProductID)
.FirstOrDefault();
if (line != null)
{
line.Quantity += quantity;
}
}