Skip to content

Instantly share code, notes, and snippets.

@debugmodedotnet
Created June 21, 2022 09:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save debugmodedotnet/876a7b7800f2878b281cacfbbc3c6310 to your computer and use it in GitHub Desktop.
Save debugmodedotnet/876a7b7800f2878b281cacfbbc3c6310 to your computer and use it in GitHub Desktop.
const products : IProductDetails[] = [
{
product:{
Id: 1,
Title: 'Pen',
Price: 100
},
inStock:true,
Qyanity: 100,
Color: "Red",
invoiceNumber : "I089"
},
{
product:{
Id: 2,
Title: 'Pencil',
Price: 1500
},
inStock:false,
Qyanity: 500,
Color: "Blue",
invoiceNumber : "I090"
},
{
product:{
Id: 3,
Title: 'Bat',
Price: 200
},
inStock:true,
Qyanity: 1283,
Color: "White",
invoiceNumber : "I091"
},
{
product:{
Id: 4,
Title: 'Ball',
Price: 300
},
inStock:true,
Qyanity: 100,
Color: "Red",
invoiceNumber : "I092"
},
{
product:{
Id: 5,
Title: 'Notebook',
Price: 800
},
inStock:false,
Qyanity: 400,
Color: "Red",
invoiceNumber : "I093"
}
];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment