コード例 #1
0
ファイル: CommentController.cs プロジェクト: hiyouth/R2.RRDL
 public List<Comment> GetCommentChidren(int id) {
     CommentRepository cr = new CommentRepository();
     return cr.GetCommentChidren(id).ToList();
 }