public function cadastroContinuacao()
 {
     try {
         $this->layout = 'null';
         $modelSalao = new Salao();
         $salao = $modelSalao->find('all', array('empresas_id' => $this->empresas_id, 'status' => true));
         $this->set('saloes', $salao);
         $this->render();
     } catch (Exception $ex) {
         echo $ex->getMessage();
     }
 }