嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
软件综合课程设计报告(C#)
一个使用C#写的多层架构的实例,包括设计报告,非常不错,大家可以试一下
.
├── 张洋程序
│ ├── MyCMS
│ │ ├── BLL
│ │ │ ├── AdminBLL.cs
│ │ │ ├── ArticleBLL.cs
│ │ │ ├── AttachBLL.cs
│ │ │ ├── BLL.csproj
│ │ │ ├── CategoryBLL.cs
│ │ │ ├── CommentBLL.cs
│ │ │ ├── LoveBLL.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── UserBLL.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── BLL.dll
│ │ │ │ ├── BLL.pdb
│ │ │ │ ├── DALFactory.dll
│ │ │ │ ├── DALFactory.pdb
│ │ │ │ ├── IDAL.dll
│ │ │ │ ├── IDAL.pdb
│ │ │ │ ├── Model.dll
│ │ │ │ ├── Model.pdb
│ │ │ │ ├── SQLServerDAL.dll
│ │ │ │ └── SQLServerDAL.pdb
│ │ │ └── obj
│ │ │ ├── BLL.csproj.FileList.txt
│ │ │ └── Debug
│ │ │ ├── BLL.dll
│ │ │ ├── BLL.pdb
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ ├── DALFactory
│ │ │ ├── DALFactory.csproj
│ │ │ ├── DataAccess.cs
│ │ │ ├── DataCache.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── DALFactory.dll
│ │ │ │ ├── DALFactory.pdb
│ │ │ │ ├── IDAL.dll
│ │ │ │ ├── IDAL.pdb
│ │ │ │ ├── Model.dll
│ │ │ │ ├── Model.pdb
│ │ │ │ ├── SQLServerDAL.dll
│ │ │ │ └── SQLServerDAL.pdb
│ │ │ └── obj
│ │ │ ├── DALFactory.csproj.FileList.txt
│ │ │ └── Debug
│ │ │ ├── DALFactory.dll
│ │ │ ├── DALFactory.pdb
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ ├── IDAL
│ │ │ ├── IAdmin.cs
│ │ │ ├── IArticle.cs
│ │ │ ├── IAttach.cs
│ │ │ ├── ICategory.cs
│ │ │ ├── IComment.cs
│ │ │ ├── IDAL.csproj
│ │ │ ├── ILove.cs
│ │ │ ├── IUser.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── IDAL.dll
│ │ │ │ ├── IDAL.pdb
│ │ │ │ ├── Model.dll
│ │ │ │ └── Model.pdb
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── IDAL.dll
│ │ │ │ ├── IDAL.pdb
│ │ │ │ ├── Refactor
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ └── TempPE
│ │ │ └── IDAL.csproj.FileList.txt
│ │ ├── Model
│ │ │ ├── AdminInfo.cs
│ │ │ ├── ArticleInfo.cs
│ │ │ ├── AttachInfo.cs
│ │ │ ├── CategoryInfo.cs
│ │ │ ├── Collection
│ │ │ │ ├── AdminCollection.cs
│ │ │ │ ├── ArticleCollection.cs
│ │ │ │ ├── AttachCollection.cs
│ │ │ │ ├── CategoryCollection.cs
│ │ │ │ ├── CommentCollection.cs
│ │ │ │ ├── LoveCollection.cs
│ │ │ │ └── UserCollection.cs
│ │ │ ├── CommentInfo.cs
│ │ │ ├── LoveInfo.cs
│ │ │ ├── Model.csproj
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── UserInfo.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── Model.dll
│ │ │ │ └── Model.pdb
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── Model.dll
│ │ │ │ ├── Model.pdb
│ │ │ │ ├── Refactor
│ │ │ │ └── TempPE
│ │ │ └── Model.csproj.FileList.txt
│ │ ├── MyCMS.sln
│ │ ├── MyCMS.suo
│ │ ├── SQLServerDAL
│ │ │ ├── AdminDAL.cs
│ │ │ ├── ArticleDAL.cs
│ │ │ ├── AttachDAL.cs
│ │ │ ├── CategoryDAL.cs
│ │ │ ├── CommentDAL.cs
│ │ │ ├── LoveDAL.cs
│ │ │ ├── Properties
│ │ │ │ └── AssemblyInfo.cs
│ │ │ ├── SQLServerDAL.csproj
│ │ │ ├── SQLServerDBHelper.cs
│ │ │ ├── UserDAL.cs
│ │ │ ├── bin
│ │ │ │ └── Debug
│ │ │ │ ├── IDAL.dll
│ │ │ │ ├── IDAL.pdb
│ │ │ │ ├── Model.dll
│ │ │ │ ├── Model.pdb
│ │ │ │ ├── SQLServerDAL.dll
│ │ │ │ └── SQLServerDAL.pdb
│ │ │ └── obj
│ │ │ ├── Debug
│ │ │ │ ├── ResolveAssemblyReference.cache
│ │ │ │ ├── SQLServerDAL.dll
│ │ │ │ ├── SQLServerDAL.pdb
│ │ │ │ └── TempPE
│ │ │ └── SQLServerDAL.csproj.FileList.txt
│ │ └── Web
│ │ ├── App_Data
│ │ ├── Bin
│ │ │ ├── BLL.dll
│ │ │ ├── BLL.pdb
│ │ │ ├── DALFactory.dll
│ │ │ ├── DALFactory.pdb
│ │ │ ├── IDAL.dll
│ │ │ ├── IDAL.pdb
│ │ │ ├── Model.dll
│ │ │ ├── Model.pdb
│ │ │ ├── SQLServerDAL.dll
│ │ │ └── SQLServerDAL.pdb
│ │ ├── Default.aspx
│ │ ├── Default.aspx.cs
│ │ ├── Register.aspx
│ │ ├── Register.aspx.cs
│ │ ├── Web.Config
│ │ ├── attachment
│ │ ├── cms
│ │ │ └── Admin
│ │ ├── flash
│ │ ├── images
│ │ │ ├── head_category.gif
│ │ │ ├── head_favorites.gif
│ │ │ ├── head_fresh.gif
│ │ │ ├── head_hot.gif
│ │ │ └── logo.gif
│ │ ├── js
│ │ ├── manage
│ │ │ ├── Default.aspx
│ │ │ ├── Default.aspx.cs
│ │ │ ├── images
│ │ │ │ ├── head_admin.gif
│ │ │ │ ├── head_article.gif
│ │ │ │ ├── head_user.gif
│ │ │ │ └── logo.gif
│ │ │ └── style
│ │ │ └── basic.css
│ │ ├── master
│ │ │ ├── main.master
│ │ │ └── main.master.cs
│ │ ├── pics
│ │ └── style
│ │ ├── basic.css
│ │ ├── default.css
│ │ ├── form.css
│ │ └── register.css
│ ├── ~$综合课程设计.doc
│ └── 软件综合课程设计.doc
└── 软件综合课程设计报告(C#)_张洋程序.rar
57 directories, 135 files