Tests.MockViewModel.PostComment C# (CSharp) Method

PostComment() public method

Posts a comment to a card
public PostComment ( int number, string comment ) : void
number int
comment string
return void
        public void PostComment(int number, string comment)
        {
            _model.PostComment(number, comment);
        }