Example #1
0
        public bool serverValidate1(String NombreReporte)
        {
            String validacion;

            validacion = NombreReporte;
            DB_ReasosnsPQR datos = new DB_ReasosnsPQR();
            //DDAOadministrador datos = new DDAOadministrador();
            DataTable resul = datos.verficarReporte(validacion);

            if (resul.Rows.Count > 0)
            {
                return(false);
            }
            else
            {
                return(true);
            }
        }