예제 #1
0
파일: Reviews.cs 프로젝트: rocketeerbkw/DNA
        /// <summary>
        /// Returns the Threads in a rating forum by the UID
        /// </summary>
        /// <param name="reviewForumId"></param>
        /// <param name="site"></param>
        /// <returns></returns>
        public ThreadList RatingForumThreadsReadByUID(string reviewForumId, ISite site)
        {
            Threads threadsObj = new Threads(DnaDiagnostics, DnaDataReaderCreator, CacheManager, SiteList);
            threadsObj.CallingUser = CallingUser;
            threadsObj.BbcUid = BbcUid;
            threadsObj.IpAddress = IpAddress;

            return threadsObj.ThreadsReadByUid(reviewForumId, site);
        }