public ActionResult Delete(PostCategory category)
        {
            _categoryRepository.Delete(category.Id);

            TempData["Message"] = "The category has been deleted successfully";

            return(RedirectToAction("Index"));
        }
 public void Delete(int id)
 {
     _postCategoryRepository.Delete(id);
 }