added invoice and order collection

This commit is contained in:
2023-01-07 23:14:41 +01:00
parent 58fb02875a
commit 573e17161b
6 changed files with 160 additions and 13 deletions

View File

@@ -2,6 +2,10 @@ package com.bib.essensbestellungsverwaltung;
public class SuperMain {
public static void main(String[] args) {
ConsoleMain.main(args);
if(args.length > 0){
ConsoleMain.main(args);
}else {
HelloApplication.main(args);
}
}
}