private void button2_Click(object sender, EventArgs e) { var index = Convert.ToInt32(listEstoque.CurrentRow.Cells[0].Value); ProdutosDao.deletar($" id = '{index}'"); /**/ listEstoque.Rows.Clear(); /* * Inserir Total das vendas com faturamento total * e quantidade de vendas, produtos mais vendidos e lucro */ var estoques = ProdutosDao.retornarTudo(); foreach (var estoque in estoques) { listEstoque.Rows.Add(estoque.descr, estoque.nome, estoque.marca, estoque.Valunit, estoque.Qntde); } }