/// <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();
 }
예제 #2
0
 static void Main(string[] args)
 {
     UIMenu UIMenu = new UIMenu("EMS-DBase.db");
     UIMenu.MainMenu();
 }
예제 #3
0
파일: Program.cs 프로젝트: brandond12/EMS
 static void Main(string[] args)
 {
     UIMenu EMSMenu = new UIMenu();
     EMSMenu.ShowMainMenu();
 }