Пример #1
0
        public RunspaceController(LauncherController l)
        {
            Launcher = l;
            myLog = new LogConroller();

            //Startup = new List<string>();
            Exceptions = new List<string>();
        }
Пример #2
0
 public LauncherController()
 {
     this.Settings = new SettingsController();
     this.Pool = new PoolController(this);
     this.Forms = new FormController(this);
     this.Runspace = new RunspaceController(this);
     this.Devices = new DeviceController(this);
     this.Log = new LogConroller();
     this.State = new StateController();
     this.WinApi = new WinApi();
 }