示例#1
0
        public async Task <IEnumerable <BestStoryInfo> > GetAllBestStoriesInfo()
        {
            Log.Debug("Request for GetBestStories()");

            var result = await BestStoryEngine.GetBestStoriesInfo();

            return(result);
        }
示例#2
0
        public async Task <BestStoryInfo> GetBestStoryInfo(int id)
        {
            Log.Debug("Request for GetBestStory()");

            var result = await BestStoryEngine.GetBestStoryInfo(id);

            return(result);
        }