Beispiel #1
0
 /// <summary>
 /// Disables a customized product collection
 /// </summary>
 /// <param name="modelView">UpdateCustomizedProductCollectionDTO with the customized product collection information</param>
 /// <returns>boolean true if the disable was successful, false if not</returns>
 public void disableCustomizedProductCollection(DeleteCustomizedProductCollectionModelView modelView)
 {
     DeleteCustomizedProductCollectionService.deactivate(modelView);
 }
Beispiel #2
0
 /// <summary>
 /// Removes a customized product from a customized product collection
 /// </summary>
 /// <param name="collectionID">ID of the customized product collection to update</param>
 /// <param name="customizedProductID">ID of the customized product to remove</param>
 /// <returns>boolean true if the customized product was successfully removed, false if not</returns>
 public void removeCustomizedProductFromCustomizedProductCollection(DeleteCustomizedProductFromCustomizedProductCollectionModelView modelView)
 {
     DeleteCustomizedProductCollectionService.delete(modelView);
 }