Example #1
0
 //constructor. voert automatisch uit na aanroep met "new ZorgApp()".
 public ZorgApp()
 {
     profileList   = new ProfileList();
     medicijnLijst = new MedicijnLijst();
     StartTimer();
     DisplayMenu();
 }
Example #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();
 }