Example #1
0
 public void CreateComment(Comment comment)
 {
     _bsTestUnitOfWork.CommentRepository.Add(comment);
     _bsTestUnitOfWork.Save();
 }
Example #2
0
 public void CreatePost(Post post)
 {
     _bsTestUnitOfWork.PostRepository.Add(post);
     _bsTestUnitOfWork.Save();
 }