示例#1
0
 public void Update(GLServicePersonInfoEntity pEntity, bool pIsUpdateNullField, IDbTransaction pTran)
 {
     _currentDAO.Update(pEntity, pIsUpdateNullField, pTran);
 }
示例#2
0
 /// <summary>
 /// 在事务内创建一个新实例
 /// </summary>
 /// <param name="pEntity">实体实例</param>
 /// <param name="pTran">事务实例,可为null,如果为null,则不使用事务来更新</param>
 public void Create(GLServicePersonInfoEntity pEntity, IDbTransaction pTran)
 {
     _currentDAO.Create(pEntity, pTran);
 }
示例#3
0
 /// <summary>
 /// 更新
 /// </summary>
 /// <param name="pEntity">实体实例</param>
 /// <param name="pTran">事务实例,可为null,如果为null,则不使用事务来更新</param>
 public void Update(GLServicePersonInfoEntity pEntity, IDbTransaction pTran)
 {
     Update(pEntity, true, pTran);
 }
示例#4
0
 /// <summary>
 /// 分页根据实体条件查询实体
 /// </summary>
 /// <param name="pQueryEntity">以实体形式传入的参数</param>
 /// <param name="pOrderBys">排序组合</param>
 /// <returns>符合条件的实体集</returns>
 public PagedQueryResult <GLServicePersonInfoEntity> PagedQueryByEntity(GLServicePersonInfoEntity pQueryEntity, OrderBy[] pOrderBys, int pPageSize, int pCurrentPageIndex)
 {
     return(_currentDAO.PagedQueryByEntity(pQueryEntity, pOrderBys, pPageSize, pCurrentPageIndex));
 }
示例#5
0
 /// <summary>
 /// 创建一个新实例
 /// </summary>
 /// <param name="pEntity">实体实例</param>
 public void Create(GLServicePersonInfoEntity pEntity)
 {
     _currentDAO.Create(pEntity);
 }
示例#6
0
 /// <summary>
 /// 根据实体条件查询实体
 /// </summary>
 /// <param name="pQueryEntity">以实体形式传入的参数</param>
 /// <param name="pOrderBys">排序组合</param>
 /// <returns>符合条件的实体集</returns>
 public GLServicePersonInfoEntity[] QueryByEntity(GLServicePersonInfoEntity pQueryEntity, OrderBy[] pOrderBys)
 {
     return(_currentDAO.QueryByEntity(pQueryEntity, pOrderBys));
 }
示例#7
0
 /// <summary>
 /// 删除
 /// </summary>
 /// <param name="pEntity"></param>
 public void Delete(GLServicePersonInfoEntity pEntity)
 {
     _currentDAO.Delete(pEntity);
 }
示例#8
0
 public void Update(GLServicePersonInfoEntity pEntity, bool pIsUpdateNullField)
 {
     _currentDAO.Update(pEntity, pIsUpdateNullField);
 }
示例#9
0
 /// <summary>
 /// 更新
 /// </summary>
 /// <param name="pEntity">实体实例</param>
 public void Update(GLServicePersonInfoEntity pEntity)
 {
     Update(pEntity, true);
 }
示例#10
0
        /// <summary>
        /// 获取所有未定预约单信息
        /// </summary>
        /// <param name="pRequest"></param>
        /// <returns></returns>
        public string GetRunningServiceOrder(string pRequest)
        {
            var rd = new APIResponse <GetRunningServiceOrderRD>();

            try
            {
                var rp = pRequest.DeserializeJSONTo <APIRequest <GetRunningServiceOrderRP> >();
                if (rp.Parameters == null)
                {
                    throw new ArgumentException();
                }

                rp.Parameters.Validate();

                var rdData = new GetRunningServiceOrderRD();
                rdData.SubOrderList = ServiceOrderManager.Instance.GetRunningServiceOrder();
                rd.Data             = rdData;
                rd.ResultCode       = 0;

                #region 自动保存师傅信息
                try
                {
                    var loggingSessionInfo = Default.GetBSLoggingSession(rp.CustomerID, rp.UserID);
                    GLServicePersonInfoBLL    glspiblll = new GLServicePersonInfoBLL(loggingSessionInfo);
                    GLServicePersonInfoEntity glspie    = glspiblll.GetByID(rp.UserID);
                    if (glspie == null)
                    {
                        T_UserBLL    bll       = new T_UserBLL(loggingSessionInfo);
                        T_UserEntity tue       = bll.GetUserEntityByID(rp.UserID);
                        string       headImage = "";
                        //获取头像
                        DataSet ds = bll.GetObjectImages(rp.UserID);
                        if (ds != null && ds.Tables != null && ds.Tables.Count > 0 && ds.Tables[0].Rows.Count > 0)
                        {
                            headImage = ds.Tables[0].Rows[0]["ImageURL"] == null ? "" : ds.Tables[0].Rows[0]["ImageURL"].ToString();
                        }
                        if (tue != null)
                        {
                            glspie            = new GLServicePersonInfoEntity();
                            glspie.UserID     = tue.user_id;
                            glspie.Name       = tue.user_name;
                            glspie.Mobile     = tue.user_telephone;
                            glspie.Picture    = headImage;
                            glspie.OrderCount = 0;
                            glspie.Star       = 5;
                            glspie.CustomerID = tue.customer_id;
                            glspiblll.Create(glspie);
                        }
                    }
                }
                catch (Exception ex) { }
                #endregion
            }
            catch (Exception ex)
            {
                rd.Message    = ex.Message;
                rd.ResultCode = 101;
            }

            return(rd.ToJSON());
        }