public function getDbConnection()
 {
     if (self::$db !== null) {
         return self::$db;
     } else {
         self::$db = Yii::app()->mage2;
         if (self::$db instanceof CDbConnection) {
             self::$db->setActive(true);
             return self::$db;
         } else {
             throw new CDbException(Yii::t('yii', 'Active Record requires a "db" CDbConnection application component.'));
         }
     }
 }
 /**
  * Returns the static model of the specified AR class.
  * Please note that you should have this exact method in all your CActiveRecord descendants!
  * @param string $className active record class name.
  * @return Mage2SalesPaymentTransactionPeer the static model class
  */
 public static function model($className = __CLASS__)
 {
     return parent::model($className);
 }