Kanalschaden werden richtig geparsed
This commit is contained in:
24
DaSaSo.ViewModel/Commands/SelectDamageCommand.cs
Normal file
24
DaSaSo.ViewModel/Commands/SelectDamageCommand.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DaSaSo.ViewModel.Commands
|
||||
{
|
||||
class SelectDamageCommand : AsyncCommandBase
|
||||
{
|
||||
private readonly SewerMainListViewModel _sewerMainListViewModel;
|
||||
|
||||
public SelectDamageCommand(SewerMainListViewModel sewerMainListViewModel)
|
||||
{
|
||||
_sewerMainListViewModel = sewerMainListViewModel;
|
||||
}
|
||||
|
||||
public override Task ExecuteAsync(object? parameter)
|
||||
{
|
||||
var d = _sewerMainListViewModel;
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user