public async Task <bool> PostCommentAsync(string text)
 {
     if (_connection == null)
     {
         return(false);
     }
     return(await _connection.PostCommentAsync(text));
 }
Пример #2
0
 public async Task <bool> PostCommentAsync(string text)
 {
     return(await _connection.PostCommentAsync(text));
 }