Пример #1
0
 public System.Threading.Tasks.Task <PostComment.CommentDTO> UpdateCommentAsync(PostComment.CommentDTO oldComment, PostComment.CommentDTO newComment)
 {
     return(base.Channel.UpdateCommentAsync(oldComment, newComment));
 }
Пример #2
0
 public PostComment.CommentDTO UpdateComment(PostComment.CommentDTO oldComment, PostComment.CommentDTO newComment)
 {
     return(base.Channel.UpdateComment(oldComment, newComment));
 }
Пример #3
0
 public System.Threading.Tasks.Task <PostComment.CommentDTO> AddCommmentAsync(int postId, PostComment.CommentDTO comment)
 {
     return(base.Channel.AddCommmentAsync(postId, comment));
 }
Пример #4
0
 public PostComment.CommentDTO AddCommment(int postId, PostComment.CommentDTO comment)
 {
     return(base.Channel.AddCommment(postId, comment));
 }
Пример #5
0
 public System.Threading.Tasks.Task <PostComment.CommentDTO> SubmitCommentAsync(PostComment.CommentDTO comment)
 {
     return(base.Channel.SubmitCommentAsync(comment));
 }
Пример #6
0
 public PostComment.CommentDTO SubmitComment(PostComment.CommentDTO comment)
 {
     return(base.Channel.SubmitComment(comment));
 }