Files
SewerGenerator/StammGenerator/Commands/AuftraggeberEditCommand.cs

18 lines
450 B
C#

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();
}
}
}