//Nutrition Constructor public Nutrition(string name, Type itemType, decimal cost, int stockLevel, int restockLevel, int quantity, accessoryType accessoryType, nutritionType type) : base(name, itemType, cost, stockLevel, restockLevel, accessoryType) { this.quantity = quantity; this.type = type; }
//Watch Constructor public Watch(string name, Type itemType, decimal cost, int stockLevel, int restockLevel, accessoryType accessoryType, watchType type) : base(name, itemType, cost, stockLevel, restockLevel, accessoryType) { this.type = type; }
//Bag Constructor public Bag(string name, Type itemType, decimal cost, int stockLevel, int restockLevel, accessoryType accessoryType, int capacity) : base(name, itemType, cost, stockLevel, restockLevel, accessoryType) { this.capacity = capacity; }
//Accessory Constructor protected Accessory(string name, Type itemType, decimal cost, int stockLevel, int restockLevel, accessoryType type) : base(name, itemType, cost, stockLevel, restockLevel) { this.AccessoryType = type; }