34 lines
1.1 KiB
C#
34 lines
1.1 KiB
C#
using SewerStammGen.Shared.Contracts;
|
|
using SewerStammGen.WPF.Interface.Navigator;
|
|
using SewerStammGen.WPF.ViewModel;
|
|
using SewerStammGen.WPF.ViewModel.State;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SewerStammGen.WPF.Commands
|
|
{
|
|
class SchachtEditCommand : AsyncCommandBase
|
|
{
|
|
private ISchachtDataService schachtService;
|
|
private IActualState actualState;
|
|
private IRenavigator renavigator;
|
|
private ManholeListViewModel manholeListViewModel;
|
|
|
|
public SchachtEditCommand(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();
|
|
}
|
|
}
|
|
}
|