public void Start()
 {
     o_SQLManager = new SQLHandler();
     o_Notifyer = new TrayManager(this);
 }
 public void Dispose()
 {
     if (o_SQLManager != null) { o_SQLManager.Dispose(); o_SQLManager = null; }
     if (o_Notifyer != null) { o_Notifyer.Dispose(); o_Notifyer = null; }
 }