private void ProcessUpVoteCommand()
 {
     if (_postController != null)
     {
         OnUpVoteCommand(_currentPost);
         _postController.UpVote();
     }
     else
     {
         OnPostNotFound();
     }
 }