/**
  * Retrieve multiple objects by partner id.
  *
  * @param      int $partnerId
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPartnerId($partnerId, PropelPDO $con = null)
 {
     $criteria = new Criteria();
     $criteria->add(AuditTrailConfigPeer::PARTNER_ID, $partnerId);
     return AuditTrailConfigPeer::doSelect($criteria, $con);
 }
 /**
  * Retrieve multiple objects by pkey.
  *
  * @param      array $pks List of primary keys
  * @param      PropelPDO $con the connection to use
  * @throws     PropelException Any exceptions caught during processing will be
  *		 rethrown wrapped into a PropelException.
  */
 public static function retrieveByPKs($pks, PropelPDO $con = null)
 {
     $objs = null;
     if (empty($pks)) {
         $objs = array();
     } else {
         $criteria = new Criteria(AuditTrailConfigPeer::DATABASE_NAME);
         $criteria->add(AuditTrailConfigPeer::ID, $pks, Criteria::IN);
         $objs = AuditTrailConfigPeer::doSelect($criteria, $con);
     }
     return $objs;
 }