private void GenerarCodigoDelLaboratorio() { try { LaboratorioEN oRegistroEN = new LaboratorioEN(); LaboratorioLN oRegistroLN = new LaboratorioLN(); if (oRegistroLN.GenerarCodigoDelLaboratorio(oRegistroEN, Program.oDatosDeConexion)) { txtCodigo.Text = oRegistroEN.Codigo; } } catch (Exception ex) { MessageBox.Show(ex.Message, "Generar codigo Automatico", MessageBoxButtons.OK, MessageBoxIcon.Warning); } }
private string GenerarCodigoDelLaboratorio() { try { string Codigo = ""; LaboratorioEN oRegistroEN = new LaboratorioEN(); LaboratorioLN oRegistroLN = new LaboratorioLN(); if (oRegistroLN.GenerarCodigoDelLaboratorio(oRegistroEN, Program.oDatosDeConexion)) { Codigo = oRegistroEN.Codigo; } return(Codigo); } catch (Exception ex) { MessageBox.Show(ex.Message, "Generar codigo Automatico", MessageBoxButtons.OK, MessageBoxIcon.Warning); return(""); } }