Files
agenciapsilmno/src/service/ProductService.js
T
2023-04-06 12:22:35 +03:00

20 lines
522 B
JavaScript

export default class ProductService {
getProductsSmall() {
return fetch('demo/data/products-small.json')
.then((res) => res.json())
.then((d) => d.data);
}
getProducts() {
return fetch('demo/data/products.json')
.then((res) => res.json())
.then((d) => d.data);
}
getProductsWithOrdersSmall() {
return fetch('demo/data/products-orders-small.json')
.then((res) => res.json())
.then((d) => d.data);
}
}