protected void Page_Load(object sender, EventArgs e)
        {
            if (!X.IsAjaxRequest)
            {
                StoreParticipanteAprenderId.DataSource = this.GestorDeParticipanteAprender.ObterTodosOsRegistros();
                StoreParticipanteAprenderId.DataBind();

                StoreParticipanteId.DataSource = this.GestorDeParticipante.ObterTodosOsParticipantes().OrderBy(l => l.nome);
                StoreParticipanteId.DataBind();

                StoreItemId.DataSource = this.GestorDeItem.ObterTodosOsItems().OrderBy(l => l.nome);
                StoreItemId.DataBind();

                StoreStatusRelacaoId.DataSource = this.GestorDeStatusDeRelacao.ObterTodosOsStatusDeRelacao();
                StoreStatusRelacaoId.DataBind();
            }
        }
 //Lista os aprenders de participantes do banco de dados na grid
 protected void List()
 {
     GestorDeParticipanteAprender           = new GestorDeParticipanteAprender();
     StoreParticipanteAprenderId.DataSource = this.GestorDeParticipanteAprender.ObterTodosOsRegistros();
     StoreParticipanteAprenderId.DataBind();
 }
 //Lista os aprenders de participantes do banco de dados na grid
 protected void List(object sender, DirectEventArgs e)
 {
     StoreParticipanteAprenderId.DataSource = this.GestorDeParticipanteAprender.ObterTodosOsRegistros();
     StoreParticipanteAprenderId.DataBind();
 }