예제 #1
0
        public bool InsertarDatos(string id, string nombre, string apellido1, string apellido2, string dpi, string tel)
        {
            bool resultado;

            try
            {
                DATOS.INSERTAR_DATOS_USUARIO(id, nombre, apellido1, apellido2, dpi, tel);
                resultado = true;
            }
            catch
            { resultado = false; }
            return(resultado);
        }