Exemple #1
0
        public Model.PolicyModel GetModel(int id)
        {
            StringBuilder sql = new StringBuilder();

            sql.Append("select * from Policy  where Id=" + id);
            Model.PolicyModel model = new Model.PolicyModel();
            SqlDataReader     dr    = SqlHelper.ExecuteReader(conn, CommandType.Text, sql.ToString());

            if (dr.Read())
            {
                model.Id    = Convert.ToInt32(dr["Id"].ToString());
                model.SId   = Convert.ToInt32(dr["SId"].ToString());
                model.Title = dr["Title"].ToString();
                model.Notes = dr["Notes"].ToString();
                if (dr["Price"] != DBNull.Value)
                {
                    model.Price = Decimal.Parse(dr["Price"].ToString());
                }
                else
                {
                    model.Price = 0;
                }
            }
            return(model);
        }
Exemple #2
0
        public int Update(Model.PolicyModel model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append(" update  Policy set SId=@SId,Title=@Title,Price=@Price,Notes=@Notes where Id=@Id ");
            SqlParameter[] parameters =
            {
                new SqlParameter("@SId",   model.SId),
                new SqlParameter("@Title", model.Title),
                new SqlParameter("@Price", model.Price),
                new SqlParameter("@Notes", model.Notes),
                new SqlParameter("@Id",    model.Id)
            };
            return(SqlHelper.ExecuteNonQuery(conn, CommandType.Text, strSql.ToString(), parameters));
        }
Exemple #3
0
        public int Add(Model.PolicyModel model)
        {
            StringBuilder strSql = new StringBuilder();

            strSql.Append("insert into Policy(SId,Title,Price,Notes) values(");
            strSql.Append("@SId,@Title,@Price,@Notes)");
            SqlParameter[] parameters =
            {
                new SqlParameter("@SId",   model.SId),
                new SqlParameter("@Title", model.Title),
                new SqlParameter("@Price", model.Price),
                new SqlParameter("@Notes", model.Notes)
            };
            return(SqlHelper.ExecuteNonQuery(conn, CommandType.Text, strSql.ToString(), parameters));
        }
Exemple #4
0
        public DataTable GetSupplierList(Model.PolicyModel model)
        {
            StringBuilder sql = new StringBuilder("select * from Policy where SId=" + model.SId);

            return(SqlHelper.ExecuteDataTable(conn, CommandType.Text, sql.ToString()));
        }