コード例 #1
0
ファイル: Comment.cs プロジェクト: fchristant/Blogo.NET
 public static List <Comment> GetList(int StartRow, int PageSize)
 {
     return(CommentDB.GetList(StartRow, PageSize));
 }
コード例 #2
0
ファイル: Comment.cs プロジェクト: fchristant/Blogo.NET
 public static List <Comment> GetList(long parent_id)
 {
     return(CommentDB.GetList(parent_id));
 }
コード例 #3
0
ファイル: Comment.cs プロジェクト: fchristant/Blogo.NET
 public static List <Comment> GetList()
 {
     return(CommentDB.GetList());
 }