Пример #1
0
 public void QueryStoryInfoData(long findStoryId)
 {
     if (findStoryId == -1)
     {
         listStoryInfo = storyInfoService.QueryAllStoryData();
     }
     else
     {
         listStoryInfo = storyInfoService.QueryStoryData(mFindStoryId);
     }
 }
Пример #2
0
 public List <StoryInfoBean> GetAllStoryInfo()
 {
     return(mStoryInfoService.QueryAllStoryData());
 }