private void SetTotalCost(CartItem cartItem, decimal tax) { cartItem.TotalPrice = (cartItem.Quantity * cartItem.Item.Price) + (tax * cartItem.Quantity); }
private void SetTotalTax(CartItem cartItem, decimal tax) { cartItem.TotalTax = (tax * cartItem.Quantity); }
public void Remove(CartItem cartItem) { CartItems.Remove(cartItem); }