Exemplo n.º 1
0
 //constructor. voert automatisch uit na aanroep met "new ZorgApp()".
 public ZorgApp()
 {
     profileList   = new ProfileList();
     medicijnLijst = new MedicijnLijst();
     StartTimer();
     DisplayMenu();
 }
Exemplo n.º 2
0
 //constructor. voert automatisch uit na aanroep met "new ZorgApp()".
 public ZorgApp()
 {
     profileList   = new ProfileList();
     medicijnLijst = new MedicijnLijst();
     timer         = new Timer(new TimerCallback(Alarm));
     timer.Change(1000, 0);
     DisplayMenu();
 }