public bool Initialise() { storeManager = new ObjectStoreManager(); bool result = storeManager.Init(); DebugNormal("Initialise result: " + result.ToString()); return result; }
public void Dispose() { storeManager.Dispose(); storeManager = null; }
public bool Initialize(ref string key) { if (key != "Wilkinson") return false; DebugNormal("Initialising Store."); storeManager = new ObjectStoreManager(); storeManager.DebugReport += new EventHandler<DebugReportEventArgs>(storeManager_DebugReport); // Initialise Store Manager return storeManager.Init(); }