Example #1
0
 //删除话题评论
 public static int delete(string tcid)
 {
     return(Topic_CommentService.delete(tcid));
 }
Example #2
0
 //用户查看话题评论
 public static DataTable pltop(int topic_id)
 {
     return(Topic_CommentService.pltop(topic_id));
 }
Example #3
0
 //管理员查看话题评论信息
 public static DataTable admin_tc()
 {
     return(Topic_CommentService.admin_tc());
 }
Example #4
0
 //用户输入话题评论
 public static int topic_comment(Topic_Comment tc)
 {
     return(Topic_CommentService.topic_comment(tc));
 }