示例#1
0
        public async Task <JsonResult> OnGetGetSingleCategoryAsync(int categoryId)
        {
            var category = await _checklistService.GetSingleChecklistCategoryByIdAsync(categoryId);

            return(new JsonResult(category));
        }