初步重构WPF项目中的DataService和App项目中的DataCenterServicce
This commit is contained in:
19
DMS.WPF/Interfaces/ILogDataService.cs
Normal file
19
DMS.WPF/Interfaces/ILogDataService.cs
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user