Ejemplo n.º 1
0
        public int create(SalaDTO salaDTO)
        {
            int     retorno = 0;
            SalaDAO salaDAO = new SalaDAO();

            retorno = salaDAO.create(salaDTO);

            return(retorno);
        }