public static DetalleEquivalente Instance() { if (aForm == null) { aForm = new DetalleEquivalente(); } return(aForm); }
public static DetalleEquivalente Instance() { if (aForm == null) { aForm = new DetalleEquivalente(); } return aForm; }
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); } }