Ejemplo n.º 1
0
        public async Task <IEnumerable <BestStoryInfo> > GetAllBestStoriesInfo()
        {
            Log.Debug("Request for GetBestStories()");

            var result = await BestStoryEngine.GetBestStoriesInfo();

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

            var result = await BestStoryEngine.GetBestStoryInfo(id);

            return(result);
        }