private void btnExcluir_Click(object sender, EventArgs e) { int codigo = Convert.ToInt32(txtCodigo.Text); ProdutoDAL produtoDALL = new ProdutoDAL(); produtoDALL.ExcluirProduto(codigo); CarregarProdutos(); }
protected void btn_excluir_Click(object sender, EventArgs e) { int codigo = Convert.ToInt32(txt_Codigo.Text); ProdutoDAL pDal = new ProdutoDAL(); pDal.ExcluirProduto(codigo); lbl_msg.Text = "Produto excluido com sucesso!"; }
public void ExcluirProduto(int idProduto) { try { var dalProduto = new ProdutoDAL(); dalProduto.ExcluirProduto(idProduto); } catch (Exception) { throw new Exception("Impossível apagar este produto, pois o mesmo está" + " sendo vinculado a um cliente!"); } }
protected void btnExcluir_Click(object sender, EventArgs e) { if (!Validacoes()) { Session.Add("danger", "Preencha os campos obrigatórios! "); } ProdutoDAL dbProduto = new ProdutoDAL(); Produto objProduto = new Produto(); if (!dbProduto.ExcluirProduto(Convert.ToInt32(txtCodigo.Text), ref erro)) { Session.Add("danger", "Não foi possível deletar o Produto! " + erro); } else { Session.Add("success", "Produto deletado com Sucesso! "); } }
/// <summary> /// Exclui um produto /// </summary> /// <param name="codProd"> código do produto</param> public bool ExcluirProduto(int codProd) { ProdutoDAL dal = new ProdutoDAL(); return(dal.ExcluirProduto(codProd)); }
public void ExcluirProduto(int codigopedido) { produtoDAL.ExcluirProduto(codigopedido); }
public void DeletarProduto(int id) { produtoDAL.ExcluirProduto(id); }