예제 #1
0
파일: Tuote.php 프로젝트: CDIO3/biosafe
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getNos()
 {
     return $this->hasMany(Nos::className(), ['tuote_id' => 'id']);
 }
예제 #2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getNos()
 {
     return $this->hasOne(Nos::className(), ['id' => 'nos_id']);
 }
예제 #3
0
파일: Tulokset.php 프로젝트: CDIO3/biosafe
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getBakteeri()
 {
     return $this->hasOne(Nos::className(), ['bakteeri_id' => 'bakteeri_id']);
 }