31 lines
995 B
C#
31 lines
995 B
C#
using SewerStammGen.Shared.Contracts;
|
|
using StammGenerator.Commands;
|
|
using StammGenerator.Interface;
|
|
using StammGenerator.ViewModel;
|
|
using System;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace StammGenerator.Commands
|
|
{
|
|
class SchachtDeleteCommand : AsyncCommandBase
|
|
{
|
|
private ISchachtDataService schachtService;
|
|
private IActualState actualState;
|
|
private IRenavigator renavigator;
|
|
private ManholeListViewModel manholeListViewModel;
|
|
|
|
public SchachtDeleteCommand(ISchachtDataService schachtService, IActualState actualState, IRenavigator renavigator, ManholeListViewModel manholeListViewModel)
|
|
{
|
|
this.schachtService = schachtService;
|
|
this.actualState = actualState;
|
|
this.renavigator = renavigator;
|
|
this.manholeListViewModel = manholeListViewModel;
|
|
}
|
|
|
|
public override Task ExecuteAsync(object? parameter)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|