public System.Threading.Tasks.Task UpdatePostAsync(System.Guid id, Lab6.Wcf.Contracts.PostDto postDto)
 {
     return(base.Channel.UpdatePostAsync(id, postDto));
 }
 public System.Threading.Tasks.Task AddPostAsync(Lab6.Wcf.Contracts.PostDto postDto)
 {
     return(base.Channel.AddPostAsync(postDto));
 }
 public void UpdatePost(System.Guid id, Lab6.Wcf.Contracts.PostDto postDto)
 {
     base.Channel.UpdatePost(id, postDto);
 }
 public void AddPost(Lab6.Wcf.Contracts.PostDto postDto)
 {
     base.Channel.AddPost(postDto);
 }