18 lines
448 B
C#
18 lines
448 B
C#
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();
|
|
}
|
|
}
|
|
}
|