示例#1
0
        public bool Delete(ContentSection item)
        {
            bool result = false;
            using (StoredProcedure sp = new StoredProcedure("ContentSections_DeleteItem"))
            {
                sp.Params.Add("@ID", System.Data.SqlDbType.Int).Value = item.ID;

                result = sp.ExecuteNonQuery() > 0;
            }
            return result;
        }
示例#2
0
        public int Add(ContentSection item)
        {
            int newID = 0;
            using (StoredProcedure sp = new StoredProcedure("ContentSections_AddItem"))
            {
                sp.Params.Add("@Name", System.Data.SqlDbType.NVarChar, 255).Value = item.Name;

                newID = Convert.ToInt32(sp.ExecuteScalar());
            }
            return newID;
        }
示例#3
0
 public ContentSection GetByID(int id)
 {
     ContentSection item = null;
     using (StoredProcedure sp = new StoredProcedure("ContentSections_GetByID"))
     {
         sp.Params.Add("@ID", System.Data.SqlDbType.Int).Value = id;
         using (SqlDataReader r = (SqlDataReader)sp.ExecuteReader())
         {
             if (r != null && r.Read())
             {
                 item = new ContentSection(r);
             }
         }
     }
     return item;
 }
示例#4
0
        public List<ContentSection> GetAll()
        {
            List<ContentSection> all = new List<ContentSection>();
            using (StoredProcedure sp = new StoredProcedure("ContentSections_GetAll"))
            {
                using (SqlDataReader r = (SqlDataReader)sp.ExecuteReader())
                {
                    if (r != null)
                    {
                        while (r.Read())
                        {
                            ContentSection item = new ContentSection(r);

                            all.Add(item);
                        }
                    }
                }
            }
            return all;
        }