public void Page_Load(Object sender, EventArgs e)
        {
            EstadoDal estadoDal = new EstadoDal();

            gridListaEstado.DataSource = estadoDal.Listar();
            gridListaEstado.DataBind();
        }
        public void bindEstados()
        {
            EstadoDal     estadoDal   = new EstadoDal();
            List <Estado> listaEstado = new List <Estado>();
            Estado        e           = new Estado();

            listaEstado = estadoDal.Listar();
            foreach (var estado in listaEstado)
            {
                idEstado.Items.Insert(0, new ListItem(estado.Nome, estado.Id.ToString()));
            }
        }