public async Task <IActionResult> DeletePostCategory(int id)
        {
            await _postCategoryService.DeletePostCategoryAsync(id);

            return(NoContent());
        }