Example #1
0
 /**
  * 
  */
 public function remove($quoteID, $productID)
 {
     // Remove the product from the quote
     $where = $this->quoteInto('quote_id = ? AND product_id = ?', $quoteID, $productID);
     $this->delete($where);
     // Clean up meta data
     $quoteProductMetas = new Datasource_Insurance_Quote_Product_Metas();
     $quoteProductMetas->cleanup($quoteID, $productID);
 }