예제 #1
0
 public Nac()
 {
     //Inicialização dos Gestores
     this.GestorDeUsuario = new GestorDeUsuario();
     this.GestorDeNac     = new GestorDeNac();
     this.GestorDeCampus  = new GestorDeCampus();
 }
예제 #2
0
 //Lista os campuss do banco de dados na grid
 protected void List()
 {
     this.GestorDeCampus      = new GestorDeCampus();
     StoreCampusId.DataSource = this.GestorDeCampus.ObterTodosOsCampus().OrderBy(l => l.local);
     StoreCampusId.DataBind();
 }
예제 #3
0
 public CampusController()
 {
     this.GestorDeCampus = new GestorDeCampus();
 }
예제 #4
0
 public Campus()
 {
     //Inicialização dos Gestores
     this.GestorDeCampus = new GestorDeCampus();
 }