private void btnSalvar_Click(object sender, EventArgs e) { var cat = new CategoriaPagamento(); var BLLCat = new BLLVenda(); if (txtDescricao.Text != "" && DALVenda.SelecionarCodTipoPagamento(txtDescricao.Text) == 0) { cat.nome = txtDescricao.Text; BLLCat.Salvar(cat); txtDescricao.Text = ""; cbCategoria.DataSource = BLLVenda.listarCategoriaPagamento(); cbCategoria.ValueMember = "id"; cbCategoria.DisplayMember = "descricao"; MessageBox.Show("Salvo com sucesso !"); } else { MessageBox.Show("Informe algum nome ! Lembre-se, não pode ser um que já existe !"); } }