📄 ilogmanager.cs
字号:
namespace PowerEasy.Logging
{
using System;
using System.Collections.Generic;
public interface ILogManager
{
void Add(LogInfo logInfo);
bool Delete(DateTime time);
bool Delete(string id);
IList<LogInfo> GetList(int startRowIndexId, int maxNumberRows);
IList<LogInfo> GetList(int startRowIndexId, int maxNumberRows, LogCategory category);
IList<LogInfo> GetList(int startRowIndexId, int maxNumberRows, string searchType, string keyword);
LogInfo GetLogById(int id);
int GetTotalOfLog();
bool Update(LogInfo logInfo);
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -