/**
  * Exclude object from result
  *
  * @param   ChildSocolissimoPrice $socolissimoPrice Object to remove from the list of results
  *
  * @return ChildSocolissimoPriceQuery The current query, for fluid interface
  */
 public function prune($socolissimoPrice = null)
 {
     if ($socolissimoPrice) {
         $this->addUsingAlias(SocolissimoPriceTableMap::ID, $socolissimoPrice->getId(), Criteria::NOT_EQUAL);
     }
     return $this;
 }