public List <Country> FindAll()
        {
            var result = CacheManager.GetCountries(Context.MainContentCulture);

            if (result == null)
            {
                result = FindListPoco(q => q);

                result = result.OrderBy(c => c.DisplayName).ToList();

                CacheManager.AddCountries(Context.MainContentCulture, result);
            }
            return(result);
        }