Beispiel #1
0
 public function guardar($formData)
 {
     $area = new Areas();
     $area->exchangeArray($formData);
     $areasDAO = new AreasDAO($this->tableGateway);
     try {
         $area = $areasDAO->guardar($area);
     } catch (\Exception $e) {
         $area = 0;
     }
     unset($areasDAO);
     return $area;
 }