-
Notifications
You must be signed in to change notification settings - Fork 38
Expand file tree
/
Copy pathCart.cs
More file actions
77 lines (65 loc) · 1.85 KB
/
Cart.cs
File metadata and controls
77 lines (65 loc) · 1.85 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
using System;
namespace Accounting
{
public class Cart
{
List<Product> products;
public Cart()
{
this.products = new List<Product>();
}
public virtual int TotalCost()
{
int cost = 0;
foreach (var item in this.Products())
{
cost += item.TotalCost();
}
return cost;
}
public virtual IEnumerable<Product> Products()
{
foreach (var product in this.products)
{
yield return product;
}
}
public void Add(Product product)
{
int index = products.FindIndex(p => p.Name == product.Name && p.GetType() == product.GetType());
if (index == -1)
this.products.Add();
else
this.products[index].AddUnits(product.Units);
}
}
public class CartWithShipment : Cart
{
private int freeCost;
private int costPerUnit;
public CartWithShipment(int costPerUnit, int freeCost)
{
this.costPerUnit = costPerUnit;
this.freeCost = freeCost;
}
public override IEnumerable<Product> Products()
{
int cost = 0;
int units = 0;
foreach (var product in base.Products())
{
cost += product.TotalCost();
units += product.Units;
yield return product;
}
if (cost >= freeCost)
{
yield return new Product("🚙 Shipment", 0, units);
}
else
{
yield return new Product("🚙 Shipment", this.costPerUnit, units);
}
}
}
}