- Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathMain.java
More file actions
Latest commit
18 lines (13 loc) · 487 Bytes
/
Copy pathMain.java
File metadata and controls
18 lines (13 loc) · 487 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
importjava.util.Scanner;
// --------------------------------------------------------------
// MAIN
// --------------------------------------------------------------
publicstaticvoidmain(String[] args) {
Loginlogin = newLogin();
if (!login.authenticate()) {
System.out.println("Access denied. Exiting system...");
return;
}
OrderManagementSystemsystem = newOrderManagementSystem();
system.run();
}