Exemple #1
0
        public async Task <IActionResult> GetPublishBooksById(Guid id)
        {
            var bookCategory = await _bookCategoryService.GetPublishBookByBookCategoryIdAsync(id);

            return(Ok(bookCategory));
        }