public PaginationEntity <FullTopicInfo> GetActiveTopicList(int pageSize, int currentPageIndex) { LoginBLL login = new LoginBLL(); var me = login.GetMe(); return(bll.GetFullTopicList(new TopicQueryForm { OwnerID = me.ID, PageSize = pageSize, CurrentIndex = currentPageIndex, OrderBy = OrderBy.DESC, OrderByColumn = "LastUpdateTime", Enabled = true })); }