示例#1
0
        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);
            }
        }
示例#2
0
        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("");
            }
        }