实例介绍
基于三层架构的一个餐饮管理系统,应付学校作业用你懂的。
【实例截图】
【核心代码】
4744300845144788687.zip
└── 餐饮管理-三层架构
├── db
│ ├── DBCanTingDataSet.Designer.cs
│ ├── DBCanTingDataSet.xsc
│ ├── DBCanTingDataSet.xsd
│ ├── DBCanTingDataSet.xss
│ ├── DBCanTing_log.LDF
│ └── DBCanTing.mdf
├── 餐厅-管理员
│ ├── db
│ │ ├── DBCanTingDataSet.Designer.cs
│ │ ├── DBCanTingDataSet.xsc
│ │ ├── DBCanTingDataSet.xsd
│ │ ├── DBCanTingDataSet.xss
│ │ ├── DBCanTing_log.LDF
│ │ └── DBCanTing.mdf
│ ├── image
│ │ ├── 1.gif
│ │ ├── 2.gif
│ │ └── 3.gif
│ ├── Model
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Model.dll
│ │ │ │ └── Model.pdb
│ │ │ └── Release
│ │ ├── Food.cs
│ │ ├── FoodType.cs
│ │ ├── GuestFood.cs
│ │ ├── Jiesuan.cs
│ │ ├── Model.csproj
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── Model.csproj.FileListAbsolute.txt
│ │ │ ├── Model.csprojResolveAssemblyReference.cache
│ │ │ ├── Model.dll
│ │ │ ├── Model.pdb
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ └── TempPE
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Room.cs
│ │ ├── User.cs
│ │ └── Waiter.cs
│ ├── 餐厅-管理员
│ │ ├── App.config
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Model.dll
│ │ │ │ ├── Model.pdb
│ │ │ │ ├── 餐厅-管理员BLL.dll
│ │ │ │ ├── 餐厅-管理员BLL.pdb
│ │ │ │ ├── 餐厅-管理员DAL.dll
│ │ │ │ ├── 餐厅-管理员DAL.pdb
│ │ │ │ ├── 餐厅-管理员.exe
│ │ │ │ ├── 餐厅-管理员.exe.config
│ │ │ │ ├── 餐厅-管理员.pdb
│ │ │ │ ├── 餐厅-管理员.vshost.exe
│ │ │ │ ├── 餐厅-管理员.vshost.exe.config
│ │ │ │ └── 餐厅-管理员.vshost.exe.manifest
│ │ │ └── Release
│ │ ├── FormConsume.cs
│ │ ├── FormConsume.Designer.cs
│ │ ├── FormConsume.resx
│ │ ├── FormDesk.cs
│ │ ├── FormDesk.Designer.cs
│ │ ├── FormDesk.resx
│ │ ├── FormDianCan.cs
│ │ ├── FormDianCan.Designer.cs
│ │ ├── FormDianCan.resx
│ │ ├── FormJieZhang.cs
│ │ ├── FormJieZhang.Designer.cs
│ │ ├── FormJieZhang.resx
│ │ ├── FormKaiTai.cs
│ │ ├── FormKaiTai.Designer.cs
│ │ ├── FormKaiTai.resx
│ │ ├── FormLogin.cs
│ │ ├── FormLogin.Designer.cs
│ │ ├── FormLogin.resx
│ │ ├── FormMain.cs
│ │ ├── FormMain.Designer.cs
│ │ ├── FormMain.resx
│ │ ├── FormUser.cs
│ │ ├── FormUser.Designer.cs
│ │ ├── FormUser.resx
│ │ ├── FormWaiter.cs
│ │ ├── FormWaiter.Designer.cs
│ │ ├── FormWaiter.resx
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TempPE
│ │ │ │ └── Properties.Resources.Designer.cs.dll
│ │ │ ├── UI.csproj.FileListAbsolute.txt
│ │ │ ├── UI.csproj.GenerateResource.Cache
│ │ │ ├── UI.csprojResolveAssemblyReference.cache
│ │ │ ├── UI.FormConsume.resources
│ │ │ ├── UI.FormDesk.resources
│ │ │ ├── UI.FormDianCan.resources
│ │ │ ├── UI.FormJieZhang.resources
│ │ │ ├── UI.FormKaiTai.resources
│ │ │ ├── UI.FormLogin.resources
│ │ │ ├── UI.FormMain.resources
│ │ │ ├── UI.FormUser.resources
│ │ │ ├── UI.FormWaiter.resources
│ │ │ ├── UI.Properties.Resources.resources
│ │ │ ├── 餐厅-管理员.csproj.FileListAbsolute.txt
│ │ │ ├── 餐厅-管理员.exe
│ │ │ ├── 餐厅-管理员.pdb
│ │ │ ├── 餐厅-管理员-UI.csproj.FileListAbsolute.txt
│ │ │ ├── 餐厅-管理员-UI.csproj.GenerateResource.Cache
│ │ │ └── 餐厅-管理员-UI.csprojResolveAssemblyReference.cache
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── UI.csproj
│ │ └── UserHelper.cs
│ ├── 餐厅-管理员BLL
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Model.dll
│ │ │ │ ├── Model.pdb
│ │ │ │ ├── 餐厅-管理员BLL.dll
│ │ │ │ ├── 餐厅-管理员BLL.pdb
│ │ │ │ ├── 餐厅-管理员DAL.dll
│ │ │ │ └── 餐厅-管理员DAL.pdb
│ │ │ └── Release
│ │ ├── BLL.csproj
│ │ ├── Class1.cs
│ │ ├── Food.cs
│ │ ├── GuestFood.cs
│ │ ├── Jiesuan.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── BLL.csproj.FileListAbsolute.txt
│ │ │ ├── BLL.csprojResolveAssemblyReference.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TempPE
│ │ │ ├── 餐厅-管理员-BLL.csproj.FileListAbsolute.txt
│ │ │ ├── 餐厅-管理员-BLL.csprojResolveAssemblyReference.cache
│ │ │ ├── 餐厅-管理员BLL.dll
│ │ │ └── 餐厅-管理员BLL.pdb
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Room.cs
│ │ ├── User.cs
│ │ └── Waiter.cs
│ ├── 餐厅-管理员DAL
│ │ ├── bin
│ │ │ ├── Debug
│ │ │ │ ├── Model.dll
│ │ │ │ ├── Model.pdb
│ │ │ │ ├── 餐厅-管理员DAL.dll
│ │ │ │ └── 餐厅-管理员DAL.pdb
│ │ │ └── Release
│ │ ├── Class1.cs
│ │ ├── DAL.csproj
│ │ ├── Food.cs
│ │ ├── GuestFood.cs
│ │ ├── Jiesuan.cs
│ │ ├── obj
│ │ │ └── Debug
│ │ │ ├── DAL.csproj.FileListAbsolute.txt
│ │ │ ├── DAL.csprojResolveAssemblyReference.cache
│ │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ │ ├── TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
│ │ │ ├── TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
│ │ │ ├── TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
│ │ │ ├── TempPE
│ │ │ ├── 餐厅-管理员-DAL.csproj.FileListAbsolute.txt
│ │ │ ├── 餐厅-管理员-DAL.csprojResolveAssemblyReference.cache
│ │ │ ├── 餐厅-管理员DAL.dll
│ │ │ └── 餐厅-管理员DAL.pdb
│ │ ├── Properties
│ │ │ └── AssemblyInfo.cs
│ │ ├── Room.cs
│ │ ├── SqlDbHelper.cs
│ │ ├── User.cs
│ │ └── Waiter.cs
│ ├── 餐厅-管理员.sln
│ └── 餐厅-管理员.v11.suo
└── 餐厅管理系统-客户版
├── -21423101877080.jpg
├── 餐厅管理系统-客户版
│ ├── app.config
│ ├── baseclass
│ │ └── DBConn.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── 餐厅管理系统-客户版.exe
│ │ │ ├── 餐厅管理系统-客户版.exe.config
│ │ │ ├── 餐厅管理系统-客户版.pdb
│ │ │ ├── 餐厅管理系统-客户版.vshost.exe
│ │ │ ├── 餐厅管理系统-客户版.vshost.exe.config
│ │ │ └── 餐厅管理系统-客户版.vshost.exe.manifest
│ │ └── Release
│ ├── dbEatDataSet.xss
│ ├── image
│ │ ├── Dis.jpg
│ │ ├── ms.ico
│ │ ├── 凉.jpg
│ │ ├── 汤.jpg
│ │ ├── 清空.jpg
│ │ ├── 确定.jpg
│ │ ├── 菜.jpg
│ │ └── 食.jpg
│ ├── main.cs
│ ├── main.Designer.cs
│ ├── main.resx
│ ├── obj
│ │ └── x86
│ │ └── Debug
│ │ ├── DesignTimeResolveAssemblyReferences.cache
│ │ ├── DesignTimeResolveAssemblyReferencesInput.cache
│ │ ├── GenerateResource-ResGen.read.1.tlog
│ │ ├── GenerateResource-ResGen.write.1.tlog
│ │ ├── ResolveAssemblyReference.cache
│ │ ├── TempPE
│ │ │ ├── date.dbEatDataSet.Designer.cs.dll
│ │ │ └── dbEatDataSet.Designer.cs.dll
│ │ ├── 餐厅管理系统-客户版.csproj.FileListAbsolute.txt
│ │ ├── 餐厅管理系统-客户版.csproj.GenerateResource.Cache
│ │ ├── 餐厅管理系统-客户版.csprojResolveAssemblyReference.cache
│ │ ├── 餐厅管理系统-客户版.exe
│ │ ├── 餐厅管理系统_客户版.main.resources
│ │ ├── 餐厅管理系统-客户版.pdb
│ │ ├── 餐厅管理系统_客户版.Properties.Resources.resources
│ │ └── 餐厅管理系统_客户版.xfcx.resources
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── xfcx.cs
│ ├── xfcx.Designer.cs
│ ├── xfcx.resx
│ ├── 餐厅管理系统-客户版.csproj
│ └── 餐厅管理系统-客户版.csproj.user
├── 餐厅管理系统-客户版.sln
├── 餐厅管理系统-客户版.suo
└── 餐厅管理系统-客户版.v11.suo
49 directories, 208 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论