示例#1
0
 public Usuario()
 {
     //Inicialização dos Gestores
     this.GestorDeUsuario = new GestorDeUsuario();
     this.GestorDeAcesso  = new GestorDeAcesso();
     this.GestorDeStatus  = new GestorDeStatus();
 }
示例#2
0
 public ParticipanteHobbie()
 {
     //Inicialização dos this.Gestores
     this.GestorDeHobbieDeParticipante = new GestorDeHobbieDeParticipante();
     this.GestorDeParticipante         = new GestorDeParticipante();
     this.GestorDeItem   = new GestorDeItem();
     this.GestorDeStatus = new GestorDeStatus();
 }
示例#3
0
 public ParticipanteAprender()
 {
     //Inicialização dos Gestores
     this.GestorDeParticipanteAprender = new GestorDeParticipanteAprender();
     this.GestorDeParticipante         = new GestorDeParticipante();
     this.GestorDeItem   = new GestorDeItem();
     this.GestorDeStatus = new GestorDeStatus();
 }
示例#4
0
 //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();
 }
示例#5
0
 public Status()
 {
     //Inicialização dos Gestores
     this.GestorDeStatus = new GestorDeStatus();
 }