public void unSeeGossip(int gossipId) { GossipService gossipService = new GossipService(); gossipService.unSeeGossip(gossipId); }
public ActionResult unseeGossip(Gossip gossip) { var gossipService = new GossipService(); gossipService.unSeeGossip(gossip.Id); return Json(new { success = true }); }