need NavigationService

This commit is contained in:
Natlinux
2022-11-27 15:46:02 +01:00
parent d45c0cc1d5
commit 3911dd66e8
4 changed files with 12 additions and 7 deletions

View File

@@ -1,4 +1,5 @@
using Apollon.WPF.Commands;
using Apollon.Domain.Models;
using Apollon.WPF.Commands;
using Apollon.WPF.Stores;
using System;
using System.Collections.Generic;
@@ -10,7 +11,8 @@ using System.Windows.Input;
namespace Apollon.WPF.ViewModels
{
public class GroupsViewModel : ViewModelBase
{
{
public TournamentDetailsViewModel TournamentDetailsViewModel { get; }
public ICommand NavigateOverviewCommand { get; }

View File

@@ -10,10 +10,9 @@ namespace Apollon.WPF.ViewModels
{
public class NavBarPreparationViewModel : ViewModelBase
{
public ICommand NavigateArchersCommand { get;}
public ICommand NavigateOverviewCommand { get;}
public ICommand NavigateGroupsCommand { get;}
public ICommand NavigateClassesCommand { get;}
public ICommand NavigateArchersCommand { get;}
}
}