public IActionResult OnGetRestore(long id)
        {
            var result = _productCategoryApplication.Restore(id);

            if (result.IsSuccedded)
            {
                return(RedirectToPage("./Index"));
            }

            Message = result.Message;
            return(RedirectToPage("./Index"));
        }