22 lines
428 B
C#
22 lines
428 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SewerStammGen.WPF.Commands
|
|
{
|
|
internal class HaltungAddCommand : AsyncCommandBase
|
|
{
|
|
public HaltungAddCommand()
|
|
{
|
|
|
|
}
|
|
|
|
public override Task ExecuteAsync(object? parameter)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|