Ejemplo n.º 1
0
 public CommentServiceModel getCommentById(int id)
 {
     CommentsRepository repo = new CommentsRepository(entities);
     Comment comment = repo.GetCommentById(id);
     return DefectUtil.mapCommentEntityToModel(comment);
 }
Ejemplo n.º 2
0
 public void deleteCommentById(int id)
 {
     CommentsRepository repo = new CommentsRepository(entities);
     Comment comment = repo.GetCommentById(id);
     repo.DeleteComment(comment);
 }