public DetailViewModel(IMvxNavigationService Navigation, PostPresentation Post) { navigation = Navigation; this.Post = Post; }
private void SelectTableItem(PostPresentation Post) { TagButtonVisible = false; Mvx.RegisterSingleton <PostPresentation>(Post); navigation.Navigate <DetailViewModel>(); }