submit Add and Edit Command

This commit is contained in:
Natlinux81
2022-08-16 00:50:33 +02:00
parent cf8e7356e2
commit a72edbbafd
8 changed files with 96 additions and 21 deletions

View File

@@ -0,0 +1,26 @@
using Apollon.WPF.Stores;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Apollon.WPF.Commands
{
public class AddTournamentCommand : AsyncCommandBase
{
private readonly ModalNavigationStore _modalNavigationStore;
public AddTournamentCommand(ModalNavigationStore modalNavigationStore)
{
_modalNavigationStore = modalNavigationStore;
}
public override async Task ExecuteAsync(object parameter)
{
// Add Tournament to Database
_modalNavigationStore.Close();
}
}
}

View File

@@ -0,0 +1,23 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Apollon.WPF.Commands
{
public abstract class AsyncCommandBase : CommandBase
{
public override async void Execute(object parameter)
{
try
{
await ExecuteAsync(parameter);
}
catch (Exception) { }
}
public abstract Task ExecuteAsync(object parameter);
}
}

View File

@@ -0,0 +1,26 @@
using Apollon.WPF.Stores;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Apollon.WPF.Commands
{
public class EditTournamentCommand : AsyncCommandBase
{
private readonly ModalNavigationStore _modalNavigationStore;
public EditTournamentCommand(ModalNavigationStore modalNavigationStore)
{
_modalNavigationStore = modalNavigationStore;
}
public override async Task ExecuteAsync(object parameter)
{
// Edit Tournament to Database
_modalNavigationStore.Close();
}
}
}

View File

@@ -11,18 +11,16 @@ namespace Apollon.WPF.Commands
{
public class OpenEditTournamentCommand : CommandBase
{
private readonly ModalNavigationStore _modalNavigationStore;
private readonly Tournament _tournament;
private readonly ModalNavigationStore _modalNavigationStore;
public OpenEditTournamentCommand(ModalNavigationStore modalNavigationStore, Tournament tournament)
public OpenEditTournamentCommand(ModalNavigationStore modalNavigationStore)
{
_modalNavigationStore = modalNavigationStore;
_tournament = tournament;
_modalNavigationStore = modalNavigationStore;
}
public override void Execute(object parameter)
{
EditTournamentViewModel editTournamentViewModel = new EditTournamentViewModel(_tournament,_modalNavigationStore);
EditTournamentViewModel editTournamentViewModel = new EditTournamentViewModel(_modalNavigationStore);
_modalNavigationStore.CurrentViewModel = editTournamentViewModel;
}
}