//----------------------------------------
        public void Store(string key, string type, Object objValue)
        {
            string value = CheckNullObject(objValue, "STORE");

            XmlManager xmlWorker = new XmlManager();

            try
            {
                xmlWorker.XmlWrite(key, type, value);

                reportResults(
                       "Store Value",
                       "Store Value command passed.",
                       LogLevel.Success
                        );
            }
            catch (Exception e)
            {
                reportResults(
                         true,
                         "Store Value",
                         "Store Value command failed. Cannot access project_data.xml. Actual Error: " + e.Message,
                         LogLevel.Error,
                         e.StackTrace);
            }

            CheckStoreValueType(type, value);
        }