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