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

GotoUserDetailsImpl() private method

private GotoUserDetailsImpl ( ) : void
return void
        private async void GotoUserDetailsImpl()
        {
            var getAccount =  await _redditService.GetAccountInfo(_comment.Data.Author);
            var accountMessage = new SelectUserAccountMessage { Account = getAccount};
            _navigationService.Navigate(_dynamicViewLocator.AboutUserView, accountMessage);
        }