Beispiel #1
0
        public IActionResult GetAllPaging(string keyword, string sortBy, int page, int pageSize)
        {
            var model = _foodCategoryService.GetAllPaging(keyword, sortBy, page, pageSize, out bool result, out string message);

            return(new OkObjectResult(new GenericResult(result, message, model)));
        }