Example #1
0
        /// <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;
        }
Example #2
0
 /// <summary>
 /// 列表数量获取
 /// </summary>
 public int GetListCount(ZCourseApplyEntity entity)
 {
     return _currentDAO.GetListCount(entity);
 }
Example #3
0
 /// <summary>
 /// 更新
 /// </summary>
 /// <param name="pEntity">实体实例</param>
 /// <param name="pTran">事务实例,可为null,如果为null,则不使用事务来更新</param>
 public void Update(ZCourseApplyEntity pEntity, IDbTransaction pTran)
 {
     Update(pEntity, true, pTran);
 }
Example #4
0
 public void Update(ZCourseApplyEntity pEntity, bool pIsUpdateNullField, IDbTransaction pTran)
 {
     _currentDAO.Update(pEntity, pIsUpdateNullField, pTran);
 }
Example #5
0
 /// <summary>
 /// 创建一个新实例
 /// </summary>
 /// <param name="pEntity">实体实例</param>
 public void Create(ZCourseApplyEntity pEntity)
 {
     _currentDAO.Create(pEntity);
 }
Example #6
0
 /// <summary>
 /// 在事务内创建一个新实例
 /// </summary>
 /// <param name="pEntity">实体实例</param>
 /// <param name="pTran">事务实例,可为null,如果为null,则不使用事务来更新</param>
 public void Create(ZCourseApplyEntity pEntity, IDbTransaction pTran)
 {
     _currentDAO.Create(pEntity, pTran);
 }
Example #7
0
 /// <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));
 }
Example #8
0
 /// <summary>
 /// 根据实体条件查询实体
 /// </summary>
 /// <param name="pQueryEntity">以实体形式传入的参数</param>
 /// <param name="pOrderBys">排序组合</param>
 /// <returns>符合条件的实体集</returns>
 public ZCourseApplyEntity[] QueryByEntity(ZCourseApplyEntity pQueryEntity, OrderBy[] pOrderBys)
 {
     return(_currentDAO.QueryByEntity(pQueryEntity, pOrderBys));
 }
Example #9
0
 /// <summary>
 /// 删除
 /// </summary>
 /// <param name="pEntity"></param>
 public void Delete(ZCourseApplyEntity pEntity)
 {
     _currentDAO.Delete(pEntity);
 }
Example #10
0
 public void Update(ZCourseApplyEntity pEntity, bool pIsUpdateNullField)
 {
     _currentDAO.Update(pEntity, pIsUpdateNullField);
 }
Example #11
0
 /// <summary>
 /// 更新
 /// </summary>
 /// <param name="pEntity">实体实例</param>
 public void Update(ZCourseApplyEntity pEntity)
 {
     Update(pEntity, true);
 }