public static SocietySnapshot LoadFromFile(string file_path_and_name)
        {
            var theSociety = SerializeXML.LoadFromXML <SocietySnapshot>(file_path_and_name);

            return(theSociety);
        }
        public static CollectionOfIncidentTemplates LoadFromFile(string file_path_and_name)
        {
            var theCollection = SerializeXML.LoadFromXML <CollectionOfIncidentTemplates>(file_path_and_name);

            return(theCollection);
        }