Exemple #1
0
        public async Task <IActionResult> ListCategory(ListQuery listQuery)
        {
            var apiMsg = await ApiMessage.Wrap(async() =>
            {
                await contentBusiness.GetCategory(listQuery);
            });

            return(Json(apiMsg));
        }