refractor

main
gamebeaker 2025-12-15 14:50:58 +01:00
parent 7a4a3274ea
commit 68c7766e2c
11 changed files with 13 additions and 13 deletions

View File

@ -1,4 +1,4 @@
package backend;
package de.th_mannheim.informatik.pr1.onlineshop.backend;
public class Bestellung {
public int id;

View File

@ -1,4 +1,4 @@
package backend;
package de.th_mannheim.informatik.pr1.onlineshop.backend;
import static org.junit.jupiter.api.Assertions.*;

View File

@ -1,4 +1,4 @@
package backend;
package de.th_mannheim.informatik.pr1.onlineshop.backend;
public class Kunde {
public String name;

View File

@ -1,4 +1,4 @@
package backend;
package de.th_mannheim.informatik.pr1.onlineshop.backend;
import static org.junit.jupiter.api.Assertions.*;

View File

@ -1,4 +1,4 @@
package backend;
package de.th_mannheim.informatik.pr1.onlineshop.backend;
import java.util.ArrayList;

View File

@ -1,4 +1,4 @@
package backend;
package de.th_mannheim.informatik.pr1.onlineshop.backend;
import static org.junit.jupiter.api.Assertions.*;

View File

@ -1,4 +1,4 @@
package backend;
package de.th_mannheim.informatik.pr1.onlineshop.backend;
public class Produkt {

View File

@ -1,4 +1,4 @@
package backend;
package de.th_mannheim.informatik.pr1.onlineshop.backend;
import static org.junit.jupiter.api.Assertions.*;

View File

@ -1,4 +1,4 @@
package backend;
package de.th_mannheim.informatik.pr1.onlineshop.backend;
import java.util.ArrayList;

View File

@ -1,4 +1,4 @@
package backend;
package de.th_mannheim.informatik.pr1.onlineshop.backend;
import static org.junit.jupiter.api.Assertions.*;

View File

@ -1,11 +1,11 @@
package tui;
import backend.OnlineShop;
package de.th_mannheim.informatik.pr1.onlineshop.tui;
import java.io.File;
import java.io.FileNotFoundException;
import java.util.ArrayList;
import java.util.Scanner;
import de.th_mannheim.informatik.pr1.onlineshop.backend.OnlineShop;
public class ShopTUI {
private static OnlineShop shop;
private static Scanner sc;