before adding LoadingSpinner
This commit is contained in:
@@ -17,16 +17,14 @@ namespace Apollon.WPF.ViewModels
|
||||
public string TournamentName => Tournament.TournamentName;
|
||||
public string Location => Tournament.Location;
|
||||
|
||||
public ICommand EditCommand { get; }
|
||||
//public ICommand DeleteCommand { get; }
|
||||
public ICommand EditCommand { get; }
|
||||
public ICommand WarningDeleteCommand { get; }
|
||||
|
||||
public OverviewListingItemViewModel(Tournament tournament, TournamentsStore tournamentStore, ModalNavigationStore modalNavigationStore)
|
||||
{
|
||||
Tournament = tournament;
|
||||
|
||||
EditCommand = new OpenEditTournamentCommand(this, tournamentStore, modalNavigationStore);
|
||||
//DeleteCommand = new DeleteTournamentCommand(this, tournamentStore);
|
||||
EditCommand = new OpenEditTournamentCommand(this, tournamentStore, modalNavigationStore);
|
||||
WarningDeleteCommand = new OpenWarningDeleteCommand(this, modalNavigationStore, tournamentStore);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user