Exemplo n.º 1
0
 public void QueryStoryInfoData(long findStoryId)
 {
     if (findStoryId == -1)
     {
         listStoryInfo = storyInfoService.QueryAllStoryData();
     }
     else
     {
         listStoryInfo = storyInfoService.QueryStoryData(mFindStoryId);
     }
 }
Exemplo n.º 2
0
 public List <StoryInfoBean> GetAllStoryInfo()
 {
     return(mStoryInfoService.QueryAllStoryData());
 }