refractor
parent
7a4a3274ea
commit
68c7766e2c
|
|
@ -1,4 +1,4 @@
|
|||
package backend;
|
||||
package de.th_mannheim.informatik.pr1.onlineshop.backend;
|
||||
|
||||
public class Bestellung {
|
||||
public int id;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package backend;
|
||||
package de.th_mannheim.informatik.pr1.onlineshop.backend;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package backend;
|
||||
package de.th_mannheim.informatik.pr1.onlineshop.backend;
|
||||
|
||||
public class Kunde {
|
||||
public String name;
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package backend;
|
||||
package de.th_mannheim.informatik.pr1.onlineshop.backend;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package backend;
|
||||
package de.th_mannheim.informatik.pr1.onlineshop.backend;
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package backend;
|
||||
package de.th_mannheim.informatik.pr1.onlineshop.backend;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package backend;
|
||||
package de.th_mannheim.informatik.pr1.onlineshop.backend;
|
||||
|
||||
|
||||
public class Produkt {
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package backend;
|
||||
package de.th_mannheim.informatik.pr1.onlineshop.backend;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package backend;
|
||||
package de.th_mannheim.informatik.pr1.onlineshop.backend;
|
||||
|
||||
import java.util.ArrayList;
|
||||
|
||||
|
|
@ -1,4 +1,4 @@
|
|||
package backend;
|
||||
package de.th_mannheim.informatik.pr1.onlineshop.backend;
|
||||
|
||||
import static org.junit.jupiter.api.Assertions.*;
|
||||
|
||||
|
|
@ -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;
|
||||
Loading…
Reference in New Issue