private void endereçoToolStripMenuItem_Click(object sender, EventArgs e)
 {
     EnderecoCliente en = new EnderecoCliente();
     en.IntegraEnderecoCliente();
 }
        public void PostEnderecoCliente(EnderecoCliente enderecoCliente)
        {
            var param = Newtonsoft.Json.JsonConvert.SerializeObject(enderecoCliente);
            var httpClient = new HttpClient();
            HttpContent contentPost = new StringContent(param, Encoding.UTF8, "application/json");

            var response = httpClient.PostAsync("https://chevron.exata.it/api/EnderecoCliente", contentPost);
            //MessageBox.Show(param.ToString() + "response: " + response.Result.ToString(), "Advetisament", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
            if (response.Result.StatusCode.ToString() != "Accepted")
            {
                logErro.EscreverLog(layout, response.Result.ToString());
            }
        }
        private void Timer_Tick(object sender, EventArgs e)
        {
            //MessageBox.Show("Começou!!!");
            interval--;
            label1.Text = interval.ToString();
            if(interval==0){

                Timer.Stop();

                CarteiraCliente carteiraCliente = new CarteiraCliente();
                Cliente cliente = new Cliente();
                EnderecoCliente enderecoCliente = new EnderecoCliente();
                Estoque estoque = new Estoque();
                Faturamento faturamento = new Faturamento();
                ForcaDeVenda forcaDeVenda = new ForcaDeVenda();
                FormaDePagamento formaDePagamento = new FormaDePagamento();
                Pedido pedido = new Pedido();
                Produto produto = new Produto();
                TabelaPreco tabelaPreco = new TabelaPreco();

                carteiraCliente.IntegraCarteiraCliente();
                cliente.IntegraCliente();
                enderecoCliente.IntegraEnderecoCliente();
                estoque.IntegraEstoque();
                faturamento.IntegraFaturamento();
                forcaDeVenda.IntegraForcaDeVenda();
                formaDePagamento.IntegraFormaDePagamento();
                pedido.IntegraPedido();
                produto.IntegraProduto();
                tabelaPreco.IntegraTabelaPreço();

                Timer.Enabled = true;
                //interval = 10;
                interval = int.Parse(System.Configuration.ConfigurationManager.AppSettings["Interval"]);
                //interval = ChevronClienteApplication.
                Timer.Start();
            }
        }
        public void IntegraEnderecoCliente()
        {
            ProcessForm processForm = new ProcessForm("0", layout);
            processForm.Show();
            List<EnderecoCliente> lEnderecoCliente = new List<EnderecoCliente>();
            IEnumerable<String> streamRead = File.ReadLines(System.Environment.CurrentDirectory.ToString() + "\\config.txt");
            var connection = streamRead.First();

            using (OleDbConnection con = new OleDbConnection(connection))
            {
                try
                {
                    con.Open();
                    using (OleDbCommand commandCount = new OleDbCommand("SELECT COUNT(*) FROM ENDERECO_CLIENTES ", con))
                    using (OleDbDataReader readerCount = commandCount.ExecuteReader())
                    {
                        while (readerCount.Read())
                        {

                            countRegister = readerCount.GetValue(0).ToString();

                        }
                    }
                    try{

                    using (OleDbCommand command = new OleDbCommand("SELECT ID_END_CLIENTE,ID_DISTRIBUIDOR,ID_CLIENTE,COD_MUNICIPIO_IBGE_CLIENTE,RUA_END_CLIENTE,NUMERO_END_CLIENTE,COMPLEMENTO_END_CLIENTE,CEP_END_CLIENTE,BAIRRO_END_CLIENTE,MUNICIPIO_END_CLIENTE,UF_END_CLIENTE,TEL_END_CLIENTE,EMAIL_END_CLIENTE FROM ENDERECO_CLIENTES", con))
                    using (OleDbDataReader reader = command.ExecuteReader())
                    {
                        while (reader.Read())
                        {
                            EnderecoCliente enderecoCliente = new EnderecoCliente();

                            enderecoCliente.id = reader.GetString(0);
                            enderecoCliente.distribuidorId = reader.GetString(1);
                            enderecoCliente.clienteId = reader.GetString(2);
                            enderecoCliente.codigoMunicipioIBGE = reader.GetString(3);
                            enderecoCliente.cep = reader.GetString(4);
                            enderecoCliente.bairro = reader.GetString(5);
                            enderecoCliente.municipio = reader.GetString(6);
                            enderecoCliente.uf = reader.GetString(7);
                            enderecoCliente.telefone = reader.GetString(8);
                            enderecoCliente.email = reader.GetString(9);

                            PostEnderecoCliente(enderecoCliente);

                            string msg = "Foram inseridos: " + lEnderecoCliente.Count().ToString() + " de " + countRegister + " registros";
                            processForm.writeMessage(msg);
                            processForm.Enabled = false;
                            processForm.Enabled = true;

                            lEnderecoCliente.Add(enderecoCliente);
                        }
                    }

                        con.Dispose();
                    }

                    catch (Exception ex)
                    {
                        logErro.EscreverLog(layout, ex.Message.ToString());
                        //MessageBox.Show(ex.Message.ToString(), "Advetisament", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                    }

                }
                catch (Exception ex)
                {
                    logErro.EscreverLog(layout, ex.Message.ToString());
                    //MessageBox.Show(ex.Message.ToString(), "Advetisament", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                }
                }

                int countWrite = lEnderecoCliente.Count();
                //MessageBox.Show("Foram inseridos "+countWrite.ToString()+" registros", "Advetisament", MessageBoxButtons.OK, MessageBoxIcon.Exclamation);
                processForm.Close();
        }