2022-09-27 09:24:15 +02:00
|
|
|
package de.hs_mannheim.informatik.bank;
|
|
|
|
|
|
|
|
import de.hs_mannheim.informatik.bank.facade.Banksystem;
|
|
|
|
import de.hs_mannheim.informatik.bank.ui.UI;
|
|
|
|
|
|
|
|
public class Main {
|
|
|
|
|
2022-10-19 18:49:43 +02:00
|
|
|
public static void main(String[] args) throws Exception {
|
2022-09-27 09:24:15 +02:00
|
|
|
Banksystem bs = new Banksystem("Spaßkasse Mannheim");
|
|
|
|
UI ui = new UI(bs);
|
2022-10-27 23:44:00 +02:00
|
|
|
|
2022-09-27 09:24:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|