26 lines
750 B
C#
26 lines
750 B
C#
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();
|
|
}
|
|
}
|
|
}
|