Exemplo n.º 1
0
        private void CarregarGrid()
        {
            Regras.Regras get = new Regras.Regras();
            List <Regras.Dto.DtoAcesso> lista = get.GetAllLogin();

            GridViewLogin.DataSource = lista;
            GridViewLogin.DataBind();
        }
Exemplo n.º 2
0
        public void ConsultarClick(object sender, EventArgs e)
        {
            Regras.Regras get = new Regras.Regras();
            List <Regras.Dto.DtoAcesso> lista = get.GetLoginPorNome(TextConsulta.Text);

            GridViewLogin.DataSource = lista;
            GridViewLogin.DataBind();
        }