Beispiel #1
0
        public async Task DeleteChapter(int id)
        {
            var chapter = await chapterService.GetAsync <Chapter>(x => x.ChapterId == id).ConfigureAwait(false);

            await chapterService.DeleteAsync(chapter).ConfigureAwait(false);
        }