コード例 #1
0
 public async Task <ActionResult <IEnumerable <ChapterPropertyApiResponse> > > Properties(Guid id)
 {
     return(await HandleVersionedRequest(
                version => _chapterService.GetChapterProperties(version, id),
                x => x.Select(_mapper.Map <ChapterPropertyApiResponse>)));
 }