private void Eliminarbutton_Click_1(object sender, EventArgs e)
        {
            int id;

            repositorio = new RepositorioBase <Cuentas>(new Contexto());
            ///Cuentas cuenta;
            //   bool paso = false;
            //cuenta = LlenaClase();
            int.TryParse(CuentaIdnumericUpDown.Text, out id);


            // int id = Convert.ToInt32(CuentaIdnumericUpDown.Value);

            // if (BLL.CuentaBLL.Eliminar(id))
            if (!ExisteEnLaBaseDeDatos())
            {
                MyErrorProvider.SetError(CuentaIdnumericUpDown, " esta Cuenta no Existe");
                CuentaIdnumericUpDown.Focus();
                return;
            }
            if (BLL.CuentaBLL.Eliminar(id))
            {
                MessageBox.Show("Eliminado!!", "Exito", MessageBoxButtons.OK, MessageBoxIcon.Information);
                Limpiar();
            }
            else
            {
                MessageBox.Show("No se pudo eliminar!!", "Fallo", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
Beispiel #2
0
        private void Eliminarbutton_Click_1(object sender, EventArgs e)
        {
            int id;

            repositorio = new RepositorioBase <Cuentas>();
            int.TryParse(CuentaIdnumericUpDown.Text, out id);
            if (!ExiteEnLaDb())
            {
                errorProvider1.SetError(CuentaIdnumericUpDown, "No Exite!!");
                CuentaIdnumericUpDown.Focus();
                return;
            }
            if (repositorio.Eliminar(id))
            {
                MessageBox.Show("Eliminado");
                Limpiar();
            }
            else
            {
                MessageBox.Show("No se Elimino");
            }
        }