/// <summary> /// Restore Augment DB /// </summary> /// <param name="msg"></param> /// <param name="msgid"></param> /// <returns></returns> public bool RestoreAugmentDB(string msg, ref string msgid) { bool status = false; string error = ""; WriteLine("\n..Restoring DB and Augmenting the DB from xml..\n"); DBEngine<int, DBElement<int, string>> dbNew = new DBEngine<int, DBElement<int, string>>(); dbNew.RestoreDB(out error, out status); //Persist to new DB from xml if (status == true) { WriteLine("\n..New DB is restored & augmented successfully from PersistXMLFile.xml..\n"); dbNew.showDB(); } return status; }