/// <summary>
 /// Main access point to the program, instantiates object of type UIMenu and launches the user-friendly constructed menu
 /// </summary>
 static void Main(string[] args)
 {
     UIMenu menu = new UIMenu();
     menu.Launch();
 }
Exemplo n.º 2
0
 static void Main(string[] args)
 {
     UIMenu UIMenu = new UIMenu("EMS-DBase.db");
     UIMenu.MainMenu();
 }
Exemplo n.º 3
0
 static void Main(string[] args)
 {
     UIMenu EMSMenu = new UIMenu();
     EMSMenu.ShowMainMenu();
 }