|
|
@@ -1,6 +1,7 @@
|
|
|
using System;
|
|
|
using System.Collections.Generic;
|
|
|
using System.Collections.ObjectModel;
|
|
|
+using System.Configuration;
|
|
|
using System.IO;
|
|
|
using System.Linq;
|
|
|
using System.Net;
|
|
|
@@ -127,6 +128,7 @@ namespace VehicleControlSystem
|
|
|
this.autoManager = new AutoManager(this.IO, this.eventAggregator, this.sql, this.Alarms);
|
|
|
this.scheduler = new Scheduler(eventAggregator, this.autoManager, this.sql, this.bMUManager);
|
|
|
this.vehicle = new Vehicle(this.eventAggregator);
|
|
|
+ this.vehicle.TabletIP = ConfigurationManager.AppSettings.Get("TabletIP");
|
|
|
|
|
|
this.hostManager = new HostManager(this.eventAggregator, this.vehicle, this.sql, this.autoManager, this.scheduler, this.IO);
|
|
|
|