Supermarket.Inventory.Inventory C# (CSharp) Method

Inventory() public method

A new, empty inventory.
public Inventory ( ) : System
return System
        public Inventory()
        {
            items = new Dictionary<string, Product>();
        }