public async Task <IActionResult> CategoryAsync(string id)
        {
            var model = await _featureService.CategoryRemoveAsync(id);

            return(RedirectToPage(typeof(Pages.Manage.Category.IndexModel).Page(), new
            {
                status = model.GetDisplayName()
            }));
        }