protected void Page_Load(object sender, EventArgs e) { if (!X.IsAjaxRequest) { StoreStatusId.DataSource = this.GestorDeStatus.ObterTodosOsStatus().OrderBy(l => l.nome); StoreStatusId.DataBind(); } }
protected void Page_Load(object sender, EventArgs e) { if (!X.IsAjaxRequest) { StoreParticipanteHobbieId.DataSource = this.GestorDeHobbieDeParticipante.ObterTodosOsRegistros(); StoreParticipanteHobbieId.DataBind(); StoreParticipanteId.DataSource = this.GestorDeParticipante.ObterTodosOsParticipantes().OrderBy(l => l.nome); StoreParticipanteId.DataBind(); StoreItemId.DataSource = this.GestorDeItem.ObterTodosOsItems().OrderBy(l => l.nome); StoreItemId.DataBind(); StoreStatusId.DataSource = this.GestorDeStatus.ObterTodosOsStatus(); StoreStatusId.DataBind(); } }
//Lista os status_relacaos do banco de dados na grid protected void List() { this.GestorDeStatus = new GestorDeStatus(); StoreStatusId.DataSource = this.GestorDeStatus.ObterTodosOsStatus().OrderBy(l => l.nome); StoreStatusId.DataBind(); }
//Lista os status_relacaos do banco de dados na grid protected void List(object sender, DirectEventArgs e) { StoreStatusId.DataSource = this.GestorDeStatus.ObterTodosOsStatus().OrderBy(l => l.nome); StoreStatusId.DataBind(); }