Ejemplo n.º 1
0
 public ActionResult Delete(int commentID)
 {
     if (User.Identity.IsAuthenticated)
     {
         using (var ctx = new MVCLabbDB())
         {
             var commentToRemove = repo.ByID(commentID);
             if (commentToRemove != null)
             {
                 repo.Delete(commentID);
             }
             return(Content("Comment was removed."));
         }
     }
     return(Content("Couldn't remove comment."));
 }