I am not able to add the bidirectional relationship in the same model:
$this->belongsTo('userid', 'Frontend\Models\Users', 'id', array(
'alias' => 'user'
));
$this->addHasMany("Tutor\Models\Organization\Organization","userid",",Frontend\Models\Users","id" , array(
'alias' => 'organization',
'foreignKey' => array(
'message' => 'User cannot be deleted because he/she has activity in the system'
)));