import java.util.ArrayList; public class StorageManager { private ArrayList storageProducts; <<<<<<< HEAD public StorageManager() { this.storageProducts = new ArrayList(); ======= public StorageManager(ArrayList products) { this.storageProducts = products; >>>>>>> 89bb3a674e4304644c37109ed5a608b97926deb9 } public void addProduct(Product product) { this.storageProducts.add(product); } public ArrayList getStorage() { return this.storageProducts; } public void increaseStorage(int id, int amt) { this.getProductByID(id).increaseAmount(amt); } public Product getProductByID(int id) { for (Product product : this.storageProducts) { if (product.getID() == id) { return product; } } return new Product(-1, "", 0, 0); } }