コード例 #1
0
        public override async Task <IEnumerable <Topic> > GetAllTopicsAsync()
        {
            var topicResults = await TopicRepository.GetAllTopicsAsync();

            return(topicResults.OrderBy(t => t.Id));
        }