Initial commit of project.

master
cansu.tns 2022-10-24 15:37:31 +02:00
parent 78c57a5654
commit c9edb98908
3 changed files with 7 additions and 7 deletions

View File

@ -1,13 +1,13 @@
package de.hs_mannheim.informatik.bibliothek; package de.hs_mannheim.informatik.bibliothek;
import de.hs_mannheim.informatik.bibliothek.domain.Buch; import de.hs_mannheim.informatik.bibliothek.domain.Buch;
import de.hs_mannheim.informatik.bibliothek.facade.Bibliotheksystem; import de.hs_mannheim.informatik.bibliothek.facade.Bibliothekssystem;
import de.hs_mannheim.informatik.bibliothek.ui.UI; import de.hs_mannheim.informatik.bibliothek.ui.UI;
public class Main { public class Main {
public static void main(String[] args) { public static void main(String[] args) {
Bibliotheksystem bs = new Bibliotheksystem("Goethe-Universität Frankfurt"); Bibliothekssystem bs = new Bibliothekssystem("Goethe-Universität Frankfurt");
Buch b1 = new Buch("Artificial Intelligence: Learning automation skills with Python", Buch b1 = new Buch("Artificial Intelligence: Learning automation skills with Python",
"Chris Baker", 2019 , 2 ); "Chris Baker", 2019 , 2 );
Buch b2 = new Buch("PHP und MySQL: für Einsteiger", "Michael Bonacina", 2018 , 1); Buch b2 = new Buch("PHP und MySQL: für Einsteiger", "Michael Bonacina", 2018 , 1);

View File

@ -6,11 +6,11 @@ import de.hs_mannheim.informatik.bibliothek.domain.Buch;
import de.hs_mannheim.informatik.bibliothek.domain.Bibliothek; import de.hs_mannheim.informatik.bibliothek.domain.Bibliothek;
import de.hs_mannheim.informatik.bibliothek.domain.Student; import de.hs_mannheim.informatik.bibliothek.domain.Student;
public class Bibliotheksystem { public class Bibliothekssystem {
private Bibliothek bib; private Bibliothek bib;
public Bibliotheksystem(String name) { public Bibliothekssystem(String name) {
this.bib = new Bibliothek(name); this.bib = new Bibliothek(name);
} }

View File

@ -2,14 +2,14 @@ package de.hs_mannheim.informatik.bibliothek.ui;
import java.util.Scanner; import java.util.Scanner;
import de.hs_mannheim.informatik.bibliothek.facade.Bibliotheksystem; import de.hs_mannheim.informatik.bibliothek.facade.Bibliothekssystem;
public class UI { public class UI {
private Bibliotheksystem bs; private Bibliothekssystem bs;
Scanner sc = new Scanner(System.in); Scanner sc = new Scanner(System.in);
public UI(Bibliotheksystem bs) { public UI(Bibliothekssystem bs) {
this.bs = bs; this.bs = bs;
menue(); menue();
} }