Пример #1
0
        private void Buscar_Click(object sender, EventArgs e)
        {
            var tipo = TiposBLL.Buscar((int)tipoIdNumericUpDown.Value);

            if (tipo != null)
            {
                descripcionTextBox.Text = tipo.Descripcion;
                cantidadTextBox.Text    = tipo.Cantidad.ToString();
            }
        }
Пример #2
0
        private void Buscarbutton_Click(object sender, EventArgs e)
        {
            errorProvider.Clear();
            Tipos Telefono = new Tipos();

            int.TryParse(IDnumericUpDown.Text, out int id);

            Telefono = TiposBLL.Buscar(id);

            if (Telefono != null)
            {
                MessageBox.Show("Tipo no Encotrado");
                LlenaCampo(Telefono);
            }
            else
            {
                MessageBox.Show("Tipo no Encotrado");
            }
        }