WIP
This commit is contained in:
@@ -21,7 +21,7 @@ namespace DMS.WPF.ViewModels.Dialogs
|
||||
{
|
||||
|
||||
private readonly IDialogService _dialogService;
|
||||
private readonly IDataStorageService _dataStorageService;
|
||||
private readonly IWpfDataService _dataStorageService;
|
||||
private readonly INotificationService _notificationService;
|
||||
|
||||
[ObservableProperty]
|
||||
@@ -39,7 +39,7 @@ namespace DMS.WPF.ViewModels.Dialogs
|
||||
|
||||
public TriggerDialogViewModel(
|
||||
IDialogService dialogService,
|
||||
IDataStorageService dataStorageService,
|
||||
IWpfDataService dataStorageService,
|
||||
INotificationService notificationService)
|
||||
{
|
||||
_dialogService = dialogService ?? throw new ArgumentNullException(nameof(dialogService));
|
||||
|
||||
@@ -26,11 +26,11 @@ public partial class VariableDialogViewModel : DialogViewModelBase<VariableItem>
|
||||
private bool _hasError;
|
||||
|
||||
private readonly IWPFDataService _wpfDataService;
|
||||
private readonly IDataStorageService _dataStorageService;
|
||||
private readonly IWpfDataService _dataStorageService;
|
||||
private readonly IVariableAppService _variableAppService;
|
||||
private readonly IMapper _mapper;
|
||||
|
||||
public VariableDialogViewModel(IWPFDataService wpfDataService,IDataStorageService dataStorageService, IVariableAppService variableAppService, IMapper mapper)
|
||||
public VariableDialogViewModel(IWPFDataService wpfDataService,IWpfDataService dataStorageService, IVariableAppService variableAppService, IMapper mapper)
|
||||
{
|
||||
|
||||
Variable = new VariableItem();
|
||||
|
||||
Reference in New Issue
Block a user