实例介绍
这个项目是学完北大青鸟S2的.NET课程后做的项目,用到了S2.NET所学知识。比如三层结构
【实例截图】
【核心代码】
4744300845401664021.rar
└── Restaurant
├── data
│ ├── Restaurant_log.ldf
│ └── Restaurant.mdf
├── RestaurantBll
│ ├── bin
│ │ └── Debug
│ │ ├── RestaurantBll.dll
│ │ ├── RestaurantBll.pdb
│ │ ├── RestaurantDal.dll
│ │ ├── RestaurantDalFactory.dll
│ │ ├── RestaurantDalFactory.pdb
│ │ ├── RestaurantDal.pdb
│ │ ├── RestaurantIDal.dll
│ │ ├── RestaurantIDal.pdb
│ │ ├── RestaurantModels.dll
│ │ └── RestaurantModels.pdb
│ ├── ConsumabledManager.cs
│ ├── ConsumableManager.cs
│ ├── ConsumableRecordManager.cs
│ ├── ConsumableTypeManager.cs
│ ├── ConsumedMealTableManager.cs
│ ├── CountMoneyStandarManager.cs
│ ├── EmployeeManager.cs
│ ├── EmployeeTypeManager.cs
│ ├── MealTableManager.cs
│ ├── MealTableStateManager.cs
│ ├── MealTableTypeManager.cs
│ ├── MemberLevelManager.cs
│ ├── MemberManager.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ │ └── RestaurantBll.dll
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── RestaurantBll.dll
│ │ │ ├── RestaurantBll.pdb
│ │ │ └── TempPE
│ │ └── RestaurantBll.csproj.FileList.txt
│ ├── OperatorManager.cs
│ ├── OrderManager.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── vssver2.scc
│ ├── RestaurantBll.csproj
│ └── vssver2.scc
├── RestaurantDal
│ ├── Access
│ │ ├── ConsumabledService.cs
│ │ ├── ConsumableRecordService.cs
│ │ ├── ConsumableService.cs
│ │ ├── ConsumableTypeService.cs
│ │ ├── ConsumedMealTableService.cs
│ │ ├── CountMoneyStandardService.cs
│ │ ├── EmployeeService.cs
│ │ ├── EmployeeTypeService.cs
│ │ ├── MealTableService.cs
│ │ ├── MealTableStateService.cs
│ │ ├── MealTableTyppeService.cs
│ │ ├── MemberService.cs
│ │ ├── OrderService.cs
│ │ └── vssver2.scc
│ ├── bin
│ │ └── Debug
│ │ ├── RestaurantDal.dll
│ │ ├── RestaurantDal.pdb
│ │ ├── RestaurantIDal.dll
│ │ ├── RestaurantIDal.pdb
│ │ ├── RestaurantModels.dll
│ │ └── RestaurantModels.pdb
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ │ └── RestaurantDal.dll
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── RestaurantDal.dll
│ │ │ ├── RestaurantDal.pdb
│ │ │ └── TempPE
│ │ └── RestaurantDal.csproj.FileList.txt
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── vssver2.scc
│ ├── RestaurantDal.csproj
│ ├── SqlServer
│ │ ├── ConsumabledService.cs
│ │ ├── ConsumableRecordService.cs
│ │ ├── ConsumableService.cs
│ │ ├── ConsumableTypeService.cs
│ │ ├── ConsumedMealTableService.cs
│ │ ├── CountMoneyStandardService.cs
│ │ ├── EmployeeService.cs
│ │ ├── EmployeeTypeService.cs
│ │ ├── MealTableService.cs
│ │ ├── MealTableStateService.cs
│ │ ├── MealTableTyppeService.cs
│ │ ├── MemberLevelService.cs
│ │ ├── MemberService.cs
│ │ ├── OperatorService.cs
│ │ ├── OrderService.cs
│ │ └── vssver2.scc
│ └── vssver2.scc
├── RestaurantDalFactory
│ ├── AbstracterDALFactory.cs
│ ├── AccessDALFactory.cs
│ ├── bin
│ │ └── Debug
│ │ ├── RestaurantDal.dll
│ │ ├── RestaurantDalFactory.dll
│ │ ├── RestaurantDalFactory.pdb
│ │ ├── RestaurantDal.pdb
│ │ ├── RestaurantIDal.dll
│ │ ├── RestaurantIDal.pdb
│ │ ├── RestaurantModels.dll
│ │ └── RestaurantModels.pdb
│ ├── ClassDiagram1.cd
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ │ └── RestaurantDalFactory.dll
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── RestaurantDalFactory.dll
│ │ │ ├── RestaurantDalFactory.pdb
│ │ │ └── TempPE
│ │ └── RestaurantDalFactory.csproj.FileList.txt
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── vssver2.scc
│ ├── RestaurantDalFactory.csproj
│ ├── SqlDALFactory.cs
│ └── vssver2.scc
├── RestaurantIDal
│ ├── bin
│ │ └── Debug
│ │ ├── RestaurantIDal.dll
│ │ ├── RestaurantIDal.pdb
│ │ ├── RestaurantModels.dll
│ │ └── RestaurantModels.pdb
│ ├── IConsumabledService.cs
│ ├── IConsumableRecordService.cs
│ ├── IConsumableService.cs
│ ├── IConsumableTypeService.cs
│ ├── IConsumedMealTableService.cs
│ ├── ICountMoneyStandardService.cs
│ ├── IEmployeeService.cs
│ ├── IEmployeeTypeService.cs
│ ├── IMealTableService.cs
│ ├── IMealTableStateService.cs
│ ├── IMealTableTypeService.cs
│ ├── IMemberLevelService.cs
│ ├── IMemberService.cs
│ ├── IOperatorService.cs
│ ├── IOrderService.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ │ └── RestaurantIDal.dll
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── RestaurantIDal.dll
│ │ │ ├── RestaurantIDal.pdb
│ │ │ └── TempPE
│ │ └── RestaurantIDal.csproj.FileList.txt
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── vssver2.scc
│ ├── RestaurantIDal.csproj
│ └── vssver2.scc
├── RestaurantModels
│ ├── bin
│ │ └── Debug
│ │ ├── RestaurantModels.dll
│ │ └── RestaurantModels.pdb
│ ├── Consumable.cs
│ ├── Consumabled.cs
│ ├── ConsumableRecord.cs
│ ├── ConsumableType.cs
│ ├── ConsumedMealTable.cs
│ ├── CountMoneyStandard.cs
│ ├── Employee.cs
│ ├── EmployeeType.cs
│ ├── MealTable.cs
│ ├── MealTableState.cs
│ ├── MealTableType.cs
│ ├── Member.cs
│ ├── MemberLevel.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ │ └── RestaurantModels.dll
│ │ │ ├── RestaurantModels.dll
│ │ │ ├── RestaurantModels.pdb
│ │ │ └── TempPE
│ │ └── RestaurantModels.csproj.FileList.txt
│ ├── Operator.cs
│ ├── Order.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ └── vssver2.scc
│ ├── RestaurantModels.csproj
│ └── vssver2.scc
├── Restaurant.sln
├── Restaurant.suo
├── RestaurantUI
│ ├── AddAccountForm.cs
│ ├── AddAccountForm.Designer.cs
│ ├── AddAccountForm.resx
│ ├── AddConsumableForm.cs
│ ├── AddConsumableForm.Designer.cs
│ ├── AddConsumableForm.resx
│ ├── AddConsumableTypeForm.cs
│ ├── AddConsumableTypeForm.Designer.cs
│ ├── AddConsumableTypeForm.resx
│ ├── AddCountMoneyStandardForm.cs
│ ├── AddCountMoneyStandardForm.Designer.cs
│ ├── AddCountMoneyStandardForm.resx
│ ├── AddEmployeeForm.cs
│ ├── AddEmployeeForm.Designer.cs
│ ├── AddEmployeeForm.resx
│ ├── AddEmployeeTypeForm.cs
│ ├── AddEmployeeTypeForm.Designer.cs
│ ├── AddEmployeeTypeForm.resx
│ ├── AddMealTable.cs
│ ├── AddMealTable.Designer.cs
│ ├── AddMealTable.resx
│ ├── AddMemberForm.cs
│ ├── AddMemberForm.Designer.cs
│ ├── AddMemberForm.resx
│ ├── AddMemberLevelForm.cs
│ ├── AddMemberLevelForm.Designer.cs
│ ├── AddMemberLevelForm.resx
│ ├── AddOperatorForm.cs
│ ├── AddOperatorForm.Designer.cs
│ ├── AddOperatorForm.resx
│ ├── AddRoomTypeForm.cs
│ ├── AddRoomTypeForm.Designer.cs
│ ├── AddRoomTypeForm.resx
│ ├── App.config
│ ├── BillManagerForm.cs
│ ├── BillManagerForm.Designer.cs
│ ├── BillManagerForm.resx
│ ├── bin
│ │ └── Debug
│ │ ├── DevComponents.DotNetBar2.dll
│ │ ├── IrisSkin2.dll
│ │ ├── RestaurantBll.dll
│ │ ├── RestaurantBll.pdb
│ │ ├── RestaurantDal.dll
│ │ ├── RestaurantDalFactory.dll
│ │ ├── RestaurantDalFactory.pdb
│ │ ├── RestaurantDal.pdb
│ │ ├── RestaurantIDal.dll
│ │ ├── RestaurantIDal.pdb
│ │ ├── RestaurantModels.dll
│ │ ├── RestaurantModels.pdb
│ │ ├── RestaurantUI.exe
│ │ ├── RestaurantUI.exe.config
│ │ ├── RestaurantUI.pdb
│ │ ├── RestaurantUI.vshost.exe
│ │ └── RestaurantUI.vshost.exe.config
│ ├── BusinessSearchForm.cs
│ ├── BusinessSearchForm.Designer.cs
│ ├── BusinessSearchForm.resx
│ ├── CashAccount.cs
│ ├── CashAccount.Designer.cs
│ ├── CashAccount.resx
│ ├── ChangeTableForm.cs
│ ├── ChangeTableForm.Designer.cs
│ ├── ChangeTableForm.resx
│ ├── ChangeTableStateForm.cs
│ ├── ChangeTableStateForm.Designer.cs
│ ├── ChangeTableStateForm.resx
│ ├── Common.cs
│ ├── ConsumabledManagerForm.cs
│ ├── ConsumabledManagerForm.Designer.cs
│ ├── ConsumabledManagerForm.resx
│ ├── LoginForm.cs
│ ├── LoginForm.Designer.cs
│ ├── LoginForm.resx
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── MemberConsumeManagerForm.cs
│ ├── MemberConsumeManagerForm.Designer.cs
│ ├── MemberConsumeManagerForm.resx
│ ├── MemberForm.cs
│ ├── MemberForm.Designer.cs
│ ├── MemberForm.resx
│ ├── MoreEngageForm.cs
│ ├── MoreEngageForm.designer.cs
│ ├── MoreEngageForm.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ ├── RestaurantUI.AddAccountForm.resources
│ │ │ ├── RestaurantUI.AddConsumableForm.resources
│ │ │ ├── RestaurantUI.AddConsumableTypeForm.resources
│ │ │ ├── RestaurantUI.AddCountMoneyStandardForm.resources
│ │ │ ├── RestaurantUI.AddEmployeeForm.resources
│ │ │ ├── RestaurantUI.AddEmployeeTypeForm.resources
│ │ │ ├── RestaurantUI.AddMealTable.resources
│ │ │ ├── RestaurantUI.AddMemberForm.resources
│ │ │ ├── RestaurantUI.AddMemberLevelForm.resources
│ │ │ ├── RestaurantUI.AddOperatorForm.resources
│ │ │ ├── RestaurantUI.AddRoomTypeForm.resources
│ │ │ ├── RestaurantUI.BillManagerForm.resources
│ │ │ ├── RestaurantUI.BusinessSearchForm.resources
│ │ │ ├── RestaurantUI.CashAccount.resources
│ │ │ ├── RestaurantUI.ChangeTableForm.resources
│ │ │ ├── RestaurantUI.ChangeTableStateForm.resources
│ │ │ ├── RestaurantUI.ConsumabledManagerForm.resources
│ │ │ ├── RestaurantUI.csproj.GenerateResource.Cache
│ │ │ ├── RestaurantUI.exe
│ │ │ ├── RestaurantUI.LoginForm.resources
│ │ │ ├── RestaurantUI.MainForm.resources
│ │ │ ├── RestaurantUI.MemberConsumeManagerForm.resources
│ │ │ ├── RestaurantUI.MemberForm.resources
│ │ │ ├── RestaurantUI.MoreEngageForm.resources
│ │ │ ├── RestaurantUI.OrderManagerForm.resources
│ │ │ ├── RestaurantUI.pdb
│ │ │ ├── RestaurantUI.ProfitsSearchForm.resources
│ │ │ ├── RestaurantUI.Properties.Resources.resources
│ │ │ ├── RestaurantUI.SelfEngageForm.resources
│ │ │ ├── RestaurantUI.StartAccount.resources
│ │ │ ├── RestaurantUI.SystemSet.resources
│ │ │ ├── RestaurantUI.TableSaleManagerForm.resources
│ │ │ ├── RestaurantUI.UpdateConsumableForm.resources
│ │ │ ├── RestaurantUI.UpdateConsumableTypeForm.resources
│ │ │ ├── RestaurantUI.UpdateConsumedRemarkForm.resources
│ │ │ ├── RestaurantUI.UpdateCountMoneyStandsrdForm.resources
│ │ │ ├── RestaurantUI.UpdateEmployeeForm.resources
│ │ │ ├── RestaurantUI.UpdateEmployeeTypeForm.resources
│ │ │ ├── RestaurantUI.UpdateMealTableForm.resources
│ │ │ ├── RestaurantUI.updateMemberForm.resources
│ │ │ ├── RestaurantUI.UpdateMemberLevelForm.resources
│ │ │ ├── RestaurantUI.UpdateOperatorForm.resources
│ │ │ ├── RestaurantUI.UpdateOrderForm.resources
│ │ │ ├── RestaurantUI.UpdatePwdForm.resources
│ │ │ ├── RestaurantUI.UpdateRoomType.resources
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── RestaurantUI.csproj.FileList.txt
│ ├── OrderManagerForm.cs
│ ├── OrderManagerForm.Designer.cs
│ ├── OrderManagerForm.resx
│ ├── ProfitsSearchForm.cs
│ ├── ProfitsSearchForm.Designer.cs
│ ├── ProfitsSearchForm.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ ├── Settings.settings
│ │ └── vssver2.scc
│ ├── Resources
│ │ ├── 20071121205153903.jpg
│ │ ├── add.jpg
│ │ ├── Arrive.jpg
│ │ ├── delete.jpg
│ │ ├── EdmitOrder.bmp
│ │ ├── genghuan.bmp
│ │ ├── guolv.jpg
│ │ ├── into.jpg
│ │ ├── many.jpg
│ │ ├── muster.jpg
│ │ ├── panMain.jpg
│ │ ├── pass.jpg
│ │ ├── pinter.jpg
│ │ ├── putout.jpg
│ │ ├── renew.jpg
│ │ ├── Search.jpg
│ │ ├── select.bmp
│ │ ├── select.jpg
│ │ ├── shanchu.jpg
│ │ ├── Single.jpg
│ │ ├── Snap10.gif
│ │ ├── Snap10.jpg
│ │ ├── Snap11.gif
│ │ ├── Snap12.gif
│ │ ├── Snap14.gif
│ │ ├── Snap15.gif
│ │ ├── Snap16.gif
│ │ ├── Snap1.gif
│ │ ├── Snap1.jpg
│ │ ├── Snap2.jpg
│ │ ├── Snap3.gif
│ │ ├── Snap3.jpg
│ │ ├── Snap51.gif
│ │ ├── Snap52.gif
│ │ ├── Snap53.gif
│ │ ├── Snap5.gif
│ │ ├── Snap6.jpg
│ │ ├── Snap7.jpg
│ │ ├── Snap8.gif
│ │ ├── Snap8.jpg
│ │ ├── Snap9.gif
│ │ ├── Snap9.jpg
│ │ ├── stopUSed.bmp
│ │ ├── stopUSed.jpg
│ │ ├── Thumbs.db
│ │ ├── update.jpg
│ │ ├── vssver2.scc
│ │ ├── white1.jpg
│ │ ├── white.jpg
│ │ ├── zhuanzhang.jpg
│ │ ├── 会员管理.jpg
│ │ ├── 修改员工.JPG
│ │ ├── 删除员工.JPG
│ │ ├── 增加员工.JPG
│ │ ├── 增加消费.jpg
│ │ ├── 宾客结账.jpg
│ │ ├── 开单1.jpg
│ │ ├── 开单.jpg
│ │ ├── 查找.JPG
│ │ ├── 空.JPG
│ │ ├── 系统设置.jpg
│ │ ├── 营业管理.jpg
│ │ └── 预定管理.jpg
│ ├── RestaurantUI.csproj
│ ├── SelfEngageForm.cs
│ ├── SelfEngageForm.designer.cs
│ ├── SelfEngageForm.resx
│ ├── StartAccount.cs
│ ├── StartAccount.Designer.cs
│ ├── StartAccount.resx
│ ├── SystemSet.cs
│ ├── SystemSet.Designer.cs
│ ├── SystemSet.resx
│ ├── TableSaleManagerForm.cs
│ ├── TableSaleManagerForm.Designer.cs
│ ├── TableSaleManagerForm.resx
│ ├── UpdateConsumableForm.cs
│ ├── UpdateConsumableForm.Designer.cs
│ ├── UpdateConsumableForm.resx
│ ├── UpdateConsumableTypeForm.cs
│ ├── UpdateConsumableTypeForm.Designer.cs
│ ├── UpdateConsumableTypeForm.resx
│ ├── UpdateConsumedRemarkForm.cs
│ ├── UpdateConsumedRemarkForm.Designer.cs
│ ├── UpdateConsumedRemarkForm.resx
│ ├── UpdateCountMoneyStandsrdForm.cs
│ ├── UpdateCountMoneyStandsrdForm.Designer.cs
│ ├── UpdateCountMoneyStandsrdForm.resx
│ ├── UpdateEmployeeForm.cs
│ ├── UpdateEmployeeForm.Designer.cs
│ ├── UpdateEmployeeForm.resx
│ ├── UpdateEmployeeTypeForm.cs
│ ├── UpdateEmployeeTypeForm.Designer.cs
│ ├── UpdateEmployeeTypeForm.resx
│ ├── UpdateMealTableForm.cs
│ ├── UpdateMealTableForm.Designer.cs
│ ├── UpdateMealTableForm.resx
│ ├── updateMemberForm.cs
│ ├── updateMemberForm.Designer.cs
│ ├── updateMemberForm.resx
│ ├── UpdateMemberLevelForm.cs
│ ├── UpdateMemberLevelForm.Designer.cs
│ ├── UpdateMemberLevelForm.resx
│ ├── UpdateOperatorForm.cs
│ ├── UpdateOperatorForm.Designer.cs
│ ├── UpdateOperatorForm.resx
│ ├── UpdateOrderForm.cs
│ ├── UpdateOrderForm.Designer.cs
│ ├── UpdateOrderForm.resx
│ ├── UpdatePwdForm.cs
│ ├── UpdatePwdForm.Designer.cs
│ ├── UpdatePwdForm.resx
│ ├── UpdateRoomType.cs
│ ├── UpdateRoomType.Designer.cs
│ ├── UpdateRoomType.resx
│ ├── ve-14A.tmp
│ └── vssver2.scc
├── Restaurant.vssscc
├── vssver2.scc
└── 皮肤
├── DeepCyan.ssk
├── Desktop_1.ini
├── DiamondBlue.ssk
├── EighteenColor1.ssk
├── EmeraldColor3.ssk
├── 库黑一族.ssk
└── 系统预设.ssk
54 directories, 429 files
标签:
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论