初步重构WPF项目中的DataService和App项目中的DataCenterServicce

This commit is contained in:
2025-09-09 13:35:16 +08:00
parent 84720f1ac4
commit 94ef1dec84
44 changed files with 1618 additions and 307 deletions

View File

@@ -0,0 +1,19 @@
using System.Collections.ObjectModel;
using DMS.Application.DTOs.Events;
using DMS.WPF.ViewModels.Items;
namespace DMS.WPF.Interfaces;
/// <summary>
/// 日志数据服务接口。
/// </summary>
public interface ILogDataService
{
/// <summary>
/// 处理日志变更事件。
/// </summary>
void OnNlogChanged(object sender, NlogChangedEventArgs e);
void LoadAllLog();
}