示例#1
0
 public System.Threading.Tasks.Task <PostCommentService.CommentDTO> AddCommmentAsync(int postId, PostCommentService.CommentDTO comment)
 {
     return(base.Channel.AddCommmentAsync(postId, comment));
 }
示例#2
0
 public System.Threading.Tasks.Task <PostCommentService.CommentDTO> UpdateCommentAsync(PostCommentService.CommentDTO oldComment, PostCommentService.CommentDTO newComment)
 {
     return(base.Channel.UpdateCommentAsync(oldComment, newComment));
 }
示例#3
0
 public System.Threading.Tasks.Task <PostCommentService.CommentDTO> SubmitCommentAsync(PostCommentService.CommentDTO comment)
 {
     return(base.Channel.SubmitCommentAsync(comment));
 }