/**
  * @return \yii\db\ActiveQuery
  */
 public function getIndustryProperty()
 {
     return $this->hasOne(CsIndustryProperties::className(), ['id' => 'industry_property_id']);
 }
Ejemplo n.º 2
0
 /**
  * @return \yii\db\ActiveQuery
  */
 public function getIndustryProperties()
 {
     return $this->hasMany(CsIndustryProperties::className(), ['property_id' => 'id']);
 }