Exemple #1
0
        private void btnFIAS_Click(object sender, EventArgs e)
        {
            //имеет жесткую зависимость! Будь осторожен!
            UpdateOracle update_adress = new UpdateOracle();

            update_adress.UpdateAdress();
        }
Exemple #2
0
        private void btnImportPY_Click(object sender, EventArgs e)
        {
            openFileDialog1.Filter = "Excel files (*.xlsx)|*.xlsx";
            if (openFileDialog1.ShowDialog() == DialogResult.Cancel)
            {
                return;
            }
            UpdateOracle update = new UpdateOracle();

            clear.GisPY();
            importGis.ImportPY(openFileDialog1.FileName);
        }