/// <summary> /// 列表获取 /// </summary> public IList<ZCourseApplyEntity> GetList(ZCourseApplyEntity entity, int Page, int PageSize) { //var lNewsBLL = new LNewsBLL(CurrentUserInfo); //var objectImagesBLL = new ObjectImagesBLL(CurrentUserInfo); //var itemService = new ItemService(CurrentUserInfo); if (PageSize <= 0) PageSize = 15; IList<ZCourseApplyEntity> eventsList = new List<ZCourseApplyEntity>(); DataSet ds = new DataSet(); ds = _currentDAO.GetList(entity, Page, PageSize); if (ds != null && ds.Tables.Count > 0 && ds.Tables[0].Rows.Count > 0) { eventsList = DataTableToObject.ConvertToList<ZCourseApplyEntity>(ds.Tables[0]); //if (eventsList != null) //{ // foreach (var item in eventsList) // { // item.ItemDetail = itemService.GetVwItemDetailById(item.ItemId, entity.VipId); // } //} } return eventsList; }
/// <summary> /// 列表数量获取 /// </summary> public int GetListCount(ZCourseApplyEntity entity) { return _currentDAO.GetListCount(entity); }
/// <summary> /// 更新 /// </summary> /// <param name="pEntity">实体实例</param> /// <param name="pTran">事务实例,可为null,如果为null,则不使用事务来更新</param> public void Update(ZCourseApplyEntity pEntity, IDbTransaction pTran) { Update(pEntity, true, pTran); }
public void Update(ZCourseApplyEntity pEntity, bool pIsUpdateNullField, IDbTransaction pTran) { _currentDAO.Update(pEntity, pIsUpdateNullField, pTran); }
/// <summary> /// 创建一个新实例 /// </summary> /// <param name="pEntity">实体实例</param> public void Create(ZCourseApplyEntity pEntity) { _currentDAO.Create(pEntity); }
/// <summary> /// 在事务内创建一个新实例 /// </summary> /// <param name="pEntity">实体实例</param> /// <param name="pTran">事务实例,可为null,如果为null,则不使用事务来更新</param> public void Create(ZCourseApplyEntity pEntity, IDbTransaction pTran) { _currentDAO.Create(pEntity, pTran); }
/// <summary> /// 分页根据实体条件查询实体 /// </summary> /// <param name="pQueryEntity">以实体形式传入的参数</param> /// <param name="pOrderBys">排序组合</param> /// <returns>符合条件的实体集</returns> public PagedQueryResult <ZCourseApplyEntity> PagedQueryByEntity(ZCourseApplyEntity pQueryEntity, OrderBy[] pOrderBys, int pPageSize, int pCurrentPageIndex) { return(_currentDAO.PagedQueryByEntity(pQueryEntity, pOrderBys, pPageSize, pCurrentPageIndex)); }
/// <summary> /// 根据实体条件查询实体 /// </summary> /// <param name="pQueryEntity">以实体形式传入的参数</param> /// <param name="pOrderBys">排序组合</param> /// <returns>符合条件的实体集</returns> public ZCourseApplyEntity[] QueryByEntity(ZCourseApplyEntity pQueryEntity, OrderBy[] pOrderBys) { return(_currentDAO.QueryByEntity(pQueryEntity, pOrderBys)); }
/// <summary> /// 删除 /// </summary> /// <param name="pEntity"></param> public void Delete(ZCourseApplyEntity pEntity) { _currentDAO.Delete(pEntity); }
public void Update(ZCourseApplyEntity pEntity, bool pIsUpdateNullField) { _currentDAO.Update(pEntity, pIsUpdateNullField); }
/// <summary> /// 更新 /// </summary> /// <param name="pEntity">实体实例</param> public void Update(ZCourseApplyEntity pEntity) { Update(pEntity, true); }