This commit is contained in:
2025-10-20 19:39:17 +08:00
parent 01adc11be7
commit 7ad1b7d5e1
29 changed files with 113 additions and 140 deletions

View File

@@ -16,7 +16,7 @@ namespace DMS.WPF.Services;
public class VariableDataService : IVariableDataService
{
private readonly IMapper _mapper;
private readonly IDataStorageService _dataStorageService;
private readonly IWpfDataService _dataStorageService;
private readonly IAppCenterService _appCenterService;
@@ -26,7 +26,7 @@ public class VariableDataService : IVariableDataService
/// </summary>
/// <param name="mapper">AutoMapper 实例。</param>
/// <param name="appCenterService">数据服务中心实例。</param>
public VariableDataService(IMapper mapper, IDataStorageService dataStorageService, IAppCenterService appCenterService)
public VariableDataService(IMapper mapper, IWpfDataService dataStorageService, IAppCenterService appCenterService)
{
_mapper = mapper;
_dataStorageService = dataStorageService;