嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#酒店管理系统 SQLSERVER
学习用 C#酒店管理系统 SQLSERVER
.
├── C#酒店管理系统 SQLSERVER.rar
└── 酒店管理系统
├── DB
│ ├── HotelManager.mdf
│ └── HotelManager_log.ldf
└── HotelManager
├── DB
│ ├── HotelManager.mdf
│ └── HotelManager_log.ldf
├── HotelManager
│ ├── App.config
│ ├── HotelManager.csproj
│ ├── MainForm.Designer.cs
│ ├── MainForm.cs
│ ├── MainForm.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── RoomSettingForm.Designer.cs
│ ├── RoomSettingForm.cs
│ ├── RoomSettingForm.resx
│ ├── RoomTypeSettingForm.Designer.cs
│ ├── RoomTypeSettingForm.cs
│ ├── RoomTypeSettingForm.resx
│ ├── bin
│ │ └── Debug
│ │ ├── HotelManager.exe
│ │ ├── HotelManager.exe.config
│ │ ├── HotelManager.pdb
│ │ ├── HotelManager.vshost.exe
│ │ ├── HotelManager.vshost.exe.config
│ │ ├── HotelManager.vshost.exe.manifest
│ │ ├── HotelManagerBLL.dll
│ │ ├── HotelManagerBLL.pdb
│ │ ├── HotelManagerDAL.dll
│ │ ├── HotelManagerDAL.pdb
│ │ ├── HotelManagerModels.dll
│ │ ├── HotelManagerModels.pdb
│ │ ├── hotel.ico
│ │ ├── 退出.BMP
│ │ ├── 保存.bmp
│ │ ├── 修改.bmp
│ │ ├── 删除.bmp
│ │ ├── 取消.bmp
│ │ ├── 搜索.bmp
│ │ ├── 新增.bmp
│ │ ├── 计算.bmp
│ │ ├── 上记录.bmp
│ │ ├── 下记录.bmp
│ │ ├── 尾记录.bmp
│ │ ├── 首记录.bmp
│ │ └── 查询选择.bmp
│ └── obj
│ ├── Debug
│ │ ├── HotelManager.MainForm.resources
│ │ ├── HotelManager.Properties.Resources.resources
│ │ ├── HotelManager.RoomSettingForm.resources
│ │ ├── HotelManager.RoomTypeSettingForm.resources
│ │ ├── HotelManager.csproj.FileListAbsolute.txt
│ │ ├── HotelManager.csproj.GenerateResource.Cache
│ │ ├── HotelManager.exe
│ │ ├── HotelManager.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ │ └── Properties.Resources.Designer.cs.dll
│ └── HotelManager.csproj.FileList.txt
├── HotelManager.sln
├── HotelManager.suo
├── HotelManagerBLL
│ ├── HotelManagerBLL.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RoomSettingManager.cs
│ ├── RoomTypeManager.cs
│ ├── bin
│ │ └── Debug
│ │ ├── HotelManagerBLL.dll
│ │ ├── HotelManagerBLL.pdb
│ │ ├── HotelManagerDAL.dll
│ │ ├── HotelManagerDAL.pdb
│ │ ├── HotelManagerModels.dll
│ │ └── HotelManagerModels.pdb
│ └── obj
│ ├── Debug
│ │ ├── HotelManagerBLL.csproj.FileListAbsolute.txt
│ │ ├── HotelManagerBLL.dll
│ │ ├── HotelManagerBLL.pdb
│ │ ├── Refactor
│ │ │ └── HotelManagerBLL.dll
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ └── HotelManagerBLL.csproj.FileList.txt
├── HotelManagerDAL
│ ├── DBHelper.cs
│ ├── HotelManagerDAL.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RoomSettingService.cs
│ ├── RoomTypeService.cs
│ ├── bin
│ │ └── Debug
│ │ ├── HotelManagerDAL.dll
│ │ ├── HotelManagerDAL.pdb
│ │ ├── HotelManagerModels.dll
│ │ └── HotelManagerModels.pdb
│ └── obj
│ ├── Debug
│ │ ├── HotelManagerDAL.csproj.FileListAbsolute.txt
│ │ ├── HotelManagerDAL.dll
│ │ ├── HotelManagerDAL.pdb
│ │ ├── Refactor
│ │ │ └── HotelManagerDAL.dll
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ └── HotelManagerDAL.csproj.FileList.txt
├── HotelManagerModels
│ ├── App.config
│ ├── HotelManagerModels.csproj
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── Room.cs
│ ├── RoomType.cs
│ ├── bin
│ │ └── Debug
│ │ ├── HotelManagerModels.dll
│ │ ├── HotelManagerModels.dll.config
│ │ └── HotelManagerModels.pdb
│ └── obj
│ ├── Debug
│ │ ├── HotelManagerModels.csproj.FileListAbsolute.txt
│ │ ├── HotelManagerModels.dll
│ │ ├── HotelManagerModels.pdb
│ │ ├── Refactor
│ │ │ └── HotelManagerModels.dll
│ │ └── TempPE
│ └── HotelManagerModels.csproj.FileList.txt
├── UpgradeLog.XML
└── _UpgradeReport_Files
├── UpgradeReport.css
├── UpgradeReport.xslt
├── UpgradeReport_Minus.gif
└── UpgradeReport_Plus.gif
37 directories, 110 files