Skip to content

cterse/TrainingDemo

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TrainingDemo

User - Order - Product

A user can have zero or many orders.

Each order can have one or many products.

User

String customerId;
String customerFirstName;
String customerLastName;
String customerEmail;
int customerPhone;
String customerAddress;
String customerPassword;
Date customerRegDate;

Order

String id;
Date date;
double totalAmount;
String status;
List orderedProducts;

Product

String id;
String code;
String name;
double price;
String category;
String type;
String gender;
String size;
String color;
String description;
String brand;
String image;

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages