Ejemplo n.º 1
0
 public void RemovePost(Post post)
 {
     redditRepository.Delete(post);
 }
Ejemplo n.º 2
0
        public void Delete(int key)
        {
            Post deleteThisPost = repo.GetT(key);

            repo.Delete(deleteThisPost);
        }
 public IActionResult Delete(int id)
 {
     redditRepository.Delete(id);
     return(RedirectToAction("Post"));
 }