Beispiel #1
0
 /// <summary>
 /// Presents message using view, checks if user wishes to return
 /// </summary>
 private void goBack()
 {
     EditUpdateMenu.Event e = _editUpdateMenu.getEditEvent();
     if (e == EditUpdateMenu.Event.Back)
     {
         App a = new App();
         a.startApp();
     }
 }
Beispiel #2
0
        /// <summary>
        /// Initializes the application,
        /// </summary>
        /// <param name="args"></param>
        static void Main(string[] args)
        {
            Controller.App app = new Controller.App();

            while (app.startApp())
            {
                ;
            }
        }
Beispiel #3
0
 /// <summary>
 /// Presents message using view, checks if user wishes to return
 /// </summary>     
 private void goBack()
 {
     EditUpdateMenu.Event e = _editUpdateMenu.getEditEvent();
     if (e == EditUpdateMenu.Event.Back)
     {
         App a = new App();
         a.startApp();
     }
 }
Beispiel #4
0
        /// <summary>
        /// Initializes the application, 
        /// </summary>
        /// <param name="args"></param>
        static void Main(string[] args)
        {
            Controller.App app = new Controller.App();

            while (app.startApp());
        }