public async Task <IActionResult> DeleteCategory(Guid Id)
        {
            var apiMsg = await ApiMessage.Wrap(async() =>
            {
                await contentBusiness.DeleteCategory(Id);
            });

            return(Json(apiMsg));
        }