## Project use nodejs version 15.0.1 and mysql in XAMPP##
## Generate data base ##
####
execute query in file mysql.sql
####
## Install package ##
```npm install```
## Generate model
```npm run gen-db```
## Run unit test ##
```npm test```
## Run project ##
```npm start```
## Task 1 ##
####
use the following api:

http://localhost:3000/api/v1.0/products : for list all products

http://localhost:3000/api/v1.0/products?currentPage=1&pageSize=2: for lis list all products with paging

http://localhost:3000/api/v1.0/products: with post method for create product

http://localhost:3000/api/v1.0/products/{code}: with put method for update product 

http://localhost:3000/api/v1.0/products/p003002: with delete method for delete product by code

http://localhost:3000/api/v1.0/products?sort={name}&dir={desc/asc}: for get all product with sorting 
####