/// <summary>
        /// 获得数据列表
        /// </summary>
        public List <NoName.NetShop.Model.SalesProductModel> GetModelList(string strWhere)
        {
            DataSet ds = dal.GetList(strWhere);
            List <NoName.NetShop.Model.SalesProductModel> modelList = new List <NoName.NetShop.Model.SalesProductModel>();
            int rowsCount = ds.Tables[0].Rows.Count;

            if (rowsCount > 0)
            {
                NoName.NetShop.Model.SalesProductModel model;
                for (int n = 0; n < rowsCount; n++)
                {
                    model = new NoName.NetShop.Model.SalesProductModel();
                    if (ds.Tables[0].Rows[n]["ProductId"].ToString() != "")
                    {
                        model.ProductId = int.Parse(ds.Tables[0].Rows[n]["ProductId"].ToString());
                    }
                    if (ds.Tables[0].Rows[n]["SaleType"].ToString() != "")
                    {
                        model.SaleType = int.Parse(ds.Tables[0].Rows[n]["SaleType"].ToString());
                    }
                    if (ds.Tables[0].Rows[n]["SiteId"].ToString() != "")
                    {
                        model.SiteId = int.Parse(ds.Tables[0].Rows[n]["SiteId"].ToString());
                    }
                    modelList.Add(model);
                }
            }
            return(modelList);
        }
 /// <summary>
 /// 更新一条数据
 /// </summary>
 public void Update(NoName.NetShop.Model.SalesProductModel model)
 {
     dal.Update(model);
 }
 /// <summary>
 /// 增加一条数据
 /// </summary>
 public void Add(NoName.NetShop.Model.SalesProductModel model)
 {
     dal.Add(model);
 }
 /// <summary>
 /// ��������б�
 /// </summary>
 public List<NoName.NetShop.Model.SalesProductModel> GetModelList(string strWhere)
 {
     DataSet ds = dal.GetList(strWhere);
     List<NoName.NetShop.Model.SalesProductModel> modelList = new List<NoName.NetShop.Model.SalesProductModel>();
     int rowsCount = ds.Tables[0].Rows.Count;
     if (rowsCount > 0)
     {
         NoName.NetShop.Model.SalesProductModel model;
         for (int n = 0; n < rowsCount; n++)
         {
             model = new NoName.NetShop.Model.SalesProductModel();
             if(ds.Tables[0].Rows[n]["ProductId"].ToString()!="")
             {
                 model.ProductId=int.Parse(ds.Tables[0].Rows[n]["ProductId"].ToString());
             }
             if(ds.Tables[0].Rows[n]["SaleType"].ToString()!="")
             {
                 model.SaleType=int.Parse(ds.Tables[0].Rows[n]["SaleType"].ToString());
             }
             if(ds.Tables[0].Rows[n]["SiteId"].ToString()!="")
             {
                 model.SiteId=int.Parse(ds.Tables[0].Rows[n]["SiteId"].ToString());
             }
             modelList.Add(model);
         }
     }
     return modelList;
 }