コード例 #1
0
ファイル: DefectsService.cs プロジェクト: adramalech/KolabApp
 public CommentServiceModel getCommentById(int id)
 {
     CommentsRepository repo = new CommentsRepository(entities);
     Comment comment = repo.GetCommentById(id);
     return DefectUtil.mapCommentEntityToModel(comment);
 }
コード例 #2
0
ファイル: DefectsService.cs プロジェクト: adramalech/KolabApp
 public void deleteCommentById(int id)
 {
     CommentsRepository repo = new CommentsRepository(entities);
     Comment comment = repo.GetCommentById(id);
     repo.DeleteComment(comment);
 }