二手物品交易网站C#源码


二手物品交易网站,C#源码、带数据库,用户控件、事件委托、
资源截图
代码片段和文件信息
//====================================================================
//      Copyright(C) 2008-2009 ruimingde
//      All rights reserved
//      
//      filename :BookShopOnline.Bll.AdsImgBll
//      description:
//
//      created by 郑瑞明 at 09/20/2008 20:47:32
//=====================================================================
using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using System.Data;

using BookShopOnline.IDal;
using BookShopOnline.Model;
using BookShopOnline.DalFactory;
using BookShopOnline.WebConfig;

namespace BookShopOnline.Bll
{
    public class AdsImgBll
    {
        private static readonly IAdsImg Dal = DataAccess.CreateAdsImg();

        public IList SelectAllAdsImg()
        {
            DataSet ds=Dal.SelectAllAdsImg();
            if (ds == null||ds.Tables==null)
                return null;

            IList adsImgList = new List();
            foreach(DataRow dr in ds.Tables[0].Rows)
            {
                AdsImg adsImg = new AdsImg();
                adsImg.AdsID = Convert.ToInt32(dr[“AdsID“]);
                adsImg.Adstitle = dr[“Adstitle“].ToString();
                adsImg.ImgPath = dr[“ImgPath“].ToString();
                adsImg.PageUrl = dr[“PageUrl“].ToString();
                adsImg.Sort = Convert.ToInt32(dr[“Sort“]);

                adsImgList.Add(adsImg);
            }

            return adsImgList;
        }
    }
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件       1515  2008-09-20 20:54  SecondBookShopSecondBookShopBllAdsImgBll.cs

     文件      14848  2013-03-01 13:11  SecondBookShopSecondBookShopBllinDebugBookShopOnline.Bll.dll

     文件      71168  2013-03-01 13:11  SecondBookShopSecondBookShopBllinDebugBookShopOnline.Bll.pdb

     文件       5632  2013-03-01 13:11  SecondBookShopSecondBookShopBllinDebugBookShopOnline.DalFactory.dll

     文件      15872  2013-03-01 13:11  SecondBookShopSecondBookShopBllinDebugBookShopOnline.DalFactory.pdb

     文件       6656  2013-03-01 13:11  SecondBookShopSecondBookShopBllinDebugBookShopOnline.DBHelper.dll

     文件      17920  2013-03-01 13:11  SecondBookShopSecondBookShopBllinDebugBookShopOnline.DBHelper.pdb

     文件       7168  2013-03-01 13:11  SecondBookShopSecondBookShopBllinDebugBookShopOnline.IDal.dll

     文件       7680  2013-03-01 13:11  SecondBookShopSecondBookShopBllinDebugBookShopOnline.IDal.pdb

     文件      17920  2013-03-01 12:47  SecondBookShopSecondBookShopBllinDebugBookShopOnline.Model.dll

     文件      89600  2013-03-01 12:47  SecondBookShopSecondBookShopBllinDebugBookShopOnline.Model.pdb

     文件      22016  2013-03-01 13:11  SecondBookShopSecondBookShopBllinDebugBookShopOnline.SQLServerDal.dll

     文件      77312  2013-03-01 13:11  SecondBookShopSecondBookShopBllinDebugBookShopOnline.SQLServerDal.pdb

     文件       9728  2013-03-01 13:11  SecondBookShopSecondBookShopBllinDebugBookShopOnline.Utility.dll

     文件      40448  2013-03-01 13:11  SecondBookShopSecondBookShopBllinDebugBookShopOnline.Utility.pdb

     文件       5632  2013-03-01 13:11  SecondBookShopSecondBookShopBllinDebugBookShopOnline.WebConfig.dll

     文件      11776  2013-03-01 13:11  SecondBookShopSecondBookShopBllinDebugBookShopOnline.WebConfig.pdb

     文件      16384  2008-08-15 22:03  SecondBookShopSecondBookShopBllinReleaseBll.dll

     文件      13824  2008-08-15 22:03  SecondBookShopSecondBookShopBllinReleaseBll.pdb

     文件      16384  2008-08-15 22:02  SecondBookShopSecondBookShopBllinReleaseDalFactory.dll

     文件      11776  2008-08-15 22:02  SecondBookShopSecondBookShopBllinReleaseDalFactory.pdb

     文件      20480  2008-08-15 19:15  SecondBookShopSecondBookShopBllinReleaseDBHelper.dll

     文件      17920  2008-08-15 19:15  SecondBookShopSecondBookShopBllinReleaseDBHelper.pdb

     文件      16384  2008-08-15 20:56  SecondBookShopSecondBookShopBllinReleaseIDal.dll

     文件       7680  2008-08-15 20:56  SecondBookShopSecondBookShopBllinReleaseIDal.pdb

     文件      20480  2008-08-15 20:56  SecondBookShopSecondBookShopBllinReleaseModel.dll

     文件      50688  2008-08-15 20:56  SecondBookShopSecondBookShopBllinReleaseModel.pdb

     文件      20480  2008-08-15 22:02  SecondBookShopSecondBookShopBllinReleaseSQLServerDal.dll

     文件      19968  2008-08-15 22:02  SecondBookShopSecondBookShopBllinReleaseSQLServerDal.pdb

     文件      16384  2008-08-15 19:15  SecondBookShopSecondBookShopBllinReleaseWebConfig.dll

............此处省略2625个文件信息

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件举报,一经查实,本站将立刻删除。

发表评论

评论列表(条)