BaconographyPortable.ViewModel.CommentViewModel.GotoEditImpl C# (CSharp) Method

GotoEditImpl() private method

private GotoEditImpl ( ) : void
return void
        private void GotoEditImpl()
        {
            if (ReplyData != null)
                ReplyData = null;
            else
                ReplyData = new ReplyViewModel(_baconProvider, _comment, new RelayCommand(() => ReplyData = null),
                            (madeComment) => Body = ((Comment)madeComment.Data).Body, true);
        }