Esempio n. 1
0
 public function getFaculty()
 {
     return $this->hasOne(Faculty::className(), ['faculty_id' => 'faculty_id']);
 }
Esempio n. 2
0
 public function getFaculty()
 {
     //a program belongs to one faculty
     return $this->hasOne(Faculty::className(), ['faculty_id' => 'faculty_id']);
 }