Exemplo n.º 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCliente()
 {
     return $this->hasOne(Cliente::className(), ['id' => 'cliente_id']);
 }
Exemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getClientes()
 {
     return $this->hasMany(Cliente::className(), ['persona_id' => 'id']);
 }