public void salvar(venda dado) { try { dao.salvar(dado); } catch (Exception) { throw; } }
private void button1_Click(object sender, EventArgs e) { Vendas Venda = new Vendas(); Venda.id_cliente = Convert.ToInt32(txtIdcliente.Text); Venda.id_produto = Convert.ToInt32(txtIdproduto.Text); Venda.quantidade = Convert.ToInt32(txtQtde.Text); Venda.Vencimento = Convert.ToDateTime(txtVencimento.Text); Venda.formaPagamento = cmbFormaPagamento.Text; Venda.StatusVenda = cmbSatus.Text; Venda.Valor = Convert.ToDouble(txtValorfinal.Text); VendasDAO.salvar(Venda); MessageBox.Show("Venda efetuada com sucesso!", "Venda"); }