-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.java
More file actions
44 lines (38 loc) · 1.06 KB
/
Copy pathMain.java
File metadata and controls
44 lines (38 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import java.util.Scanner;
/*
* E-Commerce Applications
1 -> Admin
2 -> Client
3 -> Create New User
* Entire Client List -> List
* Entire Purchase List -> List
* Entire Product List -> Map
* Entire Customer Purchase List -> Map
* Admin
-> Add Product
-> Can view/Add/Delete/Update Customers List
-> Can view/Add/Delete/Update Products List
-> Can view/Add/Delete/Update Coupon Codes
-> Can view All Sales
* Product Registration
-> Product Id
-> Product Name
-> Product Stock
* Client
-> Can View/AddToCart/Buy a Product
-> Can View Invoice
-> Delete Product while checkout
* New Client Registration
-> Client Name
-> Client User ID
-> Admin Password To Verifications
*
*/
public class Main {
public static void main(String[] args) {
System.out.println("=================================" +
"\n======E-Commerce Application=====" +
"\n=================================");
PublicUserControlPanel.userControls();
}
}