Ejemplo n.º 1
0
 public Controller()
 {
     _persistController             = new Persistence.Controller();
     CadeauRepository.Cadeaus       = _persistController.getCadeausFromDB();
     GebruikerRepository.Gebruikers = _persistController.getGebruikersFromDB();
     LijstRepository.Lijsten        = _persistController.getWishlistsFromDB();
     LHCRepository.LHCList          = _persistController.getLHCFromDB();
     _activeGebruiker = null;
     _activeLijst     = null;
     _currentLijst    = null;
     _currentLijstID  = null;
 }
Ejemplo n.º 2
0
        public Controller(string connectionstring)
        {
            _persistController = new Persistence.Controller(connectionstring);
            _studentRepository = new StudentRepository();
            _studentStudierichtingRepository = new StudentStudierichtingRepository();
            _studiejaarRepository            = new StudiejaarRepository();
            _studierichtingRepository        = new StudierichtingRepository();
            _vakRepository           = new VakRepository();
            _vakStudentRepository    = new VakStudentRepository();
            _vakStudiejaarRepository = new VakStudiejaarRepository();
            _ingelogdeStudent        = null;

            _studentRepository.StudentLijst = _persistController.getStudent();
            _studentStudierichtingRepository.StudentStudierichtingLijst = _persistController.getStudentStudierichting();
            _studiejaarRepository.StudiejaarLijst         = _persistController.getStudiejaar();
            _studierichtingRepository.StudierichtingLijst = _persistController.getStudierichting();
            _vakRepository.VakLijst = _persistController.getVak();
            _vakStudentRepository.VakStudentLijst       = _persistController.getVakStudent();
            _vakStudiejaarRepository.VakStudiejaarLijst = _persistController.getVakStudiejaar();
        }
 public Controller(string connstring)
 {
     _controller = new Persistence.Controller(connstring);
 }
 //constructor
 public Controller()
 {
     _controller = new Persistence.Controller();
 }