Exemple #1
0
        /// <summary>
        /// 更新一条数据
        /// </summary>
        public void Update(LPWeb.Model.Template_Email_Recipients model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("update Template_Email_Recipients set ");
            strSql.Append("TemplRecipientId=@TemplRecipientId,");
            strSql.Append("TemplEmailId=@TemplEmailId,");
            strSql.Append("EmailAddr=@EmailAddr,");
            strSql.Append("UserRoles=@UserRoles,");
            strSql.Append("ContactRoles=@ContactRoles,");
            strSql.Append("RecipientType=@RecipientType,");
            strSql.Append("TaskOwner=@TaskOwner");
            strSql.Append(" where TemplRecipientId=@TemplRecipientId ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@TemplRecipientId", SqlDbType.Int,        4),
                new SqlParameter("@TemplEmailId",     SqlDbType.Int,        4),
                new SqlParameter("@EmailAddr",        SqlDbType.NVarChar, 255),
                new SqlParameter("@UserRoles",        SqlDbType.NVarChar, 255),
                new SqlParameter("@ContactRoles",     SqlDbType.NVarChar, 255),
                new SqlParameter("@RecipientType",    SqlDbType.NVarChar,  10),
                new SqlParameter("@TaskOwner",        SqlDbType.Bit, 1)
            };
            parameters[0].Value = model.TemplRecipientId;
            parameters[1].Value = model.TemplEmailId;
            parameters[2].Value = model.EmailAddr;
            parameters[3].Value = model.UserRoles;
            parameters[4].Value = model.ContactRoles;
            parameters[5].Value = model.RecipientType;
            parameters[6].Value = model.TaskOwner;

            DbHelperSQL.ExecuteSql(strSql.ToString(), parameters);
        }
Exemple #2
0
        /// <summary>
        /// 得到一个对象实体
        /// </summary>
        public LPWeb.Model.Template_Email_Recipients GetModel(int TemplRecipientId)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("select  top 1 TemplRecipientId,TemplEmailId,EmailAddr,UserRoles,ContactRoles,RecipientType,TaskOwner from Template_Email_Recipients ");
            strSql.Append(" where TemplRecipientId=@TemplRecipientId ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@TemplRecipientId", SqlDbType.Int, 4)
            };
            parameters[0].Value = TemplRecipientId;

            LPWeb.Model.Template_Email_Recipients model = new LPWeb.Model.Template_Email_Recipients();
            DataSet ds = DbHelperSQL.Query(strSql.ToString(), parameters);

            if (ds.Tables[0].Rows.Count > 0)
            {
                if (ds.Tables[0].Rows[0]["TemplRecipientId"].ToString() != "")
                {
                    model.TemplRecipientId = int.Parse(ds.Tables[0].Rows[0]["TemplRecipientId"].ToString());
                }
                if (ds.Tables[0].Rows[0]["TemplEmailId"].ToString() != "")
                {
                    model.TemplEmailId = int.Parse(ds.Tables[0].Rows[0]["TemplEmailId"].ToString());
                }
                model.EmailAddr     = ds.Tables[0].Rows[0]["EmailAddr"].ToString();
                model.UserRoles     = ds.Tables[0].Rows[0]["UserRoles"].ToString();
                model.ContactRoles  = ds.Tables[0].Rows[0]["ContactRoles"].ToString();
                model.RecipientType = ds.Tables[0].Rows[0]["RecipientType"].ToString();
                if (ds.Tables[0].Rows[0]["TaskOwner"].ToString() != "")
                {
                    if ((ds.Tables[0].Rows[0]["TaskOwner"].ToString() == "1") || (ds.Tables[0].Rows[0]["TaskOwner"].ToString().ToLower() == "true"))
                    {
                        model.TaskOwner = true;
                    }
                    else
                    {
                        model.TaskOwner = false;
                    }
                }
                return(model);
            }
            else
            {
                return(null);
            }
        }
Exemple #3
0
        /// <summary>
        /// 增加一条数据
        /// </summary>
        public int Add(LPWeb.Model.Template_Email_Recipients model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into Template_Email_Recipients(");
            strSql.Append("TemplEmailId,EmailAddr,UserRoles,ContactRoles,RecipientType,TaskOwner)");
            strSql.Append(" values (");
            strSql.Append("@TemplEmailId,@EmailAddr,@UserRoles,@ContactRoles,@RecipientType,@TaskOwner)");
            strSql.Append(";select @@IDENTITY");
            SqlParameter[] parameters =
            {
                new SqlParameter("@TemplEmailId",  SqlDbType.Int,        4),
                new SqlParameter("@EmailAddr",     SqlDbType.NVarChar, 255),
                new SqlParameter("@UserRoles",     SqlDbType.NVarChar, 255),
                new SqlParameter("@ContactRoles",  SqlDbType.NVarChar, 255),
                new SqlParameter("@RecipientType", SqlDbType.NVarChar,  10),
                new SqlParameter("@TaskOwner",     SqlDbType.Bit, 1)
            };
            parameters[0].Value = model.TemplEmailId;
            parameters[1].Value = model.EmailAddr;
            parameters[2].Value = model.UserRoles;
            parameters[3].Value = model.ContactRoles;
            parameters[4].Value = model.RecipientType;
            parameters[5].Value = model.TaskOwner;

            object obj = DbHelperSQL.GetSingle(strSql.ToString(), parameters);

            if (obj == null)
            {
                return(1);
            }
            else
            {
                return(Convert.ToInt32(obj));
            }
        }