Ejemplo n.º 1
0
        public void EnviaInfoEmpresa(int Terminal, string IP, int Porta)
        {
            string Identificador;
            string Nome;
            ulong  Cei;
            string Endereco;
            byte   IdentificadorTipo;

            DB db = new DB();

            db.LerEmpresa(Terminal, out IdentificadorTipo, out Identificador, out Nome, out Cei, out Endereco);

            Rede rede = new Rede(this.objIDSysR30, IP, Porta, edLog);

            rede.IdData_EnviaEmpresa(IdentificadorTipo, Identificador, Nome, Cei, Endereco);
        }