protected void GridView1_PageIndexChanging(object sender, GridViewPageEventArgs e) { GamingHouse.Camadas.BLL.Venda bllVenda = new GamingHouse.Camadas.BLL.Venda(); GridView1.DataSource = bllVenda.Select(); GridView1.PageIndex = e.NewPageIndex; GridView1.DataBind(); }
protected void ImageButton1_Click(object sender, ImageClickEventArgs e) { GamingHouse.Camadas.BLL.Venda bllVenda = new GamingHouse.Camadas.BLL.Venda(); GamingHouse.Camadas.Model.Venda venda = new GamingHouse.Camadas.Model.Venda(); if (lblItem.Text != "" && lblIdCli.Text != "") { venda.cliente_id = Convert.ToInt32(lblIdCli.Text); venda.produto_id = Convert.ToInt32(lblIdProd.Text); venda.quantidade = Convert.ToInt32(txtQuant.Text); venda.valor = float.Parse(lblValor.Text); bllVenda.Insert(venda); lblMsg.Text = "Compra Realizada com Sucesso."; } else { lblMsg.Text = "Todos os campos devem ser Preenchidos."; } }
protected void btSignup_Click(object sender, EventArgs e) { GamingHouse.Camadas.BLL.Venda bllVenda = new GamingHouse.Camadas.BLL.Venda(); GamingHouse.Camadas.Model.Venda venda = new GamingHouse.Camadas.Model.Venda(); if (tbCliente_id.Text != "" && tbProduto_id.Text != "" && tbQuant.Text != "" && tbValor.Text != "") { venda.cliente_id = Convert.ToInt32(tbCliente_id.Text); venda.produto_id = Convert.ToInt32(tbProduto_id.Text); venda.quantidade = Convert.ToInt32(tbProduto_id.Text); venda.valor = float.Parse(tbValor.Text); bllVenda.Insert(venda); lblMsg.Text = "Registrado com Sucesso."; } else { lblMsg.Text = "Todos os campos devem ser Preenchidos."; } }