using ce.autofac.extension;
using learun.iapplication;
using learun.util;
using System.Collections.Generic;
using System.Threading.Tasks;
namespace learun.application
{
///
/// 版 本 EasyCode EC管理后台
/// Copyright (c) 2019-present EC管理有限公司
/// 创建人:tobin
/// 日 期:2019.11.01
/// 描 述:任务执行日志
///
public class TSLogBLL : BLLBase, TSLogIBLL, BLL
{
private readonly TSLogService logService = new TSLogService();
#region 获取数据
///
/// 获取页面显示列表数据
///
/// 分页参数
/// 查询参数
///
public Task> GetPageList(Pagination pagination, string queryJson)
{
return logService.GetPageList(pagination, queryJson);
}
///
/// 获取LR_TS_Log表实体数据
///
/// 主键
///
public Task GetLogEntity(string keyValue)
{
return logService.GetLogEntity(keyValue);
}
#endregion 获取数据
#region 提交数据
///
/// 删除实体数据
///
/// 主键
///
public async Task DeleteEntity(string keyValue)
{
await logService.DeleteEntity(keyValue);
}
///
/// 保存实体数据(新增、修改)
///
/// 主键
/// 实体
///
public async Task SaveEntity(string keyValue, TSLogEntity entity)
{
await logService.SaveEntity(keyValue, entity);
}
#endregion 提交数据
}
}