Beispiel #1
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getDepartments()
 {
     return $this->hasMany(Department::className(), ['faculty_id' => 'id']);
 }
Beispiel #2
0
 public function getDepartment()
 {
     return $this->hasOne(Department::className(), ['id' => 'department_id']);
 }
Beispiel #3
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getDept()
 {
     return $this->hasOne(Department::className(), ['ID' => 'dept_ID']);
 }