viewmodel ins wpf gepackt, build failed
This commit is contained in:
25
DaSaSo.Wpf/ViewModel/Commands/AddImpregnationCommand.cs
Normal file
25
DaSaSo.Wpf/ViewModel/Commands/AddImpregnationCommand.cs
Normal file
@@ -0,0 +1,25 @@
|
||||
using DaSaSo.Domain.Model;
|
||||
using DaSaSo.Domain.Services;
|
||||
using DaSaSo.Wpf.ViewModel.Interface;
|
||||
using System;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace DaSaSo.Wpf.ViewModel.Commands
|
||||
{
|
||||
internal class AddImpregnationCommand : AsyncCommandBase
|
||||
{
|
||||
private IDataService<Impregnation> impregnationService;
|
||||
private IRenavigator editRenavigator;
|
||||
|
||||
public AddImpregnationCommand(IDataService<Impregnation> impregnationService, IRenavigator editRenavigator)
|
||||
{
|
||||
this.impregnationService = impregnationService;
|
||||
this.editRenavigator = editRenavigator;
|
||||
}
|
||||
|
||||
public override Task ExecuteAsync(object? parameter)
|
||||
{
|
||||
throw new NotImplementedException();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user