예제 #1
0
 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);
 }
예제 #2
0
 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);
 }