Beispiel #1
0
        public IActionResult Get(int page = 1, int size = 20, string keyword = "")
        {
            var temp = repo.GetAll <ProductCategory, ProductCategoryModel>(page, size, keyword);

            return(Ok(temp));
        }