private void btnMigrarAplicaciones_Click(object sender, EventArgs e) { if (oParte.ParteID < 0) return; Migrador detalle = new Migrador(oParte.ParteID); detalle.oTipoMigrador = Migrador.MigradorType.Aplicaciones; detalle.ShowDialog(); this.CargarAplicaciones(oParte.ParteID); }
private void btnMigrarEquivalentes_Click(object sender, EventArgs e) { if (oParte == null || oParte.ParteID < 0) return; Migrador detalle = new Migrador(oParte.ParteID); detalle.oTipoMigrador = Migrador.MigradorType.Equivalentes; detalle.ShowDialog(); this.CargarEquivalencias(oParte.ParteID); }