_init(\Magento\Downloadable\Model\ResourceModel\Link\Purchased::class); parent::_construct(); } /** * Check order id * * @return $this */ public function beforeSave() { if (null == $this->getOrderId()) { throw new \Exception(__('Order id cannot be null')); } return parent::beforeSave(); } }