示例#1
0
文件: mEstacion.cs 项目: EAOH/Taller
        private void button2_Click(object sender, EventArgs e)
        {
            //agregar
            Gestion.gEstacion gEstacion = new Gestion.gEstacion();
            gEstacion.ShowDialog();

            refrescar();
        }
示例#2
0
文件: mEstacion.cs 项目: EAOH/Taller
        private void button3_Click(object sender, EventArgs e)
        {
            //editar
            int?id = getid();

            if (id != null)
            {
                Gestion.gEstacion gEstacion = new Gestion.gEstacion(id);
                gEstacion.ShowDialog();

                refrescar();
            }
        }