/// <summary>
 /// Import a variable map for the project
 /// </summary>
 /// <returns></returns>
 public Boolean importXmlMap()
 {
     try
     {
         xmlDoc = new XmlDocument();
         xmlDoc.Load(ConfigFolder + MappingsFile);
         SystemManager.ConsumeMappingInfo(xmlDoc.OuterXml);
         return(true);
     }
     catch
     {
         return(false);
     }
 }