コード例 #1
0
        [HttpGet("getlistbycategory")]//+++
        public IActionResult GetListByCategory(string categoryId)
        {
            //CategoryId'ye göre postları listelemek için
            var result = _postCategoryService.GetListByCategoryId(categoryId);

            if (result.Success)
            {
                return(Ok(result.Data));
            }
            return(BadRequest(result.Message));
        }