コード例 #1
0
ファイル: VentaAsistida.php プロジェクト: Jstherion/kronos
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCliente()
 {
     return $this->hasOne(Cliente::className(), ['id' => 'cliente_id']);
 }
コード例 #2
0
ファイル: Persona.php プロジェクト: Jstherion/kronos
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getClientes()
 {
     return $this->hasMany(Cliente::className(), ['persona_id' => 'id']);
 }