refactor:完成重构设备的添加,删除,更新。

This commit is contained in:
2025-10-22 14:06:16 +08:00
parent e995ec7207
commit 54d040b45f
76 changed files with 1028 additions and 1161 deletions

View File

@@ -9,11 +9,11 @@ namespace DMS.Application.Services;
/// </summary>
public class EventService : IEventService
{
private readonly IAppStorageService _appStorageService;
private readonly IAppDataService _appDataService;
public EventService(IAppStorageService appStorageService)
public EventService(IAppDataService appStorageService)
{
_appStorageService = appStorageService;
_appDataService = appStorageService;
}
#region