Example #1
0
 public function setAssortiment(array $data = NULL)
 {
     $this->_mapper->removeAssortiment($this);
     if (is_array($data)) {
         foreach ($data as $k) {
             $this->_mapper->setAssortiment($this, $k);
         }
     }
     return $this;
 }