-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b9a51a0
commit 6357660
Showing
1 changed file
with
33 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,34 @@ | ||
# Couture-Application | ||
|
||
This application is for Tailors and has the puprpose to help them managed theirs activities | ||
The features of the application are the followings: | ||
|
||
- Client management | ||
- Order management | ||
- User management | ||
- Employee management | ||
- Type of dresses management | ||
|
||
The application is an API and will be available for many clients such as: `Java`, `C#`, `Python`, `Go` and `JavaScript` | ||
|
||
## Database Structure | ||
GenericPerson(Id, FirstName, LastName, Telephone, Gender) | ||
Employee(Id, FirstName, LastName, Telephone, Gender) | ||
User(Id, FirstName, LastName, Telephone, Login, Password, Category, Gender) | ||
Client(Id, FirstName, LastName, Telephone, Gender) | ||
Order(Id, Number, Date, DeliveryDate, #IdClient) | ||
Dress(Id, Amount, #IdOrder, #IdDressType, #IdModelType, #IdMaterialType) | ||
Measure(Id, Type, Value, #IdDress, #IdMeasureType) | ||
GenericType(Id, Name) | ||
DressType(Id, Name) | ||
ModelType(Id, Name) | ||
MaterialType(Id, Name, Image) | ||
MeasureType(Id, Name, Description) | ||
|
||
![CoutureApp-Diagram](https://github.com/HattoriHenzo/couture-application/assets/5141285/ea5f8ad9-f0b9-4af8-a1c7-26bdb2fc454b) | ||
|
||
|
||
## Architecture | ||
![CoutureApp-Architecture](https://github.com/HattoriHenzo/couture-application/assets/5141285/9442418a-91f5-4673-995f-3f3ddcff1eb5) | ||
|
||
|