AuftraggeberListview intial

This commit is contained in:
2023-07-03 19:15:57 +02:00
parent 287c7aaa0a
commit 33f9da3798
16 changed files with 184 additions and 27 deletions

View File

@@ -0,0 +1,17 @@
using StammGenerator.Interface;
using StammGenerator.ViewModel;
using System.Threading.Tasks;
namespace StammGenerator.Commands
{
internal class AuftraggeberAddCommand: AsyncCommandBase
{
private readonly IActualState actualState;
private readonly IRenavigator renavigator;
public override Task ExecuteAsync(object? parameter)
{
throw new System.NotImplementedException();
}
}
}

View File

@@ -0,0 +1,17 @@
using StammGenerator.Interface;
using StammGenerator.ViewModel;
using System.Threading.Tasks;
namespace StammGenerator.Commands
{
internal class AuftraggeberEditCommand : AsyncCommandBase
{
private readonly IActualState actualState;
private readonly IRenavigator renavigator;
public override Task ExecuteAsync(object? parameter)
{
throw new System.NotImplementedException();
}
}
}