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