public static string GetFullName(PageCache cache,
                                  string stateCode, string countyCode, string localCode)
 {
     return((string.IsNullOrWhiteSpace(localCode)
 ? string.Empty
 : GetName(cache, stateCode, countyCode, localCode) + ", ") +
            Counties.GetFullName(stateCode, countyCode));
 }
        // ReSharper disable MemberCanBePrivate.Global
        // ReSharper disable MemberCanBeProtected.Global
        // ReSharper disable UnusedMember.Global
        // ReSharper disable UnusedMethodReturnValue.Global
        // ReSharper disable UnusedAutoPropertyAccessor.Global

        public static string GetFullName(string stateCode, string countyCode,
                                         string localKey)
        {
            return((IsNullOrWhiteSpace(localKey)
        ? Empty
        : GetName(stateCode, localKey) + ", ") +
                   Counties.GetFullName(stateCode, countyCode));
        }