예제 #1
0
 public bool InsertKeyword(Keyword key)
 {
     SqlParameter[] Params = new SqlParameter[]
     {
         new SqlParameter("@Keywords", key.Keywords),
         new SqlParameter("@KeywordType", key.KeywordType),
         //new SqlParameter("@ProductID", key.ProductID),
     };
     return DataProvider.ExecuteNonQuery("sp_InsertKeyword", CommandType.StoredProcedure,
         Params);
 }
예제 #2
0
        public List<Keyword> GetKeywordsList()
        {
            List<Keyword> KeywordsList = null;

            using (DataTable table = DataProvider.ExecuteSelectCommand("sp_ViewAllKeywords", //*Note
                CommandType.StoredProcedure))
            {
                if (table.Rows.Count > 0)
                {
                    KeywordsList = new List<Keyword>();
                    foreach (DataRow row in table.Rows)
                    {
                        Keyword key = new Keyword();
                        key.KeywordID = Convert.ToInt32(row["KeywordID"]);
                        key.Keywords = row["Keywords"].ToString();
                        key.KeywordType = row["KeywordType"].ToString();
                        //key.ProductID = Convert.ToInt32(row["ProductID"]);
                        KeywordsList.Add(key);
                    }
                }
            }
            return KeywordsList;
        }
예제 #3
0
 public bool AddKeyword(Keyword key)
 {
     KeywordHandler myHandler = new KeywordHandler(); return myHandler.InsertKeyword(key);
 }