db.json has been created
This commit is contained in:
parent
2d7f6a34da
commit
52b65b71d8
2 changed files with 33 additions and 0 deletions
33
db.json
Normal file
33
db.json
Normal file
|
@ -0,0 +1,33 @@
|
||||||
|
{
|
||||||
|
"products": [
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"productName": "Laptop",
|
||||||
|
"categoryId": 1,
|
||||||
|
"unitPrice": 5000.99
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"productName": "Mouse",
|
||||||
|
"categoryId": 2,
|
||||||
|
"unitPrice": 50.99
|
||||||
|
}
|
||||||
|
{
|
||||||
|
"id": "3",
|
||||||
|
"productName": "Water",
|
||||||
|
"categoryId": 3,
|
||||||
|
"unitPrice": 0.99
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"categories": [
|
||||||
|
{
|
||||||
|
"id": "1",
|
||||||
|
"categoryName": "Computers"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"id": "2",
|
||||||
|
"categoryName": "Beverages"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
0
db.json~
Normal file
0
db.json~
Normal file
Loading…
Add table
Reference in a new issue