Esempio n. 1
0
 Product IProductService.getProductsById(string id)
 {
     return(ProductTableServices.getAllProductsById(id));
 }
Esempio n. 2
0
 List <Product> IProductService.getProductsByType(string typeId)
 {
     return(ProductTableServices.getAllProductsByType(typeId));
 }
Esempio n. 3
0
 List <Product> IProductService.getProductsByLanguage(string langId)
 {
     return(ProductTableServices.getAllProductsByLanguage(langId));
 }
Esempio n. 4
0
 List <Product> IProductService.getProductsByCategory(string catId)
 {
     return(ProductTableServices.getAllProductsByCategory(catId));
 }
Esempio n. 5
0
 List <Product> IProductService.getAllProducts()
 {
     return(ProductTableServices.getAllProducts());
 }
Esempio n. 6
0
 Boolean IProductService.addProduct(Product p)
 {
     return(ProductTableServices.addProduct(p));
 }