public ParticipanteEnsinar()
 {
     //Inicialização dos Gestores
     this.GestorDeParticipanteEnsinar = new GestorDeParticipanteEnsinar();
     this.GestorDeParticipante        = new GestorDeParticipante();
     this.GestorDeItem            = new GestorDeItem();
     this.GestorDeStatusDeRelacao = new GestorDeStatusDeRelacao();
 }
Пример #2
0
 public ParticipanteHobbie()
 {
     //Inicialização dos this.Gestores
     this.GestorDeHobbieDeParticipante = new GestorDeHobbieDeParticipante();
     this.GestorDeParticipante         = new GestorDeParticipante();
     this.GestorDeItem            = new GestorDeItem();
     this.GestorDeStatusDeRelacao = new GestorDeStatusDeRelacao();
 }
Пример #3
0
 //Lista os status_relacaos do banco de dados na grid
 protected void List()
 {
     this.GestorDeStatusDeRelacao    = new GestorDeStatusDeRelacao();
     StoreStatusRelacaoId.DataSource = this.GestorDeStatusDeRelacao.ObterTodosOsStatusDeRelacao().OrderBy(l => l.nome);
     StoreStatusRelacaoId.DataBind();
 }
Пример #4
0
 public StatusRelacao()
 {
     //Inicialização dos Gestores
     this.GestorDeStatusDeRelacao = new GestorDeStatusDeRelacao();
 }