/// <summary>
        /// Return connection name without leading namespace
        /// </summary>
        /// <returns></returns>
        public string RealName()
        {
            var helper      = new AssemblyHelpers();
            var workSection = $"{Path.GetFileNameWithoutExtension(helper.CallingNamespace())}.Properties.Settings.";

            return(Name.Replace(workSection, ""));
        }