예제 #1
0
 public static DetalleCodigoAlterno Instance()
 {
     if (aForm == null)
     {
         aForm = new DetalleCodigoAlterno();
     }
     return aForm;
 }
예제 #2
0
 public static DetalleCodigoAlterno Instance()
 {
     if (aForm == null)
     {
         aForm = new DetalleCodigoAlterno();
     }
     return(aForm);
 }
예제 #3
0
 private void btnAgregarCodigoAlterno_Click(object sender, EventArgs e)
 {
     if (oParte.ParteID < 0)
         return;
     if (UtilLocal.ValidarPermiso("Administracion.CatalogosPartes.CodigosAlternos.Agregar", true))
     {
         DetalleCodigoAlterno detalle = new DetalleCodigoAlterno(oParte.ParteID);
         detalle.ShowDialog();
         this.CargarCodigosAlternos(oParte.ParteID);
     }
 }