curl --location 'http://localhost:9191/product/addProduct' \
--header 'Content-Type: application/json' \
--data '{
"name": "Lancer Shoes",
"qty": 1,
"price": 100.0
}'
curl --location 'http://localhost:9191/product/addProduct' \
--header 'Content-Type: application/json' \
--data '{
"name": "Mac Book Pro",
"qty": 1,
"price": 1000.0
}'
curl --location 'http://localhost:9191/product/addProduct' \
--header 'Content-Type: application/json' \
--data '{
"name": "HeadPhones",
"qty": 1,
"price": 11.0
}'
http://localhost:9191/product/products
http://localhost:9191/product/productById/2
http://localhost:9191/product/product/Mac Book Pro
curl --location --request PUT 'http://localhost:9191/product/update' \
--header 'Content-Type: application/json' \
--data '{
"id": 3,
"name": "HeadPhones",
"qty": 3,
"price": 33.0
}'
http://localhost:9191/product/delete/3