예제 #1
0
파일: Pacote.php 프로젝트: schw/SGE3
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getInscreves()
 {
     return $this->hasMany(Inscreve::className(), ['pacote_idpacote' => 'idpacote']);
 }
예제 #2
0
파일: Evento.php 프로젝트: schw/SGE3
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getInscreve()
 {
     return $this->hasMany(Inscreve::className(), ['evento_idevento' => 'idevento']);
 }
예제 #3
0
파일: User.php 프로젝트: schw/SGE3
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getInscreves()
 {
     return $this->hasMany(Inscreve::className(), ['usuario_idusuario' => 'idusuario']);
 }