public T GetObjectFromConfigurationNode <T>(string objectPath) where T : class
        {
            // var appropriateNode = MainConfigurationNode.SelectSingleNode(objectPath);
            var appropriateNode = XmlHelper.SmartSelectSingleNode(MainConfigurationNode, objectPath);

            return(GetObjectFromConfigurationNode <T>(appropriateNode));
        }