private void ContribucionTextBox_TextChanged(object sender, EventArgs e) { Colectas colecta; double contribucion; if (IdNumericUpDown.Value == 0) { colecta = ColectasBLL.Buscar(Convert.ToInt32(MetaComboBox.SelectedValue)); contribucion = 0; } else { var aporte = AportesBLL.Buscar((int)IdNumericUpDown.Value); colecta = ColectasBLL.Buscar(aporte.ColectaId); contribucion = 0; } if (!string.IsNullOrWhiteSpace(ContribucionTextBox.Text)) { contribucion = Convert.ToDouble(ContribucionTextBox.Text); } if (colecta != null) { RestaTextBox.Text = (colecta.Meta - contribucion).ToString(); } }
private void ElimarButton_Click(object sender, EventArgs e) { int id; int.TryParse(IdNumericUpDown.Text, out id); Limpiar(); if (AportesBLL.Buscar(id) != null) { if (AportesBLL.Eliminar(id)) { MessageBox.Show("Eliminado!", "Exito", MessageBoxButtons.OK, MessageBoxIcon.Information); } } else { MessageBox.Show("No se puede eliminar la colecta que no existe", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void BuscarButton_Click(object sender, EventArgs e) { Aportes aportes = new Aportes(); int id; int.TryParse(IdNumericUpDown.Text, out id); Limpiar(); aportes = AportesBLL.Buscar(id); if (aportes != null) { LLenaCampo(aportes); MetaComboBox.SelectedItem = aportes.ColectaId; } else { MessageBox.Show("Aportes no encontrado", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private bool ExisteEnLaBaseDeDatos() { Aportes aportes = AportesBLL.Buscar((int)IdNumericUpDown.Value); return(aportes != null); }