Interface ProductService
public interface ProductService
-
Method Summary
Modifier and TypeMethodDescriptionvoid
deleteProduct
(Product product) Удаление продукта из биллинга и всей его истории.void
deleteProductCategory
(ProductCategory productCategory) getCategoryOfProduct
(int productCategoryId) Получение категории продуктов по его idgetProductCategories
(Page page) byte[]
getProductPicture
(int id, TypeProduct type) void
getProductPicture0
(int id, javax.xml.ws.Holder<javax.activation.DataHandler> fileData, TypeProduct type) Получение изображения продукта для отображения в ЛКgetProducts
(Page page) getProductsOfCategory
(int productCategoryId) void
setProductPicture
(int id, byte[] picture, TypeProduct type) void
updateProduct
(Product product) void
updateProductCategory
(ProductCategory productCategory)
-
Method Details
-
getProducts
- Returns:
- получение списка продуктов
- Throws:
ru.bitel.bgbilling.common.BGException
-
updateProduct
- Throws:
ru.bitel.bgbilling.common.BGException
-
deleteProduct
Удаление продукта из биллинга и всей его истории.- Throws:
ru.bitel.bgbilling.common.BGException
-
getProductCategories
SearchResult<ProductCategory> getProductCategories(Page page) throws ru.bitel.bgbilling.common.BGException - Returns:
- список всех заведённых категорий продуктов
- Throws:
ru.bitel.bgbilling.common.BGException
-
updateProductCategory
void updateProductCategory(ProductCategory productCategory) throws ru.bitel.bgbilling.common.BGException - Throws:
ru.bitel.bgbilling.common.BGException
-
deleteProductCategory
void deleteProductCategory(ProductCategory productCategory) throws ru.bitel.bgbilling.common.BGException - Throws:
ru.bitel.bgbilling.common.BGException
-
getCategoryOfProduct
ProductCategory getCategoryOfProduct(int productCategoryId) throws ru.bitel.bgbilling.common.BGException Получение категории продуктов по его id- Parameters:
productCategoryId
- - id категории продуктов- Returns:
- категория продуктов SoftLine
- Throws:
ru.bitel.bgbilling.common.BGException
-
getProductsOfCategory
List<Product> getProductsOfCategory(int productCategoryId) throws ru.bitel.bgbilling.common.BGException - Parameters:
productCategoryId
- id категории- Returns:
- список продуктов SoftLine для определённой категории
- Throws:
ru.bitel.bgbilling.common.BGException
-
setProductPicture
void setProductPicture(int id, byte[] picture, TypeProduct type) throws ru.bitel.bgbilling.common.BGException - Throws:
ru.bitel.bgbilling.common.BGException
-
getProductPicture
- Throws:
ru.bitel.bgbilling.common.BGException
-
getProductPicture0
void getProductPicture0(int id, javax.xml.ws.Holder<javax.activation.DataHandler> fileData, TypeProduct type) throws ru.bitel.bgbilling.common.BGException Получение изображения продукта для отображения в ЛК- Parameters:
id
- id продукта или категории для которого получается изображениеfileData
- holder для результата- Throws:
ru.bitel.bgbilling.common.BGException
-