Exemple #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCantons()
 {
     return $this->hasMany(Canton::className(), ['province_id' => 'id']);
 }
Exemple #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdCant()
 {
     return $this->hasOne(Canton::className(), ['id_cant' => 'id_cant']);
 }
Exemple #3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getCanton()
 {
     return $this->hasOne(Canton::className(), ['id' => 'canton_id']);
 }