Example #1
0
        public static ArrayList SP_10_GetRatingModelIDsList(int categoryTdxID)
        {
            ArrayList ratingModelTdxIDList        = new ArrayList();
            RatingModelTableAdapter taRatingModel = new RatingModelTableAdapter();

            Search.RatingModelDataTable dtRatingModel = taRatingModel.GetRatingModelIDsList(categoryTdxID);
            for (int i = 0; i < dtRatingModel.Rows.Count; i++)
            {
                ratingModelTdxIDList.Add(dtRatingModel.Rows[i]["RatingModelTdxID"].ToString());
            }
            return(ratingModelTdxIDList);
        }
Example #2
0
 public static ArrayList SP_10_GetRatingModelIDsList(int categoryTdxID)
 {
     ArrayList ratingModelTdxIDList = new ArrayList();
     RatingModelTableAdapter taRatingModel = new RatingModelTableAdapter();
     Search.RatingModelDataTable dtRatingModel = taRatingModel.GetRatingModelIDsList(categoryTdxID);
     for (int i = 0; i < dtRatingModel.Rows.Count; i++)
     {
         ratingModelTdxIDList.Add(dtRatingModel.Rows[i]["RatingModelTdxID"].ToString());
     }
     return ratingModelTdxIDList;
 }