Exemplo n.º 1
0
Arquivo: Pacote.php Projeto: schw/SGE3
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getInscreves()
 {
     return $this->hasMany(Inscreve::className(), ['pacote_idpacote' => 'idpacote']);
 }
Exemplo n.º 2
0
Arquivo: Evento.php Projeto: schw/SGE3
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getInscreve()
 {
     return $this->hasMany(Inscreve::className(), ['evento_idevento' => 'idevento']);
 }
Exemplo n.º 3
0
Arquivo: User.php Projeto: schw/SGE3
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getInscreves()
 {
     return $this->hasMany(Inscreve::className(), ['usuario_idusuario' => 'idusuario']);
 }