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