/**
  * Saves service attributes.
  *
  * @return null
  */
 public function save()
 {
     $soxId = $this->getEditObjectId();
     $aParams = oxConfig::getParameter("editval");
     $oShop = oxNew("oxshop");
     $oShop->load($soxId);
     //$aParams = $oShop->ConvertNameArray2Idx( $aParams);
     $oShop->assign($aParams);
     $oShop->save();
     parent::Save();
 }