16 lines
334 B
Java
16 lines
334 B
Java
package LibrarySystem.UI;
|
|
|
|
import LibrarySystem.domain.benutzern.*;
|
|
import LibrarySystem.facade.BibliothekSystem;
|
|
|
|
public class BibliothekTest {
|
|
|
|
public static void main(String[] args) {
|
|
BibliothekSystem system = new BibliothekSystem();
|
|
|
|
// UI starten
|
|
UI ui = new UI(system);
|
|
ui.starten();
|
|
}
|
|
}
|