示例#1
0
 private IList <FeaturedLinkModel> GetFeaturedCandidateSearches()
 {
     return((from j in _featuredQuery.GetFeaturedCandidateSearches()
             select new FeaturedLinkModel
     {
         Url = new ReadOnlyApplicationUrl(true, j.Url),
         Title = j.Title,
     }).ToList());
 }