Ejemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAgreement()
 {
     return $this->hasOne(Agreements::className(), ['activity_id' => 'id']);
 }
Ejemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getAgreements()
 {
     return $this->hasMany(Agreements::className(), ['offer_id' => 'id']);
 }