Esempio n. 1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIdStudentEducation()
 {
     return $this->hasOne(StudentEducation::className(), ['id' => 'id_student_education']);
 }
Esempio n. 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getStudentEducations()
 {
     return $this->hasMany(StudentEducation::className(), ['id_program' => 'id']);
 }