public void updateProductViewedCount(int productId, int languageId) throws KKException {
   kkEng.updateProductViewedCount(productId, languageId);
 }
 public TagGroupIf[] getTagGroupsPerCategory(int categoryId, boolean getProdCount, int languageId)
     throws KKException {
   return kkEng.getTagGroupsPerCategory(categoryId, getProdCount, languageId);
 }
Beispiel #3
0
 public void changeOrderStatus(
     String sessionId, int orderId, int status, boolean customerNotified, String comments)
     throws KKException {
   kkEng.changeOrderStatus(sessionId, orderId, status, customerNotified, comments);
 }
 public ProductIf[] getOrderHistoryWithOptions(
     DataDescriptorIf dataDesc, String sessionId, int languageId, FetchProductOptionsIf options)
     throws KKException {
   return kkEng.getOrderHistoryWithOptions(dataDesc, sessionId, languageId, options);
 }
Beispiel #5
0
 public void changePassword(String sessionId, String currentPassword, String newPassword)
     throws KKException {
   kkEng.changePassword(sessionId, currentPassword, newPassword);
 }
 public void updateInventory(String sessionId, int orderId) throws KKException {
   kkEng.updateInventory(sessionId, orderId);
 }
 public CategoryIf[] getCategoriesPerProduct(int productId, int languageId) throws KKException {
   return kkEng.getCategoriesPerProduct(productId, languageId);
 }
 public void deleteAddressFromCustomer(String sessionId, int addressId) throws KKException {
   kkEng.deleteAddressFromCustomer(sessionId, addressId);
 }
Beispiel #9
0
 public EmailIf sendWelcomeEmail1(int customerId, EmailOptionsIf options) throws KKException {
   return kkEng.sendWelcomeEmail1(customerId, options);
 }
 public CurrencyIf[] getAllCurrencies() throws KKException {
   return kkEng.getAllCurrencies();
 }
 public ProductsIf searchForProducts(
     String sessionId, DataDescriptorIf dataDesc, ProductSearchIf prodSearch, int languageId)
     throws KKException {
   return kkEng.searchForProducts(sessionId, dataDesc, prodSearch, languageId);
 }