This commit is contained in:
Igor Bartkowski 2024-10-18 15:17:59 +02:00
commit df521054ef
3 changed files with 31 additions and 0 deletions

@ -3,9 +3,15 @@ import java.util.ArrayList;
public class OrderSystem { public class OrderSystem {
private StorageManager systemManager; private StorageManager systemManager;
private ArrayList<Client> systemClients; private ArrayList<Client> systemClients;
<<<<<<< HEAD
public OrderSystem(StorageManager manager) { public OrderSystem(StorageManager manager) {
this.systemManager = manager; this.systemManager = manager;
this.systemClients = new ArrayList<Client>(); this.systemClients = new ArrayList<Client>();
=======
public OrderSystem(StorageManager manager, ArrayList<Client> clients) {
this.systemManager = manager;
this.systemClients = clients;
>>>>>>> 89bb3a674e4304644c37109ed5a608b97926deb9
} }
public void addProduct(Product product) { public void addProduct(Product product) {
this.systemManager.addProduct(product); this.systemManager.addProduct(product);
@ -52,4 +58,8 @@ public class OrderSystem {
System.out.println("ID: " + product.getID() + ", Name: " + product.getName() + ", Price: " + product.getPrice() + ", Amount: " + product.getAmount()); System.out.println("ID: " + product.getID() + ", Name: " + product.getName() + ", Price: " + product.getPrice() + ", Amount: " + product.getAmount());
} }
} }
<<<<<<< HEAD
} }
=======
}
>>>>>>> 89bb3a674e4304644c37109ed5a608b97926deb9

@ -2,8 +2,13 @@ import java.util.ArrayList;
public class StorageManager { public class StorageManager {
private ArrayList<Product> storageProducts; private ArrayList<Product> storageProducts;
<<<<<<< HEAD
public StorageManager() { public StorageManager() {
this.storageProducts = new ArrayList<Product>(); this.storageProducts = new ArrayList<Product>();
=======
public StorageManager(ArrayList<Product> products) {
this.storageProducts = products;
>>>>>>> 89bb3a674e4304644c37109ed5a608b97926deb9
} }
public void addProduct(Product product) { public void addProduct(Product product) {
this.storageProducts.add(product); this.storageProducts.add(product);

@ -1,13 +1,23 @@
<<<<<<< HEAD
import java.util.Scanner; import java.util.Scanner;
import java.util.ArrayList; import java.util.ArrayList;
=======
import java.util.ArrayList;
import java.util.Scanner;
>>>>>>> 89bb3a674e4304644c37109ed5a608b97926deb9
public class TechStore { public class TechStore {
public static void p(String input) { public static void p(String input) {
System.out.print(input); System.out.print(input);
} }
public static void main(String[] args) { public static void main(String[] args) {
<<<<<<< HEAD
StorageManager manager = new StorageManager(); StorageManager manager = new StorageManager();
OrderSystem system = new OrderSystem(manager); OrderSystem system = new OrderSystem(manager);
=======
StorageManager manager = new StorageManager(new ArrayList<Product>());
OrderSystem system = new OrderSystem(manager, new ArrayList<Client>());
>>>>>>> 89bb3a674e4304644c37109ed5a608b97926deb9
Scanner scnr = new Scanner(System.in); Scanner scnr = new Scanner(System.in);
while (true) { while (true) {
p("\nInput mode: "); p("\nInput mode: ");
@ -106,3 +116,9 @@ public class TechStore {
} }
} }
} }
<<<<<<< HEAD
=======
>>>>>>> 89bb3a674e4304644c37109ed5a608b97926deb9