コード例 #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));
 }