/**
  * 
  * @param Integer $id
  * @return array<OficinaDTO>
  */
 public function verOficinasPorSucursal($id)
 {
     try {
         $this->oDao = new OficinaDAO();
         $this->lista = $this->oDao->verOficinasPorSucursal($id);
         return $this->lista;
     } catch (Exception $ex) {
         return $ex->getMessage();
     }
 }