Ejemplo n.º 1
0
 public static DetalleEquivalente Instance()
 {
     if (aForm == null)
     {
         aForm = new DetalleEquivalente();
     }
     return(aForm);
 }
Ejemplo n.º 2
0
 public static DetalleEquivalente Instance()
 {
     if (aForm == null)
     {
         aForm = new DetalleEquivalente();
     }
     return aForm;
 }
Ejemplo n.º 3
0
 private void btnAgregarEquivalencia_Click(object sender, EventArgs e)
 {
     if (this.oParte == null || this.oParte.ParteID < 0)
         return;
     if (UtilLocal.ValidarPermiso("Administracion.CatalogosPartes.Equivalentes.Agregar", true))
     {
         DetalleEquivalente detalle = new DetalleEquivalente(oParte.ParteID);
         detalle.ShowDialog();
         this.CargarEquivalencias(oParte.ParteID);
     }
 }