【例子介绍】仿美萍餐饮管理系统(C#)
为了课程考试作的一个项目.采用三层结构,只用了一个开头.后来发现太复杂,就放弃而去作人事管理.内带数据库和写好的存储过程,如果有需要原版数据库可以联系我.(申明:本程序只当教育研究,版权归原公司所有)
【相关图片】
【源码结构】
文件清单
└── project-beat
├── BusinessLayer
│ ├── bin
│ │ └── Debug
│ │ ├── BusinessLayer.dll
│ │ ├── BusinessLayer.pdb
│ │ ├── DataAccess.dll
│ │ ├── DataAccess.pdb
│ │ ├── Entity.dll
│ │ └── Entity.pdb
│ ├── BLL_Consume.cs
│ ├── Bll_Material.cs
│ ├── Bll_OpTable.cs
│ ├── BLL_RoomType.cs
│ ├── Bll_SjTable.cs
│ ├── BLL_State.cs
│ ├── BLL_tableState.cs
│ ├── BLL_waiter.cs
│ ├── Bll_WaiterLevel.cs
│ ├── Bll_xfb.cs
│ ├── BusinessLayer.csproj
│ ├── ConverString.cs
│ ├── obj
│ │ ├── BusinessLayer.csproj.FileList.txt
│ │ └── Debug
│ │ ├── BusinessLayer.dll
│ │ ├── BusinessLayer.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ └── Properties
│ └── AssemblyInfo.cs
├── cysystem_Data.MDF
├── cysystem_Log.LDF
├── DataAccess
│ ├── App.config
│ ├── bin
│ │ └── Debug
│ │ ├── DataAccess.dll
│ │ ├── DataAccess.dll.config
│ │ └── DataAccess.pdb
│ ├── DAbase.cs
│ ├── DataAccess.csproj
│ ├── obj
│ │ ├── DataAccess.csproj.FileList.txt
│ │ └── Debug
│ │ ├── DataAccess.dll
│ │ ├── DataAccess.pdb
│ │ ├── Refactor
│ │ └── TempPE
│ └── Properties
│ └── AssemblyInfo.cs
├── Entity
│ ├── bin
│ │ └── Debug
│ │ ├── Entity.dll
│ │ └── Entity.pdb
│ ├── Consume.cs
│ ├── Emploee.cs
│ ├── Entity.csproj
│ ├── leftZt.cs
│ ├── MaterailLb.cs
│ ├── material.cs
│ ├── obj
│ │ ├── Debug
│ │ │ ├── Entity.dll
│ │ │ ├── Entity.pdb
│ │ │ ├── Refactor
│ │ │ └── TempPE
│ │ └── Entity.csproj.FileList.txt
│ ├── OpTable.cs
│ ├── Properties
│ │ └── AssemblyInfo.cs
│ ├── RoomType.cs
│ ├── SjTable.cs
│ ├── State.cs
│ ├── tableState.cs
│ ├── Vip.cs
│ ├── VipLevel.cs
│ ├── Waiter.cs
│ ├── WaiterLevel.cs
│ └── Xfb.cs
├── project-beat
│ ├── App.config
│ ├── bin
│ │ └── Debug
│ │ ├── BusinessLayer.dll
│ │ ├── BusinessLayer.pdb
│ │ ├── DataAccess.dll
│ │ ├── DataAccess.pdb
│ │ ├── DevComponents.DotNetBar2.dll
│ │ ├── DotNetMagic2005.dll
│ │ ├── Entity.dll
│ │ ├── Entity.pdb
│ │ ├── project-beat.exe
│ │ ├── project-beat.exe.config
│ │ ├── project-beat.pdb
│ │ ├── project-beat.vshost.exe
│ │ └── project-beat.vshost.exe.config
│ ├── ClassDiagram1.cd
│ ├── ClassDiagram2.cd
│ ├── ClassDiagram3.cd
│ ├── ConstiStart_Form.cs
│ ├── ConstiStart_Form.Designer.cs
│ ├── ConstiStart_Form.resx
│ ├── Cpbz_Form.cs
│ ├── Cpbz_Form.Designer.cs
│ ├── Cpbz_Form.resx
│ ├── InsertOp_Form.cs
│ ├── InsertOp_Form.Designer.cs
│ ├── InsertOp_Form.resx
│ ├── InsertRoomType_Form.cs
│ ├── InsertRoomType_Form.Designer.cs
│ ├── InsertRoomType_Form.resx
│ ├── InsertWaiter_Form.cs
│ ├── InsertWaiter_Form.Designer.cs
│ ├── InsertWaiter_Form.resx
│ ├── InsertWaiterLevel_Form.cs
│ ├── InsertWaiterLevel_Form.Designer.cs
│ ├── InsertWaiterLevel_Form.resx
│ ├── Jz_Form.cs
│ ├── Jz_Form.Designer.cs
│ ├── Jz_Form.resx
│ ├── MainForm.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.resx
│ ├── obj
│ │ ├── Debug
│ │ │ ├── project_beat.ConstiStart_Form.resources
│ │ │ ├── project_beat.Cpbz_Form.resources
│ │ │ ├── project-beat.csproj.GenerateResource.Cache
│ │ │ ├── project-beat.exe
│ │ │ ├── project_beat.InsertOp_Form.resources
│ │ │ ├── project_beat.InsertRoomType_Form.resources
│ │ │ ├── project_beat.InsertWaiter_Form.resources
│ │ │ ├── project_beat.InsertWaiterLevel_Form.resources
│ │ │ ├── project_beat.Jz_Form.resources
│ │ │ ├── project_beat.MainForm.resources
│ │ │ ├── project-beat.pdb
│ │ │ ├── project_beat.Properties.Resources.resources
│ │ │ ├── project_beat.SystemSet_Form.resources
│ │ │ ├── project_beat.TableState_Form.resources
│ │ │ ├── project_beat.TableStateSet_Form.resources
│ │ │ ├── project_beat.Zjxf_Form.resources
│ │ │ ├── Refactor
│ │ │ ├── ResolveAssemblyReference.cache
│ │ │ └── TempPE
│ │ │ └── Properties.Resources.Designer.cs.dll
│ │ └── project-beat.csproj.FileList.txt
│ ├── Program.cs
│ ├── project-beat.csproj
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Resources
│ │ ├── annu.PNG
│ │ ├── bgjz.PNG
│ │ ├── bj1.PNG
│ │ ├── bj21.PNG
│ │ ├── bj2.PNG
│ │ ├── ckfs_down.PNG
│ │ ├── ckfs.PNG
│ │ ├── cpbz.PNG
│ │ ├── cpzt.PNG
│ │ ├── cwgl.PNG
│ │ ├── dt1.PNG
│ │ ├── dt_down.PNG
│ │ ├── dt.PNG
│ │ ├── gkkd.PNG
│ │ ├── gktc.PNG
│ │ ├── gkzc.PNG
│ │ ├── glzt_down.PNG
│ │ ├── glzt.PNG
│ │ ├── hccz.PNG
│ │ ├── hhbj_down.PNG
│ │ ├── hhbj.PNG
│ │ ├── hygl.PNG
│ │ ├── jbgl.PNG
│ │ ├── jsq.bmp
│ │ ├── kcwm.PNG
│ │ ├── kx.PNG
│ │ ├── left_bj.PNG
│ │ ├── leftzk_down.PNG
│ │ ├── leftzk.PNG
│ │ ├── ptbj_down.PNG
│ │ ├── ptbj.PNG
│ │ ├── sbgl.PNG
│ │ ├── sxxs_down.PNG
│ │ ├── sxxs.PNG
│ │ ├── ty.PNG
│ │ ├── xflb.PNG
│ │ ├── xmss.PNG
│ │ ├── xsqb_down.PNG
│ │ ├── xsqb.PNG
│ │ ├── xtsz.PNG
│ │ ├── ydgl.PNG
│ │ ├── yd.PNG
│ │ ├── yycx.PNG
│ │ ├── zjsp.PNG
│ │ ├── zjxf1.PNG
│ │ ├── zjxf.PNG
│ │ └── zt.PNG
│ ├── SystemSet_Form.cs
│ ├── SystemSet_Form.Designer.cs
│ ├── SystemSet_Form.resx
│ ├── TableState_Form.cs
│ ├── TableState_Form.Designer.cs
│ ├── TableState_Form.resx
│ ├── TableStateSet_Form.cs
│ ├── TableStateSet_Form.Designer.cs
│ ├── TableStateSet_Form.resx
│ ├── Zjxf_Form.cs
│ ├── Zjxf_Form.Designer.cs
│ └── Zjxf_Form.resx
├── project-beat.sln
└── project-beat.suo
34 directories, 185 files
评论