Edit Modal not Works

This commit is contained in:
Natlinux81
2022-08-16 02:52:01 +02:00
parent a72edbbafd
commit cc060b273a
5 changed files with 20 additions and 15 deletions

View File

@@ -48,7 +48,10 @@ namespace Apollon.WPF.ViewModels
}
private void AddTournament(Tournament tournament, ModalNavigationStore modalNavigationStore)
{
_overviewListingItemViewModels.Add(new OverviewListingItemViewModel(tournament));
ICommand editTournamentCommand = new OpenAddTournamentCommand(modalNavigationStore);
_overviewListingItemViewModels.Add(new OverviewListingItemViewModel(tournament
//,editTournamentCommand
));
}
}