private void CarregaGrid(string termo)
        {
            EmprestimoBD bd = new EmprestimoBD();

            DataSet ds;

            if (termo != "")
            {
                ds = bd.Search(termo);
            }
            else
            {
                ds = bd.SelectVenda();
            }

            GridView1.DataSource = ds.Tables[0].DefaultView;
            GridView1.DataBind();

            int registros = ds.Tables[0].Rows.Count;

            if (registros == 0)
            {
                lblMensagem.Text = "Nenhuma informação encontrada";
            }
            else
            {
                lblMensagem.Text = "Foram encontrados: " + registros + " resultado(s)";
            }
        }
        private void Carrega3()
        {
            EmprestimoBD bd = new EmprestimoBD();
            DataSet      ds = bd.SelectTotal();

            GridView3.DataSource = ds.Tables[0].DefaultView;
            GridView3.DataBind();
        }
        private void Carrega()
        {
            //Carrega Cliente
            ClienteBD clientebd = new ClienteBD();
            DataSet   clienteds = clientebd.SelectAll();

            //vincula usuario ao dropdownlist
            dpdCliente.DataSource     = clienteds.Tables[0].DefaultView;
            dpdCliente.DataTextField  = "cli_cpf";
            dpdCliente.DataValueField = "cli_codigo";
            dpdCliente.DataBind();
            dpdCliente.Items.Insert(0, new ListItem("Selecione", ""));

            //Carrega Taxa
            TaxaBD  taxabd = new TaxaBD();
            DataSet taxads = taxabd.SelectAll();

            //Vincula taxas ao checkboxlist
            cblTaxa.DataSource     = taxads.Tables[0].DefaultView;
            cblTaxa.DataTextField  = "tax_taxaJuros";
            cblTaxa.DataValueField = "tax_codigo";
            cblTaxa.DataBind();


            //Carrega Usuario
            UsuarioBD usuariobd = new UsuarioBD();
            DataSet   usuariods = usuariobd.SelectAll();

            //vincula usuario ao dropdownlist
            dpdUsuario.DataSource     = usuariods.Tables[0].DefaultView;
            dpdUsuario.DataTextField  = "usu_nome";
            dpdUsuario.DataValueField = "usu_codigo";
            dpdUsuario.DataBind();
            dpdUsuario.Items.Insert(0, new ListItem("Selecione", ""));

            //Carrega Loja
            LojaBD  lojabd = new LojaBD();
            DataSet lojads = lojabd.SelectAll();

            //vincula loja ao dropdownlist
            dpdLoja.DataSource     = lojads.Tables[0].DefaultView;
            dpdLoja.DataTextField  = "loj_id";
            dpdLoja.DataValueField = "loj_codigo";
            dpdLoja.DataBind();
            dpdLoja.Items.Insert(0, new ListItem("Selecione", ""));

            //Carrega Venda
            EmprestimoBD emprestimobd = new EmprestimoBD();
            DataSet      emprestimods = emprestimobd.SelectAll();

            //vincula emprestimo ao dropdownlist
            dpdEmprestimo.DataSource     = emprestimods.Tables[0].DefaultView;
            dpdEmprestimo.DataTextField  = "emp_id";
            dpdEmprestimo.DataValueField = "emp_codigo";
            dpdEmprestimo.DataBind();
            dpdEmprestimo.Items.Insert(0, new ListItem("Selecione", ""));
        }
        protected void GridView1_RowCommand(object sender, GridViewCommandEventArgs e)
        {
            int codigo = 0;

            switch (e.CommandName)
            {
            case "Alterar":
                codigo        = Convert.ToInt32(e.CommandArgument);
                Session["ID"] = codigo;
                Response.Redirect("../Alterar/AlterarVenda.aspx");
                break;

            case "Deletar":
                codigo = Convert.ToInt32(e.CommandArgument);
                EmprestimoBD bd = new EmprestimoBD();
                bd.Delete(codigo);
                CarregaGrid("");
                break;

            default:
                break;
            }
        }
        protected void btnSalvar_Click(object sender, EventArgs e)
        {
            string ul         = "<ul>";
            int    cliente    = 0;
            int    loja       = 0;
            int    usuario    = 0;
            int    emprestimo = 0;

            if (String.IsNullOrEmpty(dpdCliente.SelectedValue))
            {
                ul += "<li>Escolha o cliente</li>";
            }
            else
            {
                cliente = Convert.ToInt32(dpdCliente.SelectedItem.Value);
            }

            if (String.IsNullOrEmpty(dpdLoja.SelectedValue))
            {
                ul += "<li>Escolha a loja</li>";
            }
            else
            {
                loja = Convert.ToInt32(dpdLoja.SelectedItem.Value);
            }

            if (String.IsNullOrEmpty(dpdUsuario.SelectedValue))
            {
                ul += "<li>Escolha o usuário</li>";
            }
            else
            {
                usuario = Convert.ToInt32(dpdUsuario.SelectedItem.Value);
            }

            if (String.IsNullOrEmpty(dpdEmprestimo.SelectedValue))
            {
                ul += "<li>Escolha o empréstimo</li>";
            }
            else
            {
                emprestimo = Convert.ToInt32(dpdEmprestimo.SelectedItem.Value);
            }



            ul += "</ul>";

            if (ul == "<ul></ul>")
            {
                EmprestimoBD bd = new EmprestimoBD();
                for (int i = 0; i < cblTaxa.Items.Count; i++)
                {
                    if (cblTaxa.Items[i].Selected)
                    {
                        bd.Vincular(Convert.ToInt32(cblTaxa.Items[i].Value), cliente, loja, usuario, emprestimo);
                    }
                }
                lblMensagem.Text = "Venda vinculada com sucesso";
            }
            else
            {
                lblMensagem.Text = ul;
            }
        }