public IList <BookCategoryResponseDTO> GetAll()
 {
     return(_categoryTypesBll.GetAll());
 }
Esempio n. 2
0
        public IActionResult GetAll()
        {
            var response = _bookCategoryBll.GetAll();

            return(Ok(response));
        }