Example #1
0
        public bool Insert(BesttoneAccount obj)
        {
            bool result = false;

            try
            {
                SqlParameter[] parameters = new SqlParameter[] {
                    new SqlParameter("@BestPayAccount", obj.BestPayAccount),
                    new SqlParameter("@CustID", obj.CustID),
                    new SqlParameter("@PW", obj.PW),
                    new SqlParameter("@CreateTime", obj.CreateTime),
                    new SqlParameter("@Status", obj.Status)
                };
                SqlCommand cmd = new SqlCommand(Insert_Sql);
                cmd.CommandType = CommandType.Text;
                cmd.Parameters.AddRange(parameters);

                result = DBUtility.Execute(cmd, DBUtility.BestToneCenterConStr);
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(result);
        }
Example #2
0
        private IList <BesttoneAccount> QueryByWhere(String where)
        {
            IList <BesttoneAccount> list = null;

            String     sql = Select_Sql.Insert(Select_Sql.Length, where);
            SqlCommand cmd = new SqlCommand(sql);

            cmd.CommandType = CommandType.Text;

            DataSet ds = DBUtility.FillData(cmd, DBUtility.BestToneCenterConStr);

            if (ds != null && ds.Tables[0] != null)
            {
                list = new List <BesttoneAccount>();
                foreach (DataRow row in ds.Tables[0].Rows)
                {
                    BesttoneAccount entity = new BesttoneAccount();
                    entity.ID             = Convert.ToInt64(row["ID"]);
                    entity.BestPayAccount = row["BestPayAccount"].ToString();
                    entity.CustID         = row["CustID"].ToString();
                    entity.PW             = row["PW"].ToString();
                    entity.CreateTime     = Convert.ToDateTime(row["CreateTime"]);
                    entity.Status         = Convert.ToInt32(row["Status"]);

                    list.Add(entity);
                }
            }

            return(list);
        }
Example #3
0
        public bool Insert(BesttoneAccount obj)
        {
            bool result = false;
            try
            {
                SqlParameter[] parameters = new SqlParameter[]{
                    new SqlParameter("@BestPayAccount",obj.BestPayAccount),
                    new SqlParameter("@CustID",obj.CustID),
                    new SqlParameter("@PW",obj.PW),
                    new SqlParameter("@CreateTime",obj.CreateTime),
                    new SqlParameter("@Status",obj.Status)
                };
                SqlCommand cmd = new SqlCommand(Insert_Sql);
                cmd.CommandType = CommandType.Text;
                cmd.Parameters.AddRange(parameters);

                result = DBUtility.Execute(cmd, DBUtility.BestToneCenterConStr);
            }
            catch(Exception ex)
            {
                throw ex;
            }

            return result;
        }
Example #4
0
        public BesttoneAccount QueryByID(Int64 id)
        {
            BesttoneAccount obj = null;

            try
            {
                String where = String.Format(" where ID = '{0}'", id);
                IList <BesttoneAccount> list = QueryByWhere(where);
                if (list != null && list.Count > 0)
                {
                    obj = list[0];
                }
            }
            catch (Exception ex) { throw ex; }

            return(obj);
        }
Example #5
0
        public BesttoneAccount QueryByBestAccount(String account)
        {
            BesttoneAccount obj = null;

            try
            {
                String where = String.Format(" where BestPayAccount = '{0}'", account);
                IList <BesttoneAccount> list = QueryByWhere(where);
                if (list != null && list.Count > 0)
                {
                    obj = list[0];
                }
            }
            catch (Exception ex) { throw ex; }

            return(obj);
        }
Example #6
0
        public bool Update(BesttoneAccount obj)
        {
            bool result = false;

            try
            {
                SqlParameter[] parameters = new SqlParameter[] {
                    new SqlParameter("@ID", obj.ID),
                    new SqlParameter("@BestPayAccount", obj.BestPayAccount),
                    new SqlParameter("@CustID", obj.CustID),
                    new SqlParameter("@PW", obj.PW),
                    new SqlParameter("@Status", obj.Status)
                };

                SqlCommand cmd = new SqlCommand(Update_Sql);
                cmd.CommandType = CommandType.Text;
                cmd.Parameters.AddRange(parameters);
                result = DBUtility.Execute(cmd, DBUtility.BestToneCenterConStr);
            }
            catch { }

            return(result);
        }
Example #7
0
        private IList<BesttoneAccount> QueryByWhere(String where)
        {
            IList<BesttoneAccount> list = null;

            String sql = Select_Sql.Insert(Select_Sql.Length, where);
            SqlCommand cmd = new SqlCommand(sql);
            cmd.CommandType = CommandType.Text;

            DataSet ds = DBUtility.FillData(cmd, DBUtility.BestToneCenterConStr);
            if (ds != null && ds.Tables[0] != null)
            {
                list = new List<BesttoneAccount>();
                foreach (DataRow row in ds.Tables[0].Rows)
                {
                    BesttoneAccount entity = new BesttoneAccount();
                    entity.ID = Convert.ToInt64(row["ID"]);
                    entity.BestPayAccount = row["BestPayAccount"].ToString();
                    entity.CustID = row["CustID"].ToString();
                    entity.PW = row["PW"].ToString();
                    entity.CreateTime = Convert.ToDateTime(row["CreateTime"]);
                    entity.Status = Convert.ToInt32(row["Status"]);

                    list.Add(entity);
                }
            }

            return list;
        }
Example #8
0
        public bool Update(BesttoneAccount obj)
        {
            bool result = false;
            try
            {
                SqlParameter[] parameters = new SqlParameter[]{
                    new SqlParameter("@ID",obj.ID),
                    new SqlParameter("@BestPayAccount",obj.BestPayAccount),
                    new SqlParameter("@CustID",obj.CustID),
                    new SqlParameter("@PW",obj.PW),
                    new SqlParameter("@Status",obj.Status)
                };

                SqlCommand cmd = new SqlCommand(Update_Sql);
                cmd.CommandType = CommandType.Text;
                cmd.Parameters.AddRange(parameters);
                result = DBUtility.Execute(cmd, DBUtility.BestToneCenterConStr);
            }
            catch { }

            return result;
        }