嘿,亲!知识可是无价之宝呢,但咱这精心整理的资料也耗费了不少心血呀。小小地破费一下,绝对物超所值哦!如有下载和支付问题,请联系我们QQ(微信同号):813200300
本次赞助数额为: 2 元微信扫码支付:2 元
请留下您的邮箱,我们将在2小时内将文件发到您的邮箱
C#私活 在线合同审批系统 WCF
这是一个实际项目,为本人的一个私活,但是由于字段比较复杂,所以架构设计上是属于快餐型架构(不可取)。唯一可取之处是WCF的应用,分为服务端和客户端。主要还是做学习用。
.
├── C#私活 在线合同审批系统 WCF.rar
├── C#私活 在线合同审批系统 WCF.zip
└── 在线合同审批系统
├── app
│ └── 在线合同审批系统
│ ├── 在线合同审批系统客户端
│ │ ├── Client.exe
│ │ ├── Client.exe.config
│ │ ├── Client.exe.manifest
│ │ ├── DataTransferModel.dll
│ │ ├── DevComponents.DotNetBar2.dll
│ │ └── Print
│ │ ├── Index.html
│ │ └── Templete
│ │ ├── Temp1.htm
│ │ ├── Temp1__.htm
│ │ ├── Temp2.htm
│ │ └── Temp2_.htm
│ └── 在线合同审批系统服务端
│ ├── Backup
│ │ ├── 20130614.mdb
│ │ ├── 20130615.mdb
│ │ └── 20130616.mdb
│ ├── DB
│ │ ├── DB.accdb
│ │ └── DB.mdb
│ ├── DataService.exe
│ ├── DataTransferModel.dll
│ ├── DevComponents.DotNetBar2.dll
│ └── msmdvbanet.dll
└── src
├── ContractCheckClient
│ ├── Client
│ │ ├── 9.ico
│ │ ├── App.config
│ │ ├── Client.csproj
│ │ ├── Client.csproj.user
│ │ ├── Client_TemporaryKey.pfx
│ │ ├── Data
│ │ │ ├── IService.cs
│ │ │ └── ServerProxy.cs
│ │ ├── GlobalInfo.cs
│ │ ├── LoginForm.Designer.cs
│ │ ├── LoginForm.cs
│ │ ├── LoginForm.resx
│ │ ├── MainForm.Designer.cs
│ │ ├── MainForm.cs
│ │ ├── MainForm.resx
│ │ ├── MyControls
│ │ │ ├── FormAddContract.Designer.cs
│ │ │ ├── FormAddContract.cs
│ │ │ ├── FormAddContract.resx
│ │ │ ├── FormChangePwd.Designer.cs
│ │ │ ├── FormChangePwd.cs
│ │ │ ├── FormChangePwd.resx
│ │ │ ├── FormCheck.Designer.cs
│ │ │ ├── FormCheck.cs
│ │ │ ├── FormCheck.resx
│ │ │ ├── FormCheckingList.Designer.cs
│ │ │ ├── FormCheckingList.cs
│ │ │ ├── FormCheckingList.resx
│ │ │ ├── FormContractDetail.Designer.cs
│ │ │ ├── FormContractDetail.cs
│ │ │ ├── FormContractDetail.resx
│ │ │ ├── FormDeniedList.Designer.cs
│ │ │ ├── FormDeniedList.cs
│ │ │ ├── FormDeniedList.resx
│ │ │ ├── FormDenyContract.Designer.cs
│ │ │ ├── FormDenyContract.cs
│ │ │ ├── FormDenyContract.resx
│ │ │ ├── FormDeptList.Designer.cs
│ │ │ ├── FormDeptList.cs
│ │ │ ├── FormDeptList.resx
│ │ │ ├── FormPassedList.Designer.cs
│ │ │ ├── FormPassedList.cs
│ │ │ ├── FormPassedList.resx
│ │ │ ├── FormSelectPrintMode.Designer.cs
│ │ │ ├── FormSelectPrintMode.cs
│ │ │ ├── FormSelectPrintMode.resx
│ │ │ ├── FormSetting.Designer.cs
│ │ │ ├── FormSetting.cs
│ │ │ ├── FormSetting.resx
│ │ │ ├── FormUpdateContract.Designer.cs
│ │ │ ├── FormUpdateContract.cs
│ │ │ ├── FormUpdateContract.resx
│ │ │ ├── FormUserList.Designer.cs
│ │ │ ├── FormUserList.cs
│ │ │ ├── FormUserList.resx
│ │ │ ├── FormWelcome.Designer.cs
│ │ │ ├── FormWelcome.cs
│ │ │ └── FormWelcome.resx
│ │ ├── Print
│ │ │ └── Templete
│ │ │ ├── Temp1.htm
│ │ │ ├── Temp1__.htm
│ │ │ ├── Temp2.htm
│ │ │ └── Temp2_.htm
│ │ ├── Program.cs
│ │ ├── Properties
│ │ │ ├── AssemblyInfo.cs
│ │ │ ├── Resources.Designer.cs
│ │ │ ├── Resources.resx
│ │ │ ├── Settings.Designer.cs
│ │ │ └── Settings.settings
│ │ ├── SMTPsend.cs
│ │ ├── bin
│ │ │ └── Debug
│ │ │ ├── Client.application
│ │ │ ├── Client.exe
│ │ │ ├── Client.exe.config
│ │ │ ├── Client.exe.manifest
│ │ │ ├── Client.pdb
│ │ │ ├── Client.vshost.application
│ │ │ ├── Client.vshost.exe
│ │ │ ├── Client.vshost.exe.config
│ │ │ ├── DataTransferModel.dll
│ │ │ ├── DataTransferModel.pdb
│ │ │ ├── DevComponents.DotNetBar2.dll
│ │ │ ├── Print
│ │ │ │ ├── Index.html
│ │ │ │ └── Templete
│ │ │ │ ├── Temp1.htm
│ │ │ │ ├── Temp1__.htm
│ │ │ │ ├── Temp2.htm
│ │ │ │ └── Temp2_.htm
│ │ │ └── VSP合同审批客户端.vshost.exe.config
│ │ └── obj
│ │ └── Debug
│ │ ├── Client.LoginForm.resources
│ │ ├── Client.MainForm.resources
│ │ ├── Client.MyControls.FormAddContract.resources
│ │ ├── Client.MyControls.FormChangePwd.resources
│ │ ├── Client.MyControls.FormCheck.resources
│ │ ├── Client.MyControls.FormCheckingList.resources
│ │ ├── Client.MyControls.FormContractDetail.resources
│ │ ├── Client.MyControls.FormDeniedList.resources
│ │ ├── Client.MyControls.FormDenyContract.resources
│ │ ├── Client.MyControls.FormDeptList.resources
│ │ ├── Client.MyControls.FormPassedList.resources
│ │ ├── Client.MyControls.FormSelectPrintMode.resources
│ │ ├── Client.MyControls.FormSetting.resources
│ │ ├── Client.MyControls.FormUpdateContract.resources
│ │ ├── Client.MyControls.FormUserList.resources
│ │ ├── Client.MyControls.FormWelcome.resources
│ │ ├── Client.Properties.Resources.resources
│ │ ├── Client.application
│ │ ├── Client.csproj.FileListAbsolute.txt
│ │ ├── Client.csproj.GenerateResource.Cache
│ │ ├── Client.exe
│ │ ├── Client.exe.manifest
│ │ ├── Client.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ ├── ContractCheckClient.sln
│ └── ContractCheckClient.suo
└── ContractCheckServer
├── ContractCheckServer.sln
├── ContractCheckServer.suo
├── DataService
│ ├── 130.ico
│ ├── DataService.csproj
│ ├── IService.cs
│ ├── MainForm.Designer.cs
│ ├── MainForm.cs
│ ├── MainForm.resx
│ ├── Program.cs
│ ├── Properties
│ │ ├── AssemblyInfo.cs
│ │ ├── Resources.Designer.cs
│ │ ├── Resources.resx
│ │ ├── Settings.Designer.cs
│ │ └── Settings.settings
│ ├── Service.cs
│ ├── SqlHelper.cs
│ ├── bin
│ │ ├── Debug
│ │ │ ├── DB
│ │ │ │ ├── DB.accdb
│ │ │ │ └── DB.mdb
│ │ │ ├── DataService.exe
│ │ │ ├── DataService.pdb
│ │ │ ├── DataService.vshost.exe
│ │ │ ├── DataTransferModel.dll
│ │ │ ├── DataTransferModel.pdb
│ │ │ ├── DevComponents.DotNetBar2.dll
│ │ │ └── msmdvbanet.dll
│ │ └── x86
│ │ └── Debug
│ │ ├── Backup
│ │ │ ├── 20130614.mdb
│ │ │ ├── 20130615.mdb
│ │ │ ├── 20130616.mdb
│ │ │ └── 20131202.mdb
│ │ ├── DB
│ │ │ ├── DB.accdb
│ │ │ └── DB.mdb
│ │ ├── DataService.exe
│ │ ├── DataService.pdb
│ │ ├── DataService.vshost.exe
│ │ ├── DataService.vshost.exe.manifest
│ │ ├── DataTransferModel.dll
│ │ ├── DataTransferModel.pdb
│ │ ├── DevComponents.DotNetBar2.dll
│ │ └── msmdvbanet.dll
│ └── obj
│ ├── Debug
│ │ ├── DataService.MainForm.resources
│ │ ├── DataService.Properties.Resources.resources
│ │ ├── DataService.csproj.FileListAbsolute.txt
│ │ ├── DataService.csproj.GenerateResource.Cache
│ │ ├── DataService.exe
│ │ ├── DataService.pdb
│ │ ├── Refactor
│ │ ├── ResolveAssemblyReference.cache
│ │ └── TempPE
│ └── x86
│ └── Debug
│ ├── DataService.MainForm.resources
│ ├── DataService.Properties.Resources.resources
│ ├── DataService.csproj.FileListAbsolute.txt
│ ├── DataService.csproj.GenerateResource.Cache
│ ├── DataService.exe
│ ├── DataService.pdb
│ ├── ResolveAssemblyReference.cache
│ └── TempPE
└── DataTransferModel
├── Contract.cs
├── DataTransferModel.csproj
├── Power.cs
├── Properties
│ └── AssemblyInfo.cs
├── User.cs
├── bin
│ └── Debug
│ ├── DataTransferModel.dll
│ └── DataTransferModel.pdb
└── obj
└── Debug
├── DataTransferModel.csproj.FileListAbsolute.txt
├── DataTransferModel.dll
├── DataTransferModel.pdb
├── Refactor
└── TempPE
50 directories, 194 files