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
/// 日 期:2020.04.07
/// 描 述:App首页图片管理
///
public class DTImgBLL : BLLBase, DTImgIBLL, BLL
{
private readonly DTImgService dTImgService = new DTImgService();
#region 获取数据
///
/// 获取列表数据
///
///
public Task> GetList()
{
return dTImgService.GetList();
}
///
/// 获取列表分页数据
///
/// 分页参数
/// 查询参数
///
public Task> GetPageList(Pagination pagination, string queryJson)
{
return dTImgService.GetPageList(pagination, queryJson);
}
///
/// 获取实体数据
///
/// 主键
///
public Task GetEntity(string keyValue)
{
return dTImgService.GetEntity(keyValue);
}
#endregion 获取数据
#region 提交数据
///
/// 删除实体数据
///
/// 主键
///
public async Task DeleteEntity(string keyValue)
{
await dTImgService.DeleteEntity(keyValue);
}
///
/// 保存实体数据(新增、修改)
///
/// 主键
/// 实体
///
public async Task SaveEntity(string keyValue, DTImgEntity entity)
{
await dTImgService.SaveEntity(keyValue, entity);
}
///
/// 更新数据状态
///
/// 主键
/// 状态1启用2禁用
public async Task UpdateState(string keyValue, int state)
{
DTImgEntity entity = new DTImgEntity
{
F_EnabledMark = state
};
await SaveEntity(keyValue, entity);
}
#endregion 提交数据
}
}