public Item(ItemName name, UnitPrice unitPrice, Quantity quantity) { Name = name; UnitPrice = unitPrice; Quantity = quantity; }
public Item(ItemName name, UnitPrice unitPrice) : this(name, unitPrice, new Quantity(1)) { }