public void Like(int key) { Post updateThisPost = repo.GetT(key); updateThisPost.Rating++; repo.Update(updateThisPost); }
public void IncreaseVote(int id) { var forVoting = GetPostById(id); forVoting.NumberOfVotes++; redditRepository.Update(forVoting); }
public void UpdatePost(Post post) { redditRepository.Update(post); }