コード例 #1
0
        public IActionResult GetAllPaging(int?categoryId, int?year, bool anime, bool film, string keyword, int page, int pageSize)
        {
            var model = _animeService.GetAllPagingClient(categoryId, keyword, page, pageSize, year, anime, film);

            return(new OkObjectResult(model));
        }