/**
  * @param aeopSKUProperty $aeopSKUProperty
  * @return $this
  */
 public function addAeopSKUProperty(aeopSKUProperty $aeopSKUProperty)
 {
     if (!$this->aeopSKUProperty instanceof aeopSKUPropertyList) {
         $this->aeopSKUProperty = new aeopSKUPropertyList();
     }
     $this->aeopSKUProperty->add($aeopSKUProperty);
     return $this;
 }
Beispiel #2
0
 /**
  * @param aeopAeProductProperty $aeopAeProductProperty
  * @return $this
  */
 public function addAeopAeProductProperty(aeopAeProductProperty $aeopAeProductProperty)
 {
     if (!$this->aeopAeProductPropertys instanceof aeopAeProductPropertyList) {
         $this->aeopAeProductPropertys = new aeopAeProductPropertyList();
     }
     $this->aeopAeProductPropertys->add($aeopAeProductProperty);
     return $this;
 }