Ejemplo n.º 1
0
        private async Task <NMSG_Response> GetCommentsFromNMSG()
        {
            if (CommentSessionContext == null)
            {
                return(null);
            }

            return(await CommentSessionContext.GetCommentFirstAsync());
        }
Ejemplo n.º 2
0
 public async Task <PostCommentResponse> SubmitComment(string comment, TimeSpan position, string commands)
 {
     return(await CommentSessionContext.PostCommentAsync(position, comment, commands));
 }