/**
  * Update a list of Ordenstyp entities
  */
 public function updateListAction()
 {
     if ($this->request->hasArgument('data')) {
         $ordenstyplist = $this->request->getArgument('data');
     }
     if (empty($ordenstyplist)) {
         $this->throwStatus(400, 'Required data arguemnts not provided', null);
     }
     foreach ($ordenstyplist as $uuid => $ordenstyp) {
         $ordenstypObj = $this->ordenstypRepository->findByIdentifier($uuid);
         $ordenstypObj->setOrdenstyp($ordenstyp['ordenstyp']);
         $this->ordenstypRepository->update($ordenstypObj);
     }
     $this->persistenceManager->persistAll();
     $this->throwStatus(200, null, null);
 }