Beispiel #1
0
        /// <summary>
        /// Initiation of all application-modules
        /// </summary>
        private void initAppComponents()
        {
            restMng = new RestMng(Global.restAd);

            dataBase         = new Database();
            bluetoothManager = new BluetoothManager();

            appCore = AppCore.Instance;
            appCore.SetDatabase(dataBase);
            appCore.SetRestMng(restMng);
            synchMng = new SynchronizationManager(appCore, dataBase, restMng);
            wifiMng  = new WifiConnectionManager(appCore, synchMng);
        }
Beispiel #2
0
 //getter&setter
 public void setWifiMng(WifiConnectionManager wifiMng)
 {
     this.wifiMng = wifiMng;
 }