private void txtBuscarProduto_Click(object sender, EventArgs e) { if (txtProduto.Text != "") { ProdutoS produtoSimples = new ProdutoS(); produtoSimples.id = Convert.ToInt32(txtProduto.Text); if (produtoSimples.BuscarProduto() == true) { txtProduto.Text = produtoSimples.id.ToString(); txtNomeProduto.Text = produtoSimples.nome; txtProdutoPrecoCusto.Text = produtoSimples.precoc; txtProdutoPrecoVenda.Text = produtoSimples.precov; txtQuantidade.Enabled = true; btnAdicionar.Enabled = true; btnRemover.Enabled = true; } else { MessageBox.Show("Nenhum produto encontrado"); } } else { MessageBox.Show("Digite um id de Produto válido!"); } }
private void btBuscaPS_Click(object sender, EventArgs e) { if (txtBuscaId.Text != "") { ProdutoS produtoSimples = new ProdutoS(); produtoSimples.id = Convert.ToInt32(txtBuscaId.Text); if (produtoSimples.BuscarProduto() == true) { txtId.Text = produtoSimples.id.ToString(); txtNome.Text = produtoSimples.nome; txtPrecoC.Text = produtoSimples.precoc; txtPrecoV.Text = produtoSimples.precov; txtNome.Enabled = true; txtPrecoC.Enabled = true; txtPrecoV.Enabled = true; btnSalvar.Enabled = true; btnExcluir.Enabled = true; } else { MessageBox.Show("Nenhum produto encontrado"); } } else { MessageBox.Show("Digite um id válido!"); } }
private void button1_Click(object sender, EventArgs e) { ProdutoS produtoS = new ProdutoS(); //produtoS.id = Convert.ToInt32(txtId.Text); produtoS.nome = txtNome.Text; produtoS.precoc = txtPrecoC.Text.Replace(",", "."); produtoS.precov = txtPrecoV.Text.Replace(",", "."); if (produtoS.validaCampos() == true) { produtoS.salvar(txtId.Text); this.limpaCampos(); } }
private void btnExcluir_Click(object sender, EventArgs e) { if (MessageBox.Show("Deseja realmente excluir este produto?\nEssa operação não poderá ser desfeita!", "Cuidado", MessageBoxButtons.YesNo, MessageBoxIcon.Question, MessageBoxDefaultButton.Button2) == DialogResult.Yes) { ProdutoS produtoS = new ProdutoS(); produtoS.excluir(txtId.Text); this.limpaCampos(); btnSalvar.Enabled = false; txtId.Enabled = false; txtNome.Enabled = false; txtPrecoC.Enabled = false; txtPrecoV.Enabled = false; } }