public CartItem(String itemId, String productId, String name, String description, int quantity, double unitCost)
this.itemId = itemId;
this.productId = productId;
this.name = name;
this.description = description;
this.quantity = quantity;
this.unitCost = unitCost;
|