public BLL.Motores ObtenerMotor() { BLL.Motores motor = new BLL.Motores(); if ((MotoresDataGridView.SelectedRows.Count > 1)) { motor.Buscar(Convert.ToInt32(MotoresDataGridView.SelectedRows[0].Cells["IdMotor"].Value)); return(motor); } else { return(motor); } }
private void MotorComboBox_SelectionChangeCommitted(object sender, EventArgs e) { BLL.Motores motor = new BLL.Motores(); BLL.Colores color = new BLL.Colores(); motor.Buscar(Convert.ToInt32(MotorComboBox.SelectedValue)); color.Buscar(motor.IdColor); ColorTextBox.Clear(); ColorTextBox.AppendText(color.Color); NumeroTextBox.Clear(); NumeroTextBox.AppendText(motor.NumeroChasis); PrecioTextBox.Clear(); PrecioTextBox.AppendText(motor.Precio.ToString()); }
private void BuscarButtom_Click(object sender, EventArgs e) { ErrorProvider error = new ErrorProvider(); if (!string.IsNullOrWhiteSpace(IdtextBox.Text) && Convert.ToInt32(IdtextBox.Text) > 0) { BLL.Financiamientos fin = new BLL.Financiamientos(); if (fin.Buscar(Convert.ToInt32(IdtextBox.Text))) { IdtextBox.Enabled = false; int id = Convert.ToInt32(IdtextBox.Text); Util.Limpiar(this); InteresTextBox.AppendText("3"); Modificar = true; IdModificar = id; IdtextBox.AppendText(id.ToString()); ClienteComboBox.SelectedValue = fin.IdPersona; GaranteComboBox.SelectedValue = fin.IdGarante; MotorComboBox.SelectedValue = fin.IdMotor; InicialTextBox.AppendText(fin.Inicial.ToString()); QuotasComboBox.SelectedItem = fin.IntervaloPago.ToString(); } } else { Modificar = true; Util.Limpiar(this); InteresTextBox.AppendText("3"); Consultas.cFinanciamientos consulta = new Consultas.cFinanciamientos(); consulta.ShowDialog(this); BLL.Financiamientos fin = consulta.ObtenerFinanciamiento(); if (fin.IdFinanciamiento > 0) { IdtextBox.Enabled = false; IdModificar = fin.IdPersona; IdtextBox.AppendText(fin.IdFinanciamiento.ToString()); ClienteComboBox.SelectedValue = fin.IdPersona; GaranteComboBox.SelectedValue = fin.IdGarante; MotorComboBox.SelectedValue = fin.IdMotor; InicialTextBox.AppendText(fin.Inicial.ToString()); QuotasComboBox.SelectedItem = fin.IntervaloPago.ToString(); } } BLL.Motores motor = new BLL.Motores(); BLL.Colores color = new BLL.Colores(); motor.Buscar(Convert.ToInt32(MotorComboBox.SelectedValue)); color.Buscar(motor.IdColor); ColorTextBox.Clear(); ColorTextBox.AppendText(color.Color); NumeroTextBox.Clear(); NumeroTextBox.AppendText(motor.NumeroChasis); PrecioTextBox.Clear(); PrecioTextBox.AppendText(motor.Precio.ToString()); BLL.Personas persona = new BLL.Personas(); persona.Buscar(Convert.ToInt32(ClienteComboBox.SelectedValue)); ClienteTextBox.Clear(); ClienteTextBox.AppendText(persona.Ingreso.ToString()); persona.Buscar(Convert.ToInt32(GaranteComboBox.SelectedValue)); GaranteTextBox.Clear(); GaranteTextBox.AppendText(persona.Ingreso.ToString()); }