Пример #1
0
 public async Task <ActionResult <IEnumerable <ChapterPropertyOptionApiResponse> > > PropertyOptions(Guid id)
 {
     return(await HandleVersionedRequest(
                version => _chapterService.GetChapterPropertyOptions(version, id),
                x => x.Select(_mapper.Map <ChapterPropertyOptionApiResponse>)));
 }