/**
  * {@inheritdoc}
  */
 public function saveInSetIncluding(\Magento\Framework\Model\AbstractModel $object, $attributeEntityId = null, $attributeSetId = null, $attributeGroupId = null, $attributeSortOrder = null)
 {
     $pluginInfo = $this->pluginList->getNext($this->subjectType, 'saveInSetIncluding');
     if (!$pluginInfo) {
         return parent::saveInSetIncluding($object, $attributeEntityId, $attributeSetId, $attributeGroupId, $attributeSortOrder);
     } else {
         return $this->___callPlugins('saveInSetIncluding', func_get_args(), $pluginInfo);
     }
 }