Example #1
0
 public function getItemCollection()
 {
     if (!$this->getId()) {
         throw new \Ess\M2ePro\Model\Exception\Logic('Instance must be loaded first.');
     }
     if (!is_null($this->itemCollection)) {
         return $this->itemCollection;
     }
     $this->itemCollection = $this->activeRecordFactory->getObject('Ebay\\Processing\\Action\\Item')->getCollection();
     $this->itemCollection->setActionFilter($this);
     return $this->itemCollection;
 }