samples/batch-file-processing/batchGenerator/services/fakeDataService.js

101 lines
3.0 KiB
JavaScript

const distributors = [
{
locationId: "AAA111",
locationName: "Contoso Suites",
locationAddress: "123 Wholesale Road",
locationPostCode: 98112
},
{
locationId: "BBB222",
locationName: "Northwind Traders",
locationAddress: "456 Foodcenter Lane",
locationPostCode: 98101
},
{
locationId: "CCC333",
locationName: "VanArsdel Ltd.",
locationAddress: "789 FE Road",
locationPostCode: 98052
},
{
locationId: "DDD444",
locationName: "Wide World Importers",
locationAddress: "645 Roosevelt Avenue",
locationPostCode: 98121
}
];
const products = [
{
productId: "75542e38-563f-436f-adeb-f426f1dabb5c",
productName: "Starfruit Explosion",
productDescription: "This starfruit ice cream is out of this world!",
unitCost: 3.99
},
{
productId: "e94d85bc-7bd0-44f3-854e-d8cd70348b63",
productName: "Just Peachy",
productDescription: "Your taste buds and this ice cream were made for peach other.",
unitCost: 4.99
},
{
productId: "288fd748-ad2b-4417-83b9-7aa5be9cff22",
productName: "Tropical Mango",
productDescription: "You know what they say... It takes two. You. And this ice cream.",
unitCost: 5.99
},
{
productId: "76065ecd-8a14-426d-a4cd-abbde2acbb10",
productName: "Gone Bananas",
productDescription: "I'm not sure how appealing banana ice cream really is.",
unitCost: 4.49
},
{
productId: "551a9be9-7f1c-447d-83ee-b18f5a6fb018",
productName: "Matcha Green Tea",
productDescription: "Green tea ice cream is good for you because it is green.",
unitCost: 3.99
},
{
productId: "80bab959-ef8b-4ae3-8bf2-e876d77277b6",
productName: "French Vanilla",
productDescription: "It's vanilla ice cream.",
unitCost: 2.99
},
{
productId: "4c25613a-a3c2-4ef3-8e02-9c335eb23204",
productName: "Truly Orange-inal",
productDescription: "Made from concentrate.",
unitCost: 3.49
},
{
productId: "65ab124a-9b2c-4294-a52d-18839364ef15",
productName: "Durian Durian",
productDescription: "Smells suspect but tastes... also suspect.",
unitCost: 8.99
},
{
productId: "e4e7068e-500e-4a00-8be4-630d4594735b",
productName: "It's Grape!",
productDescription: "Unraisinably good ice cream.",
unitCost: 3.99
},
{
productId: "0f5a0fe8-4506-4332-969e-699a693334a8",
productName: "Beer",
productDescription: "Hey this isn't ice cream!",
unitCost: 15.99
}
];
module.exports.getDistributors = () => {
return distributors;
}
module.exports.getDistributor = (productId) => {
return distributors.find(distributor => distributor.productId == productId);
}
module.exports.getProducts = () => {
return products;
}