BaconographyPortable.ViewModel.CommentsViewModel.GotoReplyImpl C# (CSharp) Method

GotoReplyImpl() private method

private GotoReplyImpl ( ) : void
return void
        private void GotoReplyImpl()
        {
            Action<Thing> uiResponse = (madeComment) => Comments.Add(new CommentViewModel(_baconProvider, madeComment, _linkThing.Data.Name, false));
            ReplyData = new ReplyViewModel(_baconProvider, _linkThing, new RelayCommand(() => ReplyData = null), uiResponse);
        }