/// <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();
 }