using ce.autofac.extension; using learun.iapplication; using System.Threading.Tasks; namespace learun.application { /// /// 版 本 EasyCode EC管理后台 /// Copyright (c) 2019-present EC管理有限公司 /// 创建人:tobin /// 日 期:2019.09.17 /// 描 述:图片保存 /// public class ImgBLL : BLLBase, ImgIBLL, BLL { private readonly ImgService imgService = new ImgService(); #region 获取数据 /// /// 获取LR_Base_Img表实体数据 /// /// 主键 /// public Task GetEntity(string keyValue) { return imgService.GetEntity(keyValue); } #endregion 获取数据 #region 提交数据 /// /// 删除实体数据 /// /// 主键 /// public async Task DeleteEntity(string keyValue) { await imgService.DeleteEntity(keyValue); } /// /// 保存实体数据(新增、修改) /// /// 主键 /// 实体 /// public async Task SaveEntity(string keyValue, ImgEntity entity) { await imgService.SaveEntity(keyValue, entity); } #endregion 提交数据 } }