public static Gestion_Rutas_Reporte Get_instancia() { if (Instancias == null) { Instancias = new Gestion_Rutas_Reporte(); } return(Instancias); }
private void btn_Guardar_Click(object sender, EventArgs e) { Gestion_Rutas_Reporte frm = Gestion_Rutas_Reporte.Get_instancia(); frm._estado_ = _est_; frm._zona_ = _zon_; frm._texto_ = txt_Busqueda.Text; frm.ShowDialog(); }