Exemple #1
0
 /**
  * Remove a product from the quote and clean up any meta data
  *
  * @param int productID ID of the product you want to remove
  * @return boolean True or False depending on success
  *
  * Example: $result = $quoteManager->removeProduct(Manager_Insurance_LandlordsPlus_Quote::BUILDING_COVER);
  */
 public function removeProduct($productID)
 {
     $quoteProducts = new Datasource_Insurance_Quote_Products();
     return $quoteProducts->remove($this->_quoteModel->ID, $productID);
 }