Example #1
0
        public override void DoProcessRequest(IExecutionContext context)
        {
            searchResults =
                PostingHelper.Instance.PostingSearch(
                    txtQuery,
                    GetCurrentTagsAsCDL(),
                    ContentTypeHelper.Instance.Parse(contentType));

            popularTags = GetPopularTags();
        }
Example #2
0
 private void LoadData(bool reset, string userId)
 {
     unpublished = PostingHelper.Instance.UserPostingSearch(userId, reset, false);
     published = PostingHelper.Instance.UserPostingSearch(userId, reset, true);
 }
 public override void DoProcessRequest(IExecutionContext context)
 {
     applicants = PostingHelper.Instance.ApplicantSearch(String.IsNullOrEmpty(adId) ? null : adId, currentUser.LocalID);
 }